# Require the Qt (not WebEngine) minimum supported CMake version. # Another WebEngine-specific version check will be done in configure.cmake # and reported in the configure summary. cmake_minimum_required(VERSION 3.16) include(.cmake.conf) include(ExternalProject) include(cmake/Functions.cmake) project(QtWebEngine VERSION "${QT_REPO_MODULE_VERSION}" DESCRIPTION "QtWebEngine and QtPdf modules" HOMEPAGE_URL "https://qt.io/" LANGUAGES CXX C ) # Make sure we only use latest private CMake API, aka no compatibility wrappers. set(QT_NO_INTERNAL_COMPATIBILITY_FUNCTIONS TRUE) # Make sure we use the fixed BASE argument of qt_add_resource. set(QT_USE_FIXED_QT_ADD_RESOURCE_BASE TRUE) find_package(Qt6 ${PROJECT_VERSION} CONFIG REQUIRED COMPONENTS BuildInternals Core) find_package(Qt6 ${PROJECT_VERSION} CONFIG QUIET OPTIONAL_COMPONENTS Gui Widgets Network OpenGL Quick Qml PrintSupport WebChannel Positioning QuickControls2 Test QuickWidgets QuickTest WebSockets Designer JpegPrivate PngPrivate HarfbuzzPrivate FreetypePrivate ZlibPrivate ) if(MATRIX_BUILD AND NOT MATRIX_SUBBUILD AND NOT QT_SUPERBUILD) add_build(webengine_webrtc OFF) add_build(webengine_proprietary_codecs ON) add_build(webengine_printing_and_pdf OFF) add_build(webengine_extensions OFF) add_build(webengine_spellchecker OFF) add_build(qtwebengine_build OFF) return() endif() qt_build_repo()