qt5base-lts/cmake
Alexandru Croitor 657525965b CMake: Warn if cmake_minimum_required has an unsupported low version
Qt6Config.cmake calls cmake_minimum_required to ensure a recent enough
CMake version is used in projects.

That call does not set policies in the calling subdirectory scope,
because find_package introduces a new policy scope.

If a project using Qt has a 'cmake_minimum_required(VERSION 3.1)'
call and is configured with a recent CMake, many policies will
still be set to OLD.

One such policy is CMP0071 (Run AUTOMOC on GENERATED files). The
policy value is queried at generation time rather than at target
definition time, which means we can't influence the policy value
(e.g. inside the implementation of qt_add_executable for example)

The inability to influence the policy value for targets created by our
own CMake functions is unfortunate and can lead to issues (in the case
of the above policy to compilation / linker issues).

Record the version of the last cmake_minimum_required call before
the Qt packages are found and error out if the version is lower than
the minimum supported one.

A project can reduce the error into a warning by specifying a
-DQT_FORCE_MIN_CMAKE_VERSION_FOR_USING_QT_IN_CMAKE_MIN_REQUIRED=3.xyz
option when configuring the project.
If the option is used and build issues arise, no official support is
given.

All the CMake example projects shipped with Qt specify a minimum
version of 3.16 already (which is the minimum for shared Qt builds),
so it shouldn't be an issue to require that in other user projects as
well.

Implementation wise, we follow the existing pattern to record
what the minimum and computed versions for static and shared Qt
builds are at qtbase configure time.
These are then checked before the Qt6 or QtFoo packages are
find_package'd.

Amends 6518bcc167

