celestia/src/CMakeLists.txt

23 lines
279 B
CMake
Raw Permalink Normal View History

2018-11-28 14:42:00 -07:00
set(CELESTIA_LIBS
cel3ds
celcompat
2018-11-28 14:42:00 -07:00
celengine
celephem
2018-11-28 14:42:00 -07:00
celestia
celimage
2018-11-28 14:42:00 -07:00
celmath
celmodel
2020-06-24 07:23:11 -06:00
celttf
2018-11-28 14:42:00 -07:00
celutil
)
foreach(lib ${CELESTIA_LIBS})
2018-11-28 14:42:00 -07:00
add_subdirectory(${lib})
endforeach()
add_subdirectory(celscript)
if (ENABLE_TOOLS)
add_subdirectory(tools)
2019-01-10 10:55:18 -07:00
endif()