Skip to content

Commit

Permalink
Fix CMake options
Browse files Browse the repository at this point in the history
  • Loading branch information
Cam K. committed May 16, 2024
1 parent 107f204 commit ce46ce3
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
cmake_minimum_required(VERSION 3.19)
project(libCATS)

option(OPT_BUILD_TESTS OFF)
option(OPT_BUILD_RADIO_IFACE ON)
option(OPT_BUILD_FELINET ON)
option(OPT_BUILD_TESTS "Build Tests" OFF)
option(OPT_BUILD_RADIO_IFACE "Build PC<->Radio interface functions" ON)

file(GLOB SOURCES lib/buffer.c
lib/error.c
Expand Down Expand Up @@ -62,10 +61,6 @@ if(OPT_BUILD_TESTS)
endif()
endif(OPT_BUILD_TESTS)

if(OPT_BUILD_FELINET)

endif(OPT_BUILD_FELINET)

target_link_libraries(CATS labrador_ldpc)
target_include_directories(CATS PUBLIC include ${labrador_ldpc_SOURCE_DIR}/capi/include)
set_property(TARGET CATS PROPERTY C_STANDARD 11)

0 comments on commit ce46ce3

Please sign in to comment.