Pick-to: 6.2
Task-number: QTBUG-95018
Task-number: QTBUG-95832
Change-Id: I1a1d06d82f566c92192a699045127943604c8353
Reviewed-by: Craig Scott <craig.scott@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
2021-10-01 14:32:36 +02:00
..
3rdparty CMake: Restore Qt-custom sanitizer additions to ECMEnableSanitizers 2021-06-25 12:33:58 +02:00
ios CMake: Remove deprecated CFBundleLongVersionString from Info.plist 2021-08-17 21:30:34 +02:00
macos CMake: Remove deprecated CFBundleLongVersionString from Info.plist 2021-08-17 21:30:34 +02:00
QtBuildInternals Rework how installation is prevented in non-prefix builds 2021-09-22 18:32:47 +02:00
tests CMake: Bump almost all cmake_minimum_required calls to 3.16 2021-09-22 19:36:49 +02:00
configure-cmake-mapping.md Remove dysfunctional -coverage configure argument 2021-08-10 12:00:13 +02:00
FindATSPI2.cmake CMake: Mark all find_package(PkgConfig) to be quiet 2020-06-29 12:23:10 +02:00
FindCups.cmake CMake: Add FindCups.cmake from upstream cmake 2019-04-03 08:54:14 +00:00
FindDB2.cmake Adjust database packages FindFoo.cmake files to CMake convention 2021-01-19 13:17:55 +00:00
FindDirectFB.cmake CMake: Mark all find_package(PkgConfig) to be quiet 2020-06-29 12:23:10 +02:00
Finddouble-conversion.cmake cmake: Only use the doubleconversion cmake config if "valid" 2019-02-01 12:26:43 +00:00
FindGLESv2.cmake CMake: Fix hardcoded iOS SDK when finding OpenGLES 2021-04-15 00:07:51 +02:00
FindGSSAPI.cmake Add Solaris support in cmake build 2021-04-21 20:57:04 +00:00
FindGTK3.cmake CMake: pro2cmake: Specify library versions for 3rd party libs part 2 2020-08-10 11:56:54 +02:00
FindInterbase.cmake ibase: Fix the compilation and include it again so it can be detected 2021-01-26 21:47:36 +01:00
FindLibb2.cmake FindLibb2: Don't rely solely on pkg-config 2021-01-18 15:42:52 +11:00
FindLibproxy.cmake CMake: Mark all find_package(PkgConfig) to be quiet 2020-06-29 12:23:10 +02:00
FindLibsystemd.cmake CMake: Mark all find_package(PkgConfig) to be quiet 2020-06-29 12:23:10 +02:00
FindLibudev.cmake CMake: Mark all find_package(PkgConfig) to be quiet 2020-06-29 12:23:10 +02:00
FindMtdev.cmake CMake: Mark all find_package(PkgConfig) to be quiet 2020-06-29 12:23:10 +02:00
FindMySQL.cmake Adjust database packages FindFoo.cmake files to CMake convention 2021-01-19 13:17:55 +00:00
FindOracle.cmake Adjust database packages FindFoo.cmake files to CMake convention 2021-01-19 13:17:55 +00:00
FindPostgreSQL.cmake Add upstream version of FindPostgreSQL.cmake 2021-01-26 16:05:05 +01:00
FindPPS.cmake CMake Build: Add include guards for FindPPS.cmake and FindSlog2.cmake 2020-08-19 12:46:10 +02:00
FindSlog2.cmake CMake Build: Add include guards for FindPPS.cmake and FindSlog2.cmake 2020-08-19 12:46:10 +02:00
FindTslib.cmake CMake: Mark all find_package(PkgConfig) to be quiet 2020-06-29 12:23:10 +02:00
FindWrapAtomic.cmake Fix typo in FindWrapAtomic.cmake 2021-05-12 14:49:45 +02:00
FindWrapBacktrace.cmake Fix backtrace on non-linux systems 2021-03-22 21:31:09 +00:00
FindWrapBrotli.cmake CMake: fix build with static Brotli 2021-05-07 02:06:44 +08:00
FindWrapDBus1.cmake CMake: pro2cmake: Specify library versions for 3rd party libraries 2020-08-10 11:56:54 +02:00
FindWrapDoubleConversion.cmake CMake: Display found information in some of the Find modules 2020-06-26 22:14:48 +02:00
FindWrapFreetype.cmake CMake: Handle conditions in third party find modules correctly 2020-03-05 16:08:14 +01:00
FindWrapHarfbuzz.cmake CMake: Handle conditions in third party find modules correctly 2020-03-05 16:08:14 +01:00
FindWrapOpenGL.cmake CMake: Use correct framework link flags in scripts and .pri files 2020-07-01 10:03:38 +02:00
FindWrapOpenSSL.cmake CMake: Be more explicit about found OpenSSL variables 2021-07-01 18:57:22 +02:00
FindWrapOpenSSLHeaders.cmake CMake: Make WrapVulkanHeaders target optional for QtGui consumers 2021-07-29 16:38:50 +02:00
FindWrapPCRE2.cmake CMake: Handle conditions in third party find modules correctly 2020-03-05 16:08:14 +01:00
FindWrapPNG.cmake CMake: Handle conditions in third party find modules correctly 2020-03-05 16:08:14 +01:00
FindWrapRt.cmake CMake: Fix FindWrapRt 2020-09-18 20:25:58 +02:00
FindWrapSystemFreetype.cmake CMake: pro2cmake: Specify library versions for 3rd party libraries 2020-08-10 11:56:54 +02:00
FindWrapSystemHarfbuzz.cmake CMake: pro2cmake: Specify library versions for 3rd party libraries 2020-08-10 11:56:54 +02:00
FindWrapSystemMd4c.cmake Fix support for using system supplied md4c library 2021-06-03 20:08:32 +02:00
FindWrapSystemPCRE2.cmake CMake: Add PCRE2 library selection depend on debug version availability 2020-11-08 03:13:03 +01:00
FindWrapSystemPNG.cmake CMake: pro2cmake: Specify library versions for 3rd party libraries 2020-08-10 11:56:54 +02:00
FindWrapVulkan.cmake CMake: Fix Vulkan to be found when targeting Android 2021-07-01 18:57:50 +02:00
FindWrapVulkanHeaders.cmake CMake: Make WrapVulkanHeaders target optional for QtGui consumers 2021-07-29 16:38:50 +02:00
FindWrapZLIB.cmake CMake: Introduce zlib find script to work around hardcoded iOS SDK 2021-04-19 20:30:45 +02:00
FindXKB_COMMON_X11.cmake CMake: Mark all find_package(PkgConfig) to be quiet 2020-06-29 12:23:10 +02:00
FindXRender.cmake CMake: Mark all find_package(PkgConfig) to be quiet 2020-06-29 12:23:10 +02:00
FindZSTD.cmake CMake: Make zstd config-based lookup quiet 2020-11-09 17:47:57 +00:00
modulecppexports_p.h.in Implement generating of private cpp exports 2021-08-27 11:01:47 +02:00
modulecppexports.h.in Implement generating of private cpp exports 2021-08-27 11:01:47 +02:00
ModuleDescription.json.in CMake: Use PROJECT_VERSION for generated QtModule.json files 2021-04-15 14:23:11 +02:00
Qt3rdPartyLibraryConfig.cmake.in CMake: Enable NEW policies by CMake version with a global default 2020-12-07 13:22:57 +11:00
Qt3rdPartyLibraryHelpers.cmake CMake: Don't propagate -fapplication-extension to user projects 2021-07-16 09:52:24 +02:00
qt.toolchain.cmake.in CMake: Show error in user projects if wasm toolchain file not found 2021-09-27 18:29:44 +02:00
QtAndroidHelpers.cmake CMake: make sure to collect Android dependencies for plugins 2021-03-17 01:02:21 +02:00
QtAppHelpers.cmake CMake: Place internal apps in the correct output directory 2021-07-09 09:44:58 +02:00
QtAutoDetect.cmake CMake: Show error in user projects if wasm toolchain file not found 2021-09-27 18:29:44 +02:00
QtAutogenHelpers.cmake Add framework paths when generating moc manually 2021-02-05 17:11:15 +01:00
QtBaseCMakeTesting.cmake CMake: Add option to run cmake build tests 2018-11-22 08:39:12 +00:00
QtBaseConfigureTests.cmake Fix the win32-clang-msvc target 2021-06-15 16:58:46 +02:00
QtBaseGlobalTargets.cmake CMake: Warn if cmake_minimum_required has an unsupported low version 2021-10-01 14:32:36 +02:00
QtBuild.cmake Remove unused EXE_FLAGS option from qt_internal_add_executable() 2021-09-18 01:54:08 +10:00
QtBuildInformation.cmake CMake: Include quiet packages in feature summary 2021-08-18 22:15:35 +02:00
QtBuildInternalsExtra.cmake.in CMake: Allow opting out of building examples as ExternalProjects 2021-09-06 19:44:26 +02:00
QtCMakeHelpers.cmake CMake: Pass Qt6_FIND_VERSION in Qt6Config when looking for components 2021-08-19 16:42:56 +02:00
QtCMakeVersionHelpers.cmake CMake: Warn if cmake_minimum_required has an unsupported low version 2021-10-01 14:32:36 +02:00
QtCompilerFlags.cmake CMake: Allow disabling warnings similar to CONFIG += warn_off 2020-02-25 15:43:15 +01:00
QtCompilerOptimization.cmake Fix Android -ltcg build 2021-08-20 09:48:27 +02:00
QtConfig.cmake.in CMake: Warn if cmake_minimum_required has an unsupported low version 2021-10-01 14:32:36 +02:00
QtConfigDependencies.cmake.in CMake: Use namespaced variables in Qt6*Dependencies.cmake 2021-07-24 03:51:53 +08:00
QtConfigExtras.cmake.in CMake: Warn if cmake_minimum_required has an unsupported low version 2021-10-01 14:32:36 +02:00
QtDbusHelpers.cmake CMake: Split QtBuild.cmake into smaller files 2020-08-14 13:17:11 +02:00
QtDeferredDependenciesHelpers.cmake CMake: Let doc targets depend on doc tools in top-level build 2020-10-23 21:11:40 +02:00
QtDocsHelpers.cmake CMake: Introduce QT_BUILD_ONLINE_DOCS flag for documentation builds 2021-09-30 15:38:07 +02:00
QtExecutableHelpers.cmake Fix main() not being visible on Android 2021-09-20 21:19:02 +10:00
QtFeature.cmake Fix separate_debug_info configure test for cross-compilation 2021-09-28 15:59:31 +02:00
QtFeatureCommon.cmake CMake: Introduce QtFeatureCommon.cmake 2020-08-13 19:31:59 +02:00
QtFileConfigure.txt.in CMake: Introduce qt_configure_file 2020-03-23 09:54:56 +01:00
QtFindPackageHelpers.cmake CMake: Fix qt_find_package to work when CMP00126 is set to NEW 2021-08-10 16:51:53 +02:00
QtFindWrapConfigExtra.cmake.in CMake: Handle conditions in third party find modules correctly 2020-03-05 16:08:14 +01:00
QtFindWrapHelper.cmake CMake: Display found information in some of the Find modules 2020-06-26 22:14:48 +02:00
QtFinishPrlFile.cmake Fix generated pri and prl files 2021-07-17 02:42:13 +08:00
QtFlagHandlingHelpers.cmake Disable forced full optimization if QT_USE_DEFAULT_CMAKE_OPTIMIZATION_FLAGS=ON 2021-06-24 18:10:32 +02:00
QtFrameworkHelpers.cmake CMake: Place internal apps in the correct output directory 2021-07-09 09:44:58 +02:00
QtGenerateExtPri.cmake CMake: Generate information about 3rdparty libs in module .pri files 2020-05-19 13:26:53 +02:00
QtGenerateLibHelpers.cmake Fix generated pri and prl files 2021-07-17 02:42:13 +08:00
QtGenerateLibPri.cmake Fix generated pri and prl files 2021-07-17 02:42:13 +08:00
QtGlobalStateHelpers.cmake CMake: Split QtBuild.cmake into smaller files 2020-08-14 13:17:11 +02:00
QtHeadersClean.cmake Add missing framework paths to header check targets 2021-09-20 17:54:12 +02:00
QtHostInfoConfig.cmake.in CMake: Expose public info about whether Qt is a shared lib build 2020-08-12 14:20:44 +02:00
QtInstallHelpers.cmake Rework how installation is prevented in non-prefix builds 2021-09-22 18:32:47 +02:00
QtInternalTargets.cmake Don't force lld for Android when clang is used 2021-08-20 17:19:20 +02:00
QtJavaHelpers.cmake CMake: build add flags for building QtAndroid.jar 2020-09-16 20:55:16 +03:00
QtLalrHelpers.cmake CMake: Split QtBuild.cmake into smaller files 2020-08-14 13:17:11 +02:00
QtModuleConfig.cmake.in CMake: Warn if cmake_minimum_required has an unsupported low version 2021-10-01 14:32:36 +02:00
QtModuleDependencies.cmake.in CMake: Fix QT_ADDITIONAL_PACKAGES_PREFIX_PATH for cross-builds 2021-08-19 16:42:56 +02:00
QtModuleHelpers.cmake Do not generate cpp exports for pure STATIC modules 2021-09-17 13:57:17 +02:00
QtModuleToolsConfig.cmake.in CMake: Enable NEW policies by CMake version with a global default 2020-12-07 13:22:57 +11:00
QtModuleToolsDependencies.cmake.in CMake: Use namespaced variables in Qt6*Dependencies.cmake 2021-07-24 03:51:53 +08:00
QtModuleToolsVersionlessTargets.cmake.in CMake: Create global imported versionless tool targets 2021-06-01 16:29:15 +02:00
QtNoLinkTargetHelpers.cmake CMake: Split QtBuild.cmake into smaller files 2020-08-14 13:17:11 +02:00
QtPlatformAndroid.cmake Update Android default SDK from 29 to 30 2021-08-27 18:31:17 +00:00
QtPlatformSupport.cmake Add Solaris support in cmake build 2021-04-21 20:57:04 +00:00
QtPlatformTargetHelpers.cmake Move the logic associated with platform definition directory 2021-07-13 14:31:16 +02:00
QtPluginConfig.cmake.in CMake: Fix auto-linking of static plugins in standalone tests 2021-04-21 15:21:08 +02:00
QtPluginDependencies.cmake.in CMake: Use namespaced variables in Qt6*Dependencies.cmake 2021-07-24 03:51:53 +08:00
QtPluginHelpers.cmake CMake: Create plugin initializers for static user plugins 2021-08-24 16:10:31 +02:00
QtPlugins.cmake.in CMake: Introduce finalizer mode handling of static plugins 2021-05-20 00:55:46 +02:00
QtPostProcess.cmake Generate information about user-facing applications in build dir 2021-03-02 22:00:51 +01:00
QtPostProcessHelpers.cmake CMake: Make standalone tests TestsConfig file repo-target-set specific 2021-09-16 20:59:35 +02:00
QtPrecompiledHeadersHelpers.cmake CMake: Split QtBuild.cmake into smaller files 2020-08-14 13:17:11 +02:00
QtPriHelpers.cmake qdevice.pri: Use cmake separators for the path 2021-09-10 21:12:58 +02:00
QtPrlHelpers.cmake Fix generated pri and prl files 2021-07-17 02:42:13 +08:00
QtProcessConfigureArgs.cmake Add missing -help argument to qt-configure-module 2021-08-20 19:44:43 +02:00
QtProperties.cmake Rename / prefix all our private API functions with qt_ 2019-11-14 09:05:33 +00:00
QtPublicCMakeVersionHelpers.cmake CMake: Warn if cmake_minimum_required has an unsupported low version 2021-10-01 14:32:36 +02:00
QtPublicDependencyHelpers.cmake CMake: Fix QT_ADDITIONAL_PACKAGES_PREFIX_PATH for cross-builds 2021-08-19 16:42:56 +02:00
QtPublicFinalizerHelpers.cmake Disable finalizers by default for the non-ld linkers 2021-06-19 11:06:04 +02:00
QtPublicFindPackageHelpers.cmake CMake: Add public FindPackageHelpers 2021-06-14 20:58:00 +02:00
QtPublicPluginHelpers.cmake Avoid implicit linking of plugin init library if finalizers were called 2021-09-08 19:51:58 +02:00
QtPublicTargetHelpers.cmake Remove TODOs related to checking CMake 3.21 features post-release 2021-09-18 01:54:08 +10:00
QtPublicWalkLibsHelpers.cmake CMake: Make WrapVulkanHeaders target optional for QtGui consumers 2021-07-29 16:38:50 +02:00
QtPublicWasmToolchainHelpers.cmake CMake: Show error in user projects if wasm toolchain file not found 2021-09-27 18:29:44 +02:00
QtQmakeHelpers.cmake CMake: Only write device prefix to target_qt.conf if necessary 2021-09-28 22:18:13 +02:00
QtResourceHelpers.cmake Avoid to call _qt_internal_set_up_static_runtime_library() twice 2021-08-03 04:18:42 +08:00
QtRpathHelpers.cmake Move the framework related information to the common function 2021-05-31 20:50:07 +02:00
QtSanitizerHelpers.cmake CMake: Propagate sanitizer flags to public projects 2021-06-25 12:33:58 +02:00
QtScopeFinalizerHelpers.cmake CMake: Allow promoting the Qt libraries to be global targets 2021-06-16 13:22:17 +02:00
QtSeparateDebugInfo.cmake CMake: Exclude dSYM INSTALL commands for already excluded tools in debug 2021-08-17 02:55:12 +02:00
QtSeparateDebugInfo.Info.plist.in CMake: Port the 'separate_debug_info' feature 2020-03-06 13:38:37 +01:00
QtSetup.cmake Rework how installation is prevented in non-prefix builds 2021-09-22 18:32:47 +02:00
QtSimdHelpers.cmake CMake: Teach qt_internal_add_simd to exclude given osx architectures 2021-04-01 18:14:56 +02:00
QtSingleRepoTargetSetBuildHelpers.cmake Add support for building and installing repo target sets 2021-05-20 12:08:33 +02:00
QtStandaloneTestsConfig.cmake.in Make standalone tests build via top level repo project 2019-11-08 15:42:32 +00:00
QtSyncQtHelpers.cmake CMake: Remove unnecessary IF DEFINED HOST_PERL check 2021-09-08 14:20:05 +02:00
QtTargetHelpers.cmake CMake: Warn when PRIVATE_MODULE_INTERFACE is provided with no target 2021-08-26 16:40:15 +02:00
QtTestHelpers.cmake testlib: Update a few remaining instances of the deprecated -xunitxml format 2021-07-29 18:46:39 +02:00
QtToolchainHelpers.cmake CMake: Show error in user projects if wasm toolchain file not found 2021-09-27 18:29:44 +02:00
QtToolHelpers.cmake Skip unnecessary commands when cross-building tools 2021-09-27 16:34:23 +02:00
QtWasmHelpers.cmake wasm: don’t set exit_runtime 2021-06-23 06:57:21 +00:00
QtWrapperScriptHelpers.cmake CMake: Make qt-internal-configure-tests relocatable 2021-04-26 23:11:28 +02:00
QtWriteArgsFile.cmake CMake: Bump almost all cmake_minimum_required calls to 3.16 2021-09-22 19:36:49 +02:00
README.md CMake: Update section on required CMake versions 2021-06-21 12:48:12 +02:00

