satdump/src-cli/CMakeLists.txt

11 lines
322 B
Text
Raw Permalink Normal View History

cmake_minimum_required(VERSION 3.12)
2021-02-22 21:05:10 +01:00
2021-10-05 22:13:11 +02:00
file(GLOB_RECURSE SatDump_cli_CPPS *.cpp)
2021-02-22 21:05:10 +01:00
add_executable(satdump ${SatDump_cli_CPPS})
target_include_directories(satdump PUBLIC src-cli src-core)
# Link against the core
2022-09-02 15:47:10 +02:00
target_link_libraries(satdump PUBLIC satdump_core)
2021-05-04 12:23:22 +02:00
2024-09-28 11:48:29 -04:00
install(TARGETS satdump DESTINATION ${CMAKE_INSTALL_BINDIR})