mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0029308: Configuration, Inspectors - search of Qt in CMake scripts is separated from search of other 3rd-party libs
Qt for inspector and samples is searched together with all 3rd-party products
This commit is contained in:
parent
f4b0c77247
commit
05ed7ed8e0
@ -708,6 +708,18 @@ else()
|
|||||||
OCCT_CHECK_AND_UNSET ("3RDPARTY_FLEX_EXECUTABLE")
|
OCCT_CHECK_AND_UNSET ("3RDPARTY_FLEX_EXECUTABLE")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# qt for inspector and samples
|
||||||
|
if (BUILD_Inspector OR BUILD_SAMPLES_QT)
|
||||||
|
# check qt 3rdparty path
|
||||||
|
add_definitions (-DHAVE_QT)
|
||||||
|
OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/qt")
|
||||||
|
message (STATUS "Info: Qt is used by OCCT")
|
||||||
|
else()
|
||||||
|
OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_QT")
|
||||||
|
OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_TQTMALLOC")
|
||||||
|
OCCT_CHECK_AND_UNSET ("INSTALL_QT")
|
||||||
|
endif()
|
||||||
|
|
||||||
# check all 3rdparty include paths
|
# check all 3rdparty include paths
|
||||||
string (REGEX REPLACE ";" " " 3RDPARTY_NOT_INCLUDED "${3RDPARTY_NOT_INCLUDED}")
|
string (REGEX REPLACE ";" " " 3RDPARTY_NOT_INCLUDED "${3RDPARTY_NOT_INCLUDED}")
|
||||||
if (3RDPARTY_NOT_INCLUDED)
|
if (3RDPARTY_NOT_INCLUDED)
|
||||||
@ -795,17 +807,6 @@ else()
|
|||||||
set (SCRIPT_EXT sh)
|
set (SCRIPT_EXT sh)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (BUILD_Inspector OR BUILD_SAMPLES_QT)
|
|
||||||
# check qt 3rdparty path
|
|
||||||
add_definitions (-DHAVE_QT)
|
|
||||||
OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/qt")
|
|
||||||
message (STATUS "Info: Qt is used by OCCT")
|
|
||||||
else()
|
|
||||||
OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_QT")
|
|
||||||
OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_TQTMALLOC")
|
|
||||||
OCCT_CHECK_AND_UNSET ("INSTALL_QT")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# OCCT tools
|
# OCCT tools
|
||||||
# include the patched or original list of tools
|
# include the patched or original list of tools
|
||||||
# list <TOOLNAME>_TOOLKITS is created foreach tool and contains its toolkits
|
# list <TOOLNAME>_TOOLKITS is created foreach tool and contains its toolkits
|
||||||
|
@ -1,23 +1,21 @@
|
|||||||
#qt
|
#qt
|
||||||
|
|
||||||
#looking for 3RDPARTY_QT_DIR variable used later in qt_macro.cmake
|
# Qt is searched manually first (just determine root)
|
||||||
SET(CSF_QtCore "QtCore")
|
message (STATUS "Processing Qt 3-rd party")
|
||||||
THIRDPARTY_PRODUCT("QT" "" "CSF_QtCore" "d")
|
|
||||||
|
|
||||||
list (APPEND 3RDPARTY_DLL_DIRS "${3RDPARTY_QT_DIR}/bin")
|
if (NOT DEFINED ${3RDPARTY_QT_DIR} AND ${3RDPARTY_QT_DIR} STREQUAL "")
|
||||||
|
FIND_PRODUCT_DIR ("${3RDPARTY_DIR}" Qt 3RDPARTY_QT_DIR_NAME)
|
||||||
|
|
||||||
list (REMOVE_ITEM 3RDPARTY_NOT_INCLUDED "3RDPARTY_QT_INCLUDE_DIR")
|
if (NOT DEFINED ${3RDPARTY_QT_DIR_NAME} AND ${3RDPARTY_QT_DIR_NAME} STREQUAL "")
|
||||||
list (REMOVE_ITEM 3RDPARTY_NO_LIBS "3RDPARTY_QT_LIBRARY_DIR")
|
message (FATAL_ERROR "... Qt root directory was not found")
|
||||||
list (REMOVE_ITEM 3RDPARTY_NO_DLLS "3RDPARTY_QT_DLL_DIR")
|
endif()
|
||||||
|
|
||||||
UNSET (${3RDPARTY_QT_DLL} CACHE)
|
# Combine directory name with absolute path and show in GUI
|
||||||
UNSET (${3RDPARTY_QT_DLL_DIR} CACHE)
|
set (3RDPARTY_QT_DIR "${3RDPARTY_DIR}/${3RDPARTY_QT_DIR_NAME}" CACHE PATH "The directory containing Qt" FORCE)
|
||||||
UNSET (${3RDPARTY_QT_INCLUDE_DIR} CACHE)
|
message (STATUS "Info: Qt is used from folder: ${3RDPARTY_QT_DIR}")
|
||||||
UNSET (${3RDPARTY_QT_LIBRARY} CACHE)
|
endif()
|
||||||
UNSET (${3RDPARTY_QT_LIBRARY_DIR} CACHE)
|
|
||||||
|
|
||||||
set (USED_3RDPARTY_QT_DIR "${3RDPARTY_QT_DIR}")
|
set (USED_3RDPARTY_QT_DIR "${3RDPARTY_QT_DIR}")
|
||||||
message (STATUS "Info: Qt is used from folder: ${3RDPARTY_QT_DIR}")
|
|
||||||
|
|
||||||
# Now set CMAKE_PREFIX_PATH to point to local Qt installation.
|
# Now set CMAKE_PREFIX_PATH to point to local Qt installation.
|
||||||
# Without this setting find_package() will not work
|
# Without this setting find_package() will not work
|
||||||
@ -33,4 +31,4 @@ if (NOT ${Qt5_FOUND})
|
|||||||
#message (STATUS "Qt4 cmake configuration")
|
#message (STATUS "Qt4 cmake configuration")
|
||||||
else()
|
else()
|
||||||
#message (STATUS "Qt5 cmake configuration")
|
#message (STATUS "Qt5 cmake configuration")
|
||||||
endif()
|
endif()
|
Loading…
x
Reference in New Issue
Block a user