Overview

This document gives an overview of the Qt 6 build system. For a hands-on guide on how to build Qt 6, see https://doc.qt.io/qt-6/build-sources.html and https://wiki.qt.io/Building_Qt_6_from_Git

CMake Versions

  • You need CMake 3.16.0 or later for most platforms (due to new AUTOMOC json feature).
  • You need CMake 3.17.0 to build Qt for iOS with the simulator_and_device feature.
  • You need CMake 3.17.0 + Ninja to build Qt in debug_and_release mode on Windows / Linux.
  • You need CMake 3.18.0 + Ninja to build Qt on macOS in debug_and_release mode when using frameworks.
  • You need CMake 3.18.0 in user projects that use a static Qt together with QML (cmake_language EVAL is required for running the qmlimportscanner deferred finalizer)
  • You need CMake 3.19.0 in user projects to use automatic deferred finalizers (automatic calling of qt_finalize_target)
  • You need CMake 3.21.0 in user projects that create user libraries that link against a static Qt with a linker that is not capable to resolve circular dependencies between libraries (GNU ld, MinGW ld)

Changes to Qt 5

The build system of Qt 5 was done on top of qmake. Qt 6 is built with CMake.

This offered an opportunity to revisit other areas of the build system, too:

  • The Qt 5 build system allowed to build host tools during a cross-compilation run. Qt 6 requires you to build a Qt for your host machine first and then use the platform tools from that version. The decision to do this was reached independent of cmake: This does save resources on build machines as the host tools will only get built once.

  • For now Qt still ships and builds bundled 3rd party code, due to time constraints on getting all the necessary pieces together in order to remove the bundled code (changes are necessary not only in the build system but in other parts of the SDK like the Qt Installer).

  • There is less need for bootstrapping. Only moc and rcc (plus the lesser known tracegen and qfloat16-tables) are linking against the bootstrap Qt library. Everything else can link against the full QtCore. This does include qmake. qmake is supported as a build system for applications using Qt going forward and will not go away anytime soon.

