2021-04-26 15:12:52 +02:00
|
|
|
cmake_minimum_required(VERSION 3.10)
|
2021-03-20 21:53:44 +01:00
|
|
|
project(falcon9_decoder)
|
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc")
|
2021-04-18 19:20:51 +02:00
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
2021-04-18 19:24:56 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup")
|
2021-04-18 19:12:07 +02:00
|
|
|
else ()
|
|
|
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17")
|
|
|
|
endif ()
|
2021-03-20 21:53:44 +01:00
|
|
|
|
|
|
|
file(GLOB_RECURSE SRC "src/*.cpp" "src/*.c")
|
|
|
|
|
|
|
|
include_directories("src/")
|
|
|
|
include_directories("src/libcorrect/")
|
|
|
|
|
2021-03-22 22:35:28 +01:00
|
|
|
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)
|