celestia/src/CMakeLists.txt

20 lines
272 B
CMake
Raw Normal View History

2018-11-28 14:42:00 -07:00
set(CELESTIA_LIBS
cel3ds
celengine
celephem
celestia
celmath
celmodel
celtxf
celutil
)
foreach(lib ${CELESTIA_LIBS} tools)
add_subdirectory(${lib})
endforeach()
2019-01-10 10:55:18 -07:00
if (NOT WIN32)
add_executable(buildstardb buildstardb.cpp)
cotire(buildstardb)
endif()