mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-07 11:17:35 +01:00
25 lines
816 B
CMake
25 lines
816 B
CMake
|
cmake_minimum_required(VERSION 3.13)
|
||
|
project(rfspace_source)
|
||
|
|
||
|
file(GLOB SRC "src/*.cpp")
|
||
|
|
||
|
add_library(rfspace_source SHARED ${SRC})
|
||
|
target_link_libraries(rfspace_source PRIVATE sdrpp_core)
|
||
|
set_target_properties(rfspace_source PROPERTIES PREFIX "")
|
||
|
|
||
|
target_include_directories(rfspace_source PRIVATE "src/")
|
||
|
|
||
|
if (MSVC)
|
||
|
target_compile_options(rfspace_source PRIVATE /O2 /Ob2 /std:c++17 /EHsc)
|
||
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||
|
target_compile_options(rfspace_source PRIVATE -O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
||
|
else ()
|
||
|
target_compile_options(rfspace_source PRIVATE -O3 -std=c++17)
|
||
|
endif ()
|
||
|
|
||
|
if(WIN32)
|
||
|
target_link_libraries(rfspace_source PRIVATE wsock32 ws2_32)
|
||
|
endif()
|
||
|
|
||
|
# Install directives
|
||
|
install(TARGETS rfspace_source DESTINATION lib/sdrpp/plugins)
|