new cmake stuff

This commit is contained in:
AlexandreRouma
2023-02-14 16:25:05 +01:00
parent a1b6cbb38a
commit 7cfc30ee6e
42 changed files with 134 additions and 906 deletions

View File

@ -3,19 +3,6 @@ project(falcon9_decoder)
file(GLOB_RECURSE SRC "src/*.cpp")
add_library(falcon9_decoder SHARED ${SRC})
target_link_libraries(falcon9_decoder PRIVATE sdrpp_core)
set_target_properties(falcon9_decoder PROPERTIES PREFIX "")
include(${SDRPP_MODULE_CMAKE})
target_include_directories(falcon9_decoder PRIVATE "src/")
if (MSVC)
target_compile_options(falcon9_decoder PRIVATE /O2 /Ob2 /std:c++17 /EHsc)
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
target_compile_options(falcon9_decoder PRIVATE -O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
else ()
target_compile_options(falcon9_decoder PRIVATE -O3 -std=c++17)
endif ()
# Install directives
install(TARGETS falcon9_decoder DESTINATION lib/sdrpp/plugins)
target_include_directories(falcon9_decoder PRIVATE "src/")