mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-07 11:17:35 +01:00
a6e58e7b1d
Issue: https://github.com/AlexandreRouma/SDRPlusPlus/issues/82 Fix: https://stackoverflow.com/questions/54654290/error-inlining-failed-to-call-always-inline
22 lines
609 B
CMake
22 lines
609 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
project(falcon9_decoder)
|
|
|
|
if (MSVC)
|
|
set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc")
|
|
else()
|
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -fpermissive")
|
|
endif (MSVC)
|
|
|
|
file(GLOB_RECURSE SRC "src/*.cpp" "src/*.c")
|
|
|
|
include_directories("src/")
|
|
include_directories("src/libcorrect/")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=native")
|
|
|
|
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) |