2018-01-25 17:33:52 +01:00
|
|
|
if (BUILD_GUI)
|
2022-02-07 17:35:25 +01:00
|
|
|
list(APPEND qt_components Core Gui Widgets PrintSupport LinguistTools Help)
|
|
|
|
if (WITH_QCHART)
|
|
|
|
list(APPEND qt_components Charts)
|
|
|
|
endif()
|
2021-12-17 21:49:32 +01:00
|
|
|
if (BUILD_TESTS)
|
2022-02-07 17:35:25 +01:00
|
|
|
list(APPEND qt_components Test)
|
2019-05-17 10:17:51 +02:00
|
|
|
endif()
|
2022-04-15 18:49:24 +02:00
|
|
|
if (USE_QT6)
|
|
|
|
find_package(Qt6 COMPONENTS ${qt_components} QUIET)
|
|
|
|
endif()
|
|
|
|
if (NOT Qt6Core_FOUND)
|
|
|
|
find_package(Qt5 COMPONENTS ${qt_components} REQUIRED)
|
|
|
|
set(QT_VERSION "${Qt5Core_VERSION_STRING}")
|
|
|
|
else()
|
|
|
|
# detect faulty Qt6 installation by jurplel/install-qt-action@v2
|
|
|
|
if (WITH_QCHART AND NOT Qt6Charts_FOUND)
|
|
|
|
message(FATAL_ERROR "QtCharts not found")
|
|
|
|
endif()
|
|
|
|
set(QT_VERSION "${Qt6Core_VERSION_STRING}")
|
|
|
|
if (NOT QT_VERSION)
|
|
|
|
message(WARNING "'Qt6Core_VERSION_STRING' is not set - using 6.0.0 as fallback")
|
|
|
|
set(QT_VERSION "6.0.0")
|
|
|
|
endif()
|
|
|
|
if (MSVC)
|
|
|
|
# disable Visual Studio C++ memory leak detection since it causes compiler errors with Qt 6
|
|
|
|
# D:\a\cppcheck\Qt\6.2.4\msvc2019_64\include\QtCore/qhash.h(179,15): warning C4003: not enough arguments for function-like macro invocation 'free' [D:\a\cppcheck\cppcheck\build\gui\cppcheck-gui.vcxproj]
|
|
|
|
# D:\a\cppcheck\Qt\6.2.4\msvc2019_64\include\QtCore/qhash.h(179,15): error C2059: syntax error: ',' [D:\a\cppcheck\cppcheck\build\gui\cppcheck-gui.vcxproj]
|
|
|
|
# this is supposed to be fixed according to the following tickets but it still happens
|
|
|
|
# https://bugreports.qt.io/browse/QTBUG-40575
|
|
|
|
# https://bugreports.qt.io/browse/QTBUG-86395
|
|
|
|
set(DISABLE_CRTDBG_MAP_ALLOC ON)
|
|
|
|
endif()
|
|
|
|
endif()
|
2018-01-25 17:33:52 +01:00
|
|
|
endif()
|
|
|
|
|
2015-02-13 19:00:14 +01:00
|
|
|
if (HAVE_RULES)
|
2021-03-30 13:37:26 +02:00
|
|
|
find_path(PCRE_INCLUDE pcre.h)
|
2020-05-27 05:15:46 +02:00
|
|
|
find_library(PCRE_LIBRARY pcre)
|
2021-03-30 13:37:26 +02:00
|
|
|
if (NOT PCRE_LIBRARY OR NOT PCRE_INCLUDE)
|
2015-02-13 19:00:14 +01:00
|
|
|
message(FATAL_ERROR "pcre dependency for RULES has not been found")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
2015-07-23 10:49:53 +02:00
|
|
|
|
2022-04-13 20:56:07 +02:00
|
|
|
find_package(PythonInterp 3 QUIET)
|
|
|
|
if (NOT PYTHONINTERP_FOUND)
|
|
|
|
set(PYTHONINTERP_FOUND "")
|
|
|
|
find_package(PythonInterp 2.7 QUIET)
|
2022-02-11 19:37:32 +01:00
|
|
|
if (NOT PYTHONINTERP_FOUND)
|
2022-04-13 20:56:07 +02:00
|
|
|
message(WARNING "No python interpreter found. Therefore, the match compiler is switched off.")
|
|
|
|
set(USE_MATCHCOMPILER_OPT "Off")
|
2015-07-23 10:49:53 +02:00
|
|
|
endif()
|
|
|
|
endif()
|
2020-11-22 08:57:07 +01:00
|
|
|
|
|
|
|
if (NOT USE_BUNDLED_TINYXML2)
|
|
|
|
find_package(tinyxml2 QUIET)
|
2022-03-22 21:41:44 +01:00
|
|
|
if (TARGET tinyxml2::tinyxml2)
|
|
|
|
set(tinyxml2_LIBRARIES "tinyxml2::tinyxml2")
|
|
|
|
else()
|
2022-03-15 21:17:03 +01:00
|
|
|
find_library(tinyxml2_LIBRARIES tinyxml2)
|
|
|
|
if (NOT tinyxml2_LIBRARIES)
|
2020-11-22 08:57:07 +01:00
|
|
|
message(FATAL_ERROR "tinyxml2 has not been found")
|
|
|
|
else()
|
|
|
|
set(tinyxml2_FOUND 1)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
2022-02-23 09:04:35 +01:00
|
|
|
|
|
|
|
if (USE_THREADS)
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
endif()
|
2022-03-20 10:13:32 +01:00
|
|
|
|
|
|
|
if (USE_BOOST)
|
|
|
|
find_package(Boost COMPONENTS container QUIET)
|
|
|
|
endif()
|
2022-04-13 20:56:07 +02:00
|
|
|
|
|
|
|
find_program(LIBXML2_XMLLINT_EXECUTABLE xmllint)
|