mirror of
https://github.com/overte-org/overte.git
synced 2025-04-09 16:22:28 +02:00
36 lines
1,007 B
CMake
36 lines
1,007 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(auto-tester)
|
|
set_target_properties(auto-tester PROPERTIES FOLDER "Tools")
|
|
endif()
|