Building against homebrew on macOS

You may use brew to install dependencies needed to build QtBase.

  • Install homebrew: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • Build Qt dependencies: brew install pcre2 harfbuzz freetype
  • Install cmake: brew install cmake
  • When running cmake in qtbase, pass -DCMAKE_PREFIX_PATH=/usr/local

Building

The basic way of building with cmake is as follows:

    cd {build directory}
    cmake -DCMAKE_INSTALL_PREFIX=/path/where/to/install {path to source directory}
    cmake --build .
    cmake --install .

The mapping of configure options to CMake arguments is described here.

You need one build directory per Qt module. The build directory can be a sub-directory inside the module qtbase/build or an independent directory qtbase_build. The installation prefix is chosen when running cmake by passing -DCMAKE_INSTALL_PREFIX. To build more than one Qt module, make sure to pass the same install prefix.

cmake --build and cmake --install are simple wrappers around the basic build tool that CMake generated a build system for. It works with any supported build backend supported by cmake, but you can also use the backend build tool directly, e.g. by running make.

CMake has a ninja backend that works quite well and is noticeably faster (and more featureful) than make, so you may want to use that:

    cd {build directory}
    cmake -GNinja -DCMAKE_INSTALL_PREFIX=/path/where/to/install {path to source directory}
    cmake --build .
    cmake --install .

