SDRPlusPlus/source_modules/file_source/CMakeLists.txt

21 wiersze
707 B
CMake
Czysty Zwykły widok Historia

cmake_minimum_required(VERSION 3.13)
2020-10-01 11:46:12 +00:00
project(file_source)
file(GLOB SRC "src/*.cpp")
add_library(file_source SHARED ${SRC})
target_link_libraries(file_source PRIVATE sdrpp_core)
2021-02-11 21:49:33 +00:00
set_target_properties(file_source PROPERTIES PREFIX "")
2021-10-04 01:31:13 +00:00
target_include_directories(file_source PRIVATE "src/")
2021-10-04 00:34:17 +00:00
if (MSVC)
target_compile_options(file_source PRIVATE /O2 /Ob2 /std:c++17 /EHsc)
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
target_compile_options(file_source PRIVATE -O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
else ()
target_compile_options(file_source PRIVATE -O3 -std=c++17)
endif ()
2021-02-11 21:49:33 +00:00
# Install directives
install(TARGETS file_source DESTINATION lib/sdrpp/plugins)