mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-07 11:17:35 +01:00
7 lines
158 B
CMake
7 lines
158 B
CMake
|
cmake_minimum_required(VERSION 3.13)
|
||
|
project(demo)
|
||
|
|
||
|
file(GLOB SRC "src/*.cpp")
|
||
|
|
||
|
add_library(demo SHARED ${SRC})
|
||
|
target_link_libraries(demo PRIVATE sdrpp_core)
|