SDRPlusPlus/source_modules/file_source/CMakeLists.txt

21 lines
611 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.13)
2020-10-01 13:46:12 +02:00
project(file_source)
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 ()
2020-10-01 13:46:12 +02:00
include_directories("src/")
2020-10-01 13:46:12 +02:00
file(GLOB SRC "src/*.cpp")
add_library(file_source SHARED ${SRC})
target_link_libraries(file_source PRIVATE sdrpp_core)
2021-02-11 22:49:33 +01:00
set_target_properties(file_source PROPERTIES PREFIX "")
# Install directives
install(TARGETS file_source DESTINATION lib/sdrpp/plugins)