satdump/plugins/cubesat_support/CMakeLists.txt
2024-09-28 11:48:29 -04:00

10 lines
No EOL
393 B
CMake

cmake_minimum_required(VERSION 3.12)
project(cubesat_support)
file(GLOB_RECURSE cubesat_support_CPPS *.cpp instruments/mhs/*.cpp)
add_library(cubesat_support SHARED ${cubesat_support_CPPS})
target_link_libraries(cubesat_support PUBLIC satdump_core)
target_include_directories(cubesat_support PUBLIC src .)
install(TARGETS cubesat_support DESTINATION ${CMAKE_INSTALL_LIBDIR}/satdump/plugins)