Files
SDRPlusPlus/misc_modules/recorder/CMakeLists.txt
2022-06-23 22:21:25 +02:00

13 lines
354 B
CMake

cmake_minimum_required(VERSION 3.13)
project(recorder)
file(GLOB SRC "src/*.cpp")
add_library(recorder SHARED ${SRC})
target_link_libraries(recorder PRIVATE sdrpp_core)
set_target_properties(recorder PROPERTIES PREFIX "")
target_include_directories(recorder PRIVATE "src/")
# Install directives
install(TARGETS recorder DESTINATION lib/sdrpp/plugins)