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