CelestiaContent/src/CMakeLists.txt

21 lines
310 B
CMake

set(CELESTIA_LIBS
cel3ds
celengine
celestia
celmath
celmodel
celtxf
celutil
)
foreach(lib ${CELESTIA_LIBS})
add_subdirectory(${lib})
endforeach()
# Compiled celephem objects are merged with the celengine library
add_subdirectory(celephem)
if (ENABLE_TOOLS)
add_subdirectory(tools)
endif()