satdump/src-cli/CMakeLists.txt
2021-10-05 22:13:11 +02:00

11 lines
No EOL
305 B
CMake

cmake_minimum_required (VERSION 3.0.0)
file(GLOB_RECURSE SatDump_cli_CPPS *.cpp)
add_executable(satdump ${SatDump_cli_CPPS})
target_include_directories(satdump PUBLIC src-cli src-core)
# Link against the core
target_link_libraries (satdump PUBLIC satdump_core)
install(TARGETS satdump DESTINATION bin)