13 lines
330 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.13)
2021-04-25 19:44:41 +02:00
project(demo)
file(GLOB SRC "src/*.cpp")
2021-04-25 19:44:41 +02:00
add_library(demo SHARED ${SRC})
target_link_libraries(demo PRIVATE sdrpp_core)
2021-04-25 19:44:41 +02:00
set_target_properties(demo PROPERTIES PREFIX "")
2021-10-04 03:31:13 +02:00
target_include_directories(demo PRIVATE "src/")
2021-04-25 19:44:41 +02:00
# Install directives
install(TARGETS demo DESTINATION lib/sdrpp/plugins)