forked from Nuand/bladeRF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
43 lines (37 loc) · 1.15 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
cmake_minimum_required(VERSION 2.8)
#####################################################################
# Choose which major components to build
#####################################################################
option(ENABLE_HOST_BUILD
"Build the bladeRF host components"
ON
)
option(ENABLE_FX3_BUILD
"Build the Cypress FX3 firmware component"
OFF
)
#####################################################################
# Flag for development version vs tagged release
#####################################################################
option(TAGGED_RELEASE
"Indicates that this is a tagged release. Drops '-git' flag."
OFF
)
if(TAGGED_RELEASE)
set(VERSION_INFO_EXTRA "")
else()
set(VERSION_INFO_EXTRA "git")
endif()
#####################################################################
# Build components
#####################################################################
if(ENABLE_HOST_BUILD)
add_subdirectory(host)
else()
message(STATUS "Skipping host component build")
endif()
if(ENABLE_FX3_BUILD)
add_subdirectory(fx3_firmware)
else()
message(STATUS "Skipping FX3 firmware build")
endif()