mirror of
https://github.com/overte-org/overte.git
synced 2025-04-09 07:12:45 +02:00
49 lines
1.1 KiB
CMake
49 lines
1.1 KiB
CMake
# add the tool directories
|
|
find_npm()
|
|
|
|
if (NPM_EXECUTABLE)
|
|
add_subdirectory(jsdoc)
|
|
set_target_properties(jsdoc PROPERTIES FOLDER "Tools")
|
|
endif()
|
|
|
|
function(check_test name)
|
|
set(RESULT TRUE)
|
|
if (BUILD_TOOLS_INCLUDE)
|
|
unset(RESULT)
|
|
list(FIND BUILD_TOOLS_INCLUDE ${name} BUILD_TOOL_FIND)
|
|
if (NOT (${BUILD_TOOL_FIND} EQUAL -1))
|
|
set(RESULT TRUE)
|
|
endif()
|
|
endif()
|
|
set(BUILD_TOOL_RESULT ${RESULT} PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
if (BUILD_TOOLS)
|
|
set(ALL_TOOLS
|
|
udt-test
|
|
vhacd-util
|
|
gpu-frame-player
|
|
ice-client
|
|
ktx-tool
|
|
ac-client
|
|
skeleton-dump
|
|
atp-client
|
|
oven
|
|
)
|
|
|
|
# Allow different tools for stable builds
|
|
if (STABLE_BUILD)
|
|
else()
|
|
list(APPEND ALL_TOOLS nitpick)
|
|
endif()
|
|
|
|
foreach(TOOL ${ALL_TOOLS})
|
|
check_test(${TOOL})
|
|
if (${BUILD_TOOL_RESULT})
|
|
add_subdirectory(${TOOL})
|
|
if (TARGET ${TOOL})
|
|
set_target_properties(${TOOL} PROPERTIES FOLDER "Tools")
|
|
endif()
|
|
endif()
|
|
endforeach()
|
|
endif()
|