mirror of
https://github.com/overte-org/overte.git
synced 2025-04-09 05:53:25 +02:00
38 lines
1.1 KiB
CMake
38 lines
1.1 KiB
CMake
# add the tool directories
|
|
add_subdirectory(scribe)
|
|
set_target_properties(scribe PROPERTIES FOLDER "Tools")
|
|
|
|
find_npm()
|
|
if (NPM_EXECUTABLE)
|
|
add_subdirectory(jsdoc)
|
|
set_target_properties(jsdoc PROPERTIES FOLDER "Tools")
|
|
endif()
|
|
|
|
if (BUILD_TOOLS)
|
|
add_subdirectory(udt-test)
|
|
set_target_properties(udt-test PROPERTIES FOLDER "Tools")
|
|
|
|
add_subdirectory(vhacd-util)
|
|
set_target_properties(vhacd-util PROPERTIES FOLDER "Tools")
|
|
|
|
add_subdirectory(ice-client)
|
|
set_target_properties(ice-client PROPERTIES FOLDER "Tools")
|
|
|
|
add_subdirectory(ktx-tool)
|
|
set_target_properties(ktx-tool PROPERTIES FOLDER "Tools")
|
|
|
|
add_subdirectory(ac-client)
|
|
set_target_properties(ac-client PROPERTIES FOLDER "Tools")
|
|
|
|
add_subdirectory(skeleton-dump)
|
|
set_target_properties(skeleton-dump PROPERTIES FOLDER "Tools")
|
|
|
|
add_subdirectory(atp-client)
|
|
set_target_properties(atp-client PROPERTIES FOLDER "Tools")
|
|
|
|
add_subdirectory(oven)
|
|
set_target_properties(oven PROPERTIES FOLDER "Tools")
|
|
|
|
add_subdirectory(auto-tester)
|
|
set_target_properties(auto-tester PROPERTIES FOLDER "Tools")
|
|
endif()
|