From e88471542802dbd15572ee5d3325ef5bd38a6457 Mon Sep 17 00:00:00 2001 From: Pascal Obry Date: Fri, 27 Mar 2020 15:38:49 +0100 Subject: [PATCH] Fix detection of Qt5 components. --- cmake/FindSalomeQt5.cmake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmake/FindSalomeQt5.cmake b/cmake/FindSalomeQt5.cmake index 77d8ce4..74f1113 100644 --- a/cmake/FindSalomeQt5.cmake +++ b/cmake/FindSalomeQt5.cmake @@ -33,7 +33,7 @@ SET(QT_LIBRARIES) # Find Qt5Core to get Qt version SET(Qt5_FIND_COMPONENTS QtCore) SET(Qt5_OPTIONAL_COMPONENTS) -SALOME_FIND_PACKAGE_AND_DETECT_CONFLICTS(Qt5Core Qt5Core_INCLUDE_DIRS 1 ENVVAR QT5_ROOT_DIR) +FIND_PACKAGE(Qt5Core) IF(Qt5Core_FOUND) LIST(APPEND QT_INCLUDES ${Qt5Core_INCLUDE_DIRS}) LIST(APPEND QT_DEFINITIONS ${Qt5Core_DEFINITIONS}) @@ -66,7 +66,7 @@ FOREACH(_Qt5_COMPONENT_ ${Qt5_FIND_COMPONENTS} ${Qt5_OPTIONAL_COMPONENTS}) IF(${idx} GREATER -1) SET(Salome${_Qt5_COMPONENT}_FIND_QUIETLY TRUE) ENDIF() - SALOME_FIND_PACKAGE_AND_DETECT_CONFLICTS(${_Qt5_COMPONENT} ${_Qt5_COMPONENT}_INCLUDE_DIRS 1 ENVVAR QT5_ROOT_DIR) + FIND_PACKAGE(${_Qt5_COMPONENT}) LIST(APPEND QT_INCLUDES ${${_Qt5_COMPONENT}_INCLUDE_DIRS}) LIST(APPEND QT_DEFINITIONS ${${_Qt5_COMPONENT}_DEFINITIONS}) LIST(APPEND QT_LIBRARIES ${${_Qt5_COMPONENT}_LIBRARIES}) @@ -79,7 +79,7 @@ MARK_AS_ADVANCED(QT_LRELEASE_EXECUTABLE) GET_FILENAME_COMPONENT(QT_BINARY_DIR ${QT_LRELEASE_EXECUTABLE} DIRECTORY) MARK_AS_ADVANCED(QT_BINARY_DIR) -# This is only needed to correctly detect Qt help generator tool, to workaround an error +# This is only needed to correctly detect Qt help generator tool, to workaround an error # coming from ParaView detection procedure FIND_PROGRAM(QT_HELP_GENERATOR qhelpgenerator @@ -88,7 +88,7 @@ FIND_PROGRAM(QT_HELP_GENERATOR DOC "qhelpgenerator used to compile Qt help project files") MARK_AS_ADVANCED(QT_HELP_GENERATOR) -IF(Qt5Core_FOUND) +IF(Qt5Core_FOUND) SALOME_ACCUMULATE_HEADERS(QT_INCLUDES) SALOME_ACCUMULATE_ENVIRONMENT(PATH ${LINGUIST_PATH}) SALOME_ACCUMULATE_ENVIRONMENT(LD_LIBRARY_PATH ${Qt5Core_LIBRARIES}) -- 2.39.2