mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
10 lines
No EOL
306 B
CMake
10 lines
No EOL
306 B
CMake
cmake_minimum_required(VERSION 3.12)
|
|
project(sample)
|
|
|
|
|
|
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)
|
|
|
|
install(TARGETS sample DESTINATION ${CMAKE_INSTALL_LIBDIR}/satdump/plugins) |