kopia lustrzana https://github.com/AlexandreRouma/SDRPlusPlus
17 wiersze
472 B
CMake
17 wiersze
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)
|