celestia/src/CMakeLists.txt

29 lines
441 B
CMake
Raw Normal View History

2018-11-28 14:42:00 -07:00
set(CELESTIA_LIBS
cel3ds
celengine
celestia
celmath
celmodel
celutil
)
foreach(lib ${CELESTIA_LIBS})
2018-11-28 14:42:00 -07:00
add_subdirectory(${lib})
endforeach()
add_subdirectory(celscript)
2019-08-15 13:21:22 -06:00
# These compiled objects are merged with the celengine library
add_subdirectory(celephem)
2019-08-15 13:21:22 -06:00
add_subdirectory(celcompat)
if (ENABLE_TTF)
add_subdirectory(celttf)
else()
add_subdirectory(celtxf)
endif()
if (ENABLE_TOOLS)
add_subdirectory(tools)
2019-01-10 10:55:18 -07:00
endif()