mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
CMake scripts are corrected to do perform search of libs and dlls of third-party libraries even for static builds of OCCT. Treatment of errors in this case is relaxed: not found DLLs are reported as warnings, and not found libs as warning for static build, and continuable error for shared build. Code of samples is corrected to allow building with OCCT linked statically. Implementation of main application class is corrected to ensure that initialization is done after all global objects are created. Note however that samples still fails to start for unclear reason (creation of MFC frame window fails).
21 lines
695 B
CMake
21 lines
695 B
CMake
#qt
|
|
|
|
#looking for 3RDPARTY_QT_DIR variable used later in qt_macro.cmake
|
|
SET(CSF_QtCore "QtCore")
|
|
THIRDPARTY_PRODUCT("QT" "" "CSF_QtCore" "d")
|
|
|
|
list (APPEND 3RDPARTY_DLL_DIRS "${3RDPARTY_QT_DIR}/bin")
|
|
|
|
list (REMOVE_ITEM 3RDPARTY_NOT_INCLUDED "3RDPARTY_QT_INCLUDE_DIR")
|
|
list (REMOVE_ITEM 3RDPARTY_NO_LIBS "3RDPARTY_QT_LIBRARY_DIR")
|
|
list (REMOVE_ITEM 3RDPARTY_NO_DLLS "3RDPARTY_QT_DLL_DIR")
|
|
|
|
UNSET (${3RDPARTY_QT_DLL} CACHE)
|
|
UNSET (${3RDPARTY_QT_DLL_DIR} CACHE)
|
|
UNSET (${3RDPARTY_QT_INCLUDE_DIR} CACHE)
|
|
UNSET (${3RDPARTY_QT_LIBRARY} CACHE)
|
|
UNSET (${3RDPARTY_QT_LIBRARY_DIR} CACHE)
|
|
|
|
set (USED_3RDPARTY_QT_DIR "${3RDPARTY_QT_DIR}")
|
|
message (STATUS "Info: Qt is used from folder: ${3RDPARTY_QT_DIR}")
|