summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
blob: 8c1061c5bb53b2e5a4342c9893875c77ec23efe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

# Need an explicit call at the top level. This is the absolute minimum version
# needed to configure the project with any combination of enabled features.
# The call to qt_build_repo_begin() will upgrade policies further.
#
# The absolute minimum version for building Qt is 3.16 because for metatype.json generation, we
# depend on being able to find the location of json files created by AUTOMOC/moc.
cmake_minimum_required(VERSION 3.16)

# Get the repo version and CMake policy details
include(.cmake.conf)

include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/QtBaseHelpers.cmake)

qt_internal_check_if_path_has_symlinks("${CMAKE_BINARY_DIR}")

# This needs to be called before the first project() call.
qt_internal_qtbase_run_autodetect()

# This call will load any provided cmake toolchain file.
project(QtBase
    VERSION "${QT_REPO_MODULE_VERSION}"
    DESCRIPTION "Qt Base Libraries"
    HOMEPAGE_URL "https://qt.io/"
    LANGUAGES CXX C ASM
)

qt_internal_qtbase_build_repo()