mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-14 13:30:48 +03:00
14 lines
369 B
CMake
14 lines
369 B
CMake
if ("${TARGET_FOLDER}" STREQUAL "")
|
|
set (USE_QT ON)
|
|
set (RELATIVE_DIR "tools")
|
|
set (MODULES_LIST ${OCCT_TOOLS})
|
|
set (TARGET_FOLDER "Tools")
|
|
set (TOOLKITS_NAME_SUFFIX "TOOL_TOOLKITS")
|
|
else()
|
|
unset (USE_QT)
|
|
unset (RELATIVE_DIR)
|
|
unset (MODULES_LIST)
|
|
unset (TARGET_FOLDER)
|
|
unset (TOOLKITS_NAME_SUFFIX)
|
|
endif("${TARGET_FOLDER}" STREQUAL "")
|