mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
36 lines
999 B
CMake
36 lines
999 B
CMake
# add the tool directories
|
|
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(nitpick)
|
|
set_target_properties(nitpick PROPERTIES FOLDER "Tools")
|
|
endif()
|