mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
11 lines
No EOL
347 B
CMake
11 lines
No EOL
347 B
CMake
cmake_minimum_required (VERSION 3.0.0)
|
|
project(sample)
|
|
|
|
set(SATDUMP_ROOT "/usr")
|
|
|
|
file(GLOB_RECURSE sample_CPPS *.cpp)
|
|
add_library(sample SHARED ${sample_CPPS})
|
|
target_link_libraries(sample PUBLIC satdump_core)
|
|
target_include_directories(sample PUBLIC src ${SATDUMP_ROOT}/include/satdump)
|
|
|
|
install(TARGETS sample DESTINATION share/satdump/plugins) |