SDRPlusPlus/source_modules/spyserver_source/CMakeLists.txt

25 wiersze
720 B
CMake
Czysty Zwykły widok Historia

cmake_minimum_required(VERSION 3.13)
2020-12-22 13:50:26 +00:00
project(spyserver_source)
if (MSVC)
2021-10-03 00:04:02 +00:00
add_compile_options(/O2 /Ob2 /std:c++17 /EHsc)
2021-04-18 17:20:51 +00:00
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
2021-10-02 23:13:15 +00:00
add_compile_options(-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
2021-04-18 17:12:07 +00:00
else ()
2021-10-02 23:13:15 +00:00
add_compile_options(-O3 -std=c++17)
2021-04-18 17:12:07 +00:00
endif ()
2020-12-22 13:50:26 +00:00
include_directories("src/")
file(GLOB SRC "src/*.cpp")
add_library(spyserver_source SHARED ${SRC})
target_link_libraries(spyserver_source PRIVATE sdrpp_core)
set_target_properties(spyserver_source PROPERTIES PREFIX "")
if(WIN32)
target_link_libraries(spyserver_source PRIVATE wsock32 ws2_32)
2021-02-11 21:49:33 +00:00
endif()
# Install directives
install(TARGETS spyserver_source DESTINATION lib/sdrpp/plugins)