You can look into the generated build.ninja file if you're curious and you can also build targets directly, such as ninja lib/libQt6Core.so.

Make sure to remove CMakeCache.txt if you forgot to set the CMAKE_INSTALL_PREFIX on the first configuration, otherwise a second re-configuration will not pick up the new install prefix.

You can use cmake-gui {path to build directory} or ccmake {path to build directory} to configure the values of individual cmake variables or Qt features. After changing a value, you need to choose the configure step (usually several times:-/), followed by the generate step (to generate makefiles/ninja files).

Developer Build

When working on Qt itself, it can be tedious to wait for the install step. In that case you want to use the developer build option, to get as many auto tests enabled and no longer be required to make install:

    cd {build directory}
    cmake -GNinja -DFEATURE_developer_build=ON {path to source directory}
    cmake --build .
    # do NOT make install

Specifying configure.json features on the command line

QMake defines most features in configure.json files, like -developer-build or -no-opengl.

In CMake land, we currently generate configure.cmake files from the configure.json files into the source directory next to them using the helper script path_to_qtbase_source/util/cmake/configurejson2cmake.py. They are checked into the repository. If the feature in configure.json has the name "dlopen", you can specify whether to enable or disable that feature in CMake with a -D flag on the CMake command line. So for example -DFEATURE_dlopen=ON or -DFEATURE_sql_mysql=OFF. Remember to convert all '-' to '_' in the feature name. At the moment, if you change a FEATURE flag's value, you have to remove the CMakeCache.txt file and reconfigure with CMake. And even then you might stumble on some issues when reusing an existing build, because of an automoc bug in upstream CMake.

