mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
12 lines
533 B
CMake
Executable file
12 lines
533 B
CMake
Executable file
cmake_minimum_required(VERSION 3.12)
|
|
|
|
file(GLOB_RECURSE SatDump_testing_CPPS main.cpp supernovas/*.c calceph/*.c)
|
|
|
|
add_executable(satdump-testing ${SatDump_testing_CPPS})
|
|
target_include_directories(satdump-testing PUBLIC src-testing src-core)
|
|
|
|
target_include_directories(satdump-testing PUBLIC ../plugins/firstparty_support)
|
|
#target_link_directories(satdump-testing PUBLIC /home/alan/Downloads/calceph/build/src)
|
|
|
|
# Link against the core
|
|
target_link_libraries(satdump-testing PUBLIC satdump_core sqlite3 firstparty_support) # mfhdf)
|