mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-12 11:17:11 +01:00
17 lines
472 B
CMake
17 lines
472 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(WIN32)
|
|
target_link_libraries(rfspace_source PRIVATE wsock32 ws2_32)
|
|
endif()
|
|
|
|
# Install directives
|
|
install(TARGETS rfspace_source DESTINATION lib/sdrpp/plugins) |