Building with CCache

You can pass -DQT_USE_CCACHE=ON to make the build system look for ccache in your PATH and prepend it to all C/C++/Objective-C compiler calls. At the moment this is only supported for the Ninja and the Makefile generators.

Cross Compiling

Compiling for a target architecture that's different than the host requires one build of Qt for the host. This "host build" is needed because the process of building Qt involves the compilation of intermediate code generator tools, that in turn are called to produce source code that needs to be compiled into the final libraries. These tools are built using Qt itself and they need to run on the machine you're building on, regardless of the architecure you are targeting.

Build Qt regularly for your host system and install it into a directory of your choice using the CMAKE_INSTALL_PREFIX variable. You are free to disable the build of tests and examples by passing -DQT_BUILD_EXAMPLES=OFF and -DQT_BUILD_TESTS=OFF.

With this installation of Qt in place, which contains all tools needed, we can proceed to create a new build of Qt that is cross-compiled to the target architecture of choice. You may proceed by setting up your environment. The CMake wiki has further information how to do that at

https://gitlab.kitware.com/cmake/community/wikis/doc/cmake/CrossCompiling

Yocto based device SDKs come with an environment setup script that needs to be sourced in your shell and takes care of setting up environment variables and a cmake alias with a toolchain file, so that you can call cmake as you always do.

