SDRPlusPlus/decoder_modules/falcon9_decoder/CMakeLists.txt

24 lines
741 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.13)
2021-03-20 21:53:44 +01:00
project(falcon9_decoder)
if (MSVC)
2021-10-03 02:04:02 +02:00
add_compile_options(/O2 /Ob2 /std:c++17 /EHsc)
2021-04-18 19:20:51 +02:00
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
2021-10-03 01:13:15 +02:00
add_compile_options(-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
2021-04-18 19:12:07 +02:00
else ()
2021-10-03 01:13:15 +02:00
add_compile_options(-O3 -std=c++17)
2021-04-18 19:12:07 +02:00
endif ()
2021-03-20 21:53:44 +01:00
file(GLOB_RECURSE SRC "src/*.cpp" "src/*.c")
include_directories("src/")
include_directories("src/libcorrect/")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=native")
2021-03-20 21:53:44 +01:00
add_library(falcon9_decoder SHARED ${SRC})
target_link_libraries(falcon9_decoder PRIVATE sdrpp_core)
set_target_properties(falcon9_decoder PROPERTIES PREFIX "")
# Install directives
install(TARGETS falcon9_decoder DESTINATION lib/sdrpp/plugins)