We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 107f204 commit ce46ce3Copy full SHA for ce46ce3
CMakeLists.txt
@@ -1,9 +1,8 @@
1
cmake_minimum_required(VERSION 3.19)
2
project(libCATS)
3
4
-option(OPT_BUILD_TESTS OFF)
5
-option(OPT_BUILD_RADIO_IFACE ON)
6
-option(OPT_BUILD_FELINET ON)
+option(OPT_BUILD_TESTS "Build Tests" OFF)
+option(OPT_BUILD_RADIO_IFACE "Build PC<->Radio interface functions" ON)
7
8
file(GLOB SOURCES lib/buffer.c
9
lib/error.c
@@ -62,10 +61,6 @@ if(OPT_BUILD_TESTS)
62
61
endif()
63
endif(OPT_BUILD_TESTS)
64
65
-if(OPT_BUILD_FELINET)
66
-
67
-endif(OPT_BUILD_FELINET)
68
69
target_link_libraries(CATS labrador_ldpc)
70
target_include_directories(CATS PUBLIC include ${labrador_ldpc_SOURCE_DIR}/capi/include)
71
set_property(TARGET CATS PROPERTY C_STANDARD 11)
0 commit comments