In order to make sure that Qt picks up the code generator tools from the host build, you need to pass an extra parameter to cmake:

    -DQT_HOST_PATH=/path/to/your/host_build

The specified path needs to point to a directory that contains an installed host build of Qt.

Cross Compiling for Android

In order to cross-compile Qt to Android, you need a host build (see instructions above) and an Android build. In addition, it is necessary to install the Android NDK.

The following CMake variables are required for an Android build:

  • ANDROID_SDK_ROOT must point to where the Android SDK is installed
  • CMAKE_TOOLCHAIN_FILE must point to the toolchain file that comes with the NDK
  • QT_HOST_PATH must point to a host installation of Qt

Call CMake with the following arguments: -DCMAKE_TOOLCHAIN_FILE=<path/to/ndk>/build/cmake/android.toolchain.cmake -DQT_HOST_PATH=/path/to/your/host/build -DANDROID_SDK_ROOT=<path/to/sdk> -DCMAKE_INSTALL_PREFIX=$INSTALL_PATH

The toolchain file is usually located below the NDK's root at "build/cmake/android.toolchain.cmake". Instead of specifying the toolchain file you may specify ANDROID_NDK_ROOT instead. This variable is exclusively used for auto-detecting the toolchain file.

In a recent SDK installation, the NDK is located in a subdirectory "ndk_bundle" below the SDK's root directory. In that situation you may omit ANDROID_NDK_ROOT and CMAKE_TOOLCHAIN_FILE.

If you don't supply the configuration argument -DANDROID_ABI=..., it will default to armeabi-v7a. To target other architectures, use one of the following values:

  • arm64: -DANDROID_ABI=arm64-v8a
  • x86: -DANDROID_ABI=x86
  • x86_64: -DANDROID_ABI=x86_64

