mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-04-09 00:35:40 +02:00
17 lines
486 B
CMake
17 lines
486 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
project(spyserver_source)
|
|
|
|
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 "")
|
|
|
|
target_include_directories(spyserver_source PRIVATE "src/")
|
|
|
|
if(WIN32)
|
|
target_link_libraries(spyserver_source PRIVATE wsock32 ws2_32)
|
|
endif()
|
|
|
|
# Install directives
|
|
install(TARGETS spyserver_source DESTINATION lib/sdrpp/plugins) |