mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-19 23:02:43 +00: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) |