kopia lustrzana https://github.com/AlexandreRouma/SDRPlusPlus
25 wiersze
720 B
CMake
25 wiersze
720 B
CMake
![]() |
cmake_minimum_required(VERSION 3.13)
|
||
![]() |
project(spyserver_source)
|
||
|
|
||
|
if (MSVC)
|
||
![]() |
add_compile_options(/O2 /Ob2 /std:c++17 /EHsc)
|
||
![]() |
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||
![]() |
add_compile_options(-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
||
![]() |
else ()
|
||
![]() |
add_compile_options(-O3 -std=c++17)
|
||
![]() |
endif ()
|
||
![]() |
|
||
|
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)
|
||
![]() |
endif()
|
||
|
|
||
|
# Install directives
|
||
|
install(TARGETS spyserver_source DESTINATION lib/sdrpp/plugins)
|