mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
10 lines
No EOL
372 B
CMake
10 lines
No EOL
372 B
CMake
cmake_minimum_required(VERSION 3.12)
|
|
project(dmsp_support)
|
|
|
|
|
|
file(GLOB_RECURSE dmsp_support_CPPS *.cpp instruments/mhs/*.cpp)
|
|
add_library(dmsp_support SHARED ${dmsp_support_CPPS})
|
|
target_link_libraries(dmsp_support PUBLIC satdump_core)
|
|
target_include_directories(dmsp_support PUBLIC src .)
|
|
|
|
install(TARGETS dmsp_support DESTINATION ${CMAKE_INSTALL_LIBDIR}/satdump/plugins) |