By default we set the android API level to 23. Should you need to change this supply the following configuration argument to the above CMake call: -DANDROID_NATIVE_API_LEVEL=${API_LEVEL}

Cross compiling for iOS

In order to cross-compile Qt to iOS, you need a host macOS build.

When running cmake in qtbase, pass -DCMAKE_SYSTEM_NAME=iOS -DQT_HOST_PATH=/path/to/your/host/build -DCMAKE_INSTALL_PREFIX=$INSTALL_PATH

If you don't supply the configuration argument -DQT_UIKIT_SDK=..., CMake will build a multi-arch simulator_and_device iOS build. To target another SDK / device type, use one of the following values:

  • iphonesimulator: -DQT_UIKIT_SDK=iphonesimulator
  • iphoneos: -DQT_UIKIT_SDK=iphoneos

Depending on what value you pass to -DQT_UIKIT_SDK= a list of target architectures is chosen by default:

  • iphonesimulator: x86_64
  • iphoneos: arm64
  • simulator_and_device: arm64;x86_64

You can try choosing a different list of architectures by passing -DCMAKE_OSX_ARCHITECTURES=x86_64;i386. Note that if you choose different architectures compared to the default ones, the build might fail. Only do it if you know what you are doing.

Debugging CMake files

CMake allows specifying the --trace and --trace-expand options, which work like qmake -d -d: As the cmake code is evaluated, the values of parameters and variables is shown. This can be a lot of output, so you may want to redirect it to a file using the --trace-redirect=log.txt option.

Porting Help

We have some python scripts to help with the conversion from qmake to cmake. These scripts can be found in utils/cmake.

configurejson2cmake.py

This script converts all configure.json in the Qt repository to configure.cmake files for use with CMake. We want to generate configure.cmake files for the foreseeable future, so if you need to tweak the generated configure.cmake files, please tweak the generation script instead.

configurejson2cmake.py is run like this: util/cmake/configurejson2cmake.py . in the top-level source directory of a Qt repository.

pro2cmake.py

pro2cmake.py generates a skeleton CMakeLists.txt file from a .pro-file. You will need to polish the resulting CMakeLists.txt file, but e.g. the list of files, etc. should be extracted for you.

pro2cmake.py is run like this: path_to_qtbase_source/util/cmake/pro2cmake.py some.pro.

run_pro2cmake.py

`` A small helper script to run pro2cmake.py on all .pro-files in a directory. Very useful to e.g. convert all the unit tests for a Qt module over to cmake;-)

run_pro2cmake.py is run like this: path_to_qtbase_source/util/cmake/run_pro2cmake.py some_dir.

vcpkg support

The initial port used vcpkg to provide 3rd party packages that Qt requires.

At the moment the Qt CI does not use vcpkg anymore, and instead builds bundled 3rd party sources if no relevant system package is found.

While the supporting code for building with vcpkg is still there, it is not tested at this time.

How to convert certain constructs

qmake CMake
qtHaveModule(foo) if(TARGET Qt::foo)
qtConfig(foo) if (QT_FEATURE_foo)

Convenience Scripts

A Qt installation's bin directory contains a number of convenience scripts.

qt-cmake

This is a wrapper around the CMake executable which passes a Qt-internal CMAKE_TOOLCHAIN_FILE. Use this to build projects against the installed Qt.

To use a custom toolchain file, use -DQT_CHAINLOAD_TOOLCHAIN_FILE=<file path>.

qt-cmake-private

The same as qt-cmake, but in addition, sets the CMake generator to Ninja.

Example:

$ cd some/empty/directory
$ ~/Qt/6.0.0/bin/qt-cmake-private ~/source/of/qtdeclarative -DFEATURE_qml_network=OFF
$ cmake --build . && cmake --install .

qt-configure-module

Call the configure script for a single Qt module, doing a CMake build.

Example:

$ cd some/empty/directory
$ ~/Qt/6.0.0/bin/qt-configure-module ~/source/of/qtdeclarative -no-feature-qml-network
$ cmake --build . && cmake --install .

qt-cmake-standalone-test

Build a single standalone test outside the Qt build.

Example:

$ cd some/empty/directory
$ ~/Qt/6.0.0/bin/qt-cmake-standalone-test ~/source/of/qtbase/test/auto/corelib/io/qprocess
$ cmake --build .