Merge remote-tracking branch 'origin/6.6.1' into HEAD
Last Aurora Commit: 30fa0004
Change-Id: I49a98cf24224c36330c486fbbf649a0e4b045169
This commit is contained in:
commit
dc44f7232d
@ -7,18 +7,23 @@ if (NOT DEFINED QT_SUPERBUILD OR DEFINED QT_REPO_MODULE_VERSION)
|
||||
set(QT_EXTRA_INTERNAL_TARGET_DEFINES "QT_LEAN_HEADERS=1")
|
||||
endif()
|
||||
|
||||
set(QT_REPO_MODULE_VERSION "6.4.0")
|
||||
set(QT_REPO_MODULE_VERSION "6.6.1")
|
||||
set(QT_REPO_MODULE_PRERELEASE_VERSION_SEGMENT "alpha1")
|
||||
|
||||
set(QT_COPYRIGHT_YEAR "2023")
|
||||
set(QT_COPYRIGHT "Copyright (C) ${QT_COPYRIGHT_YEAR} The Qt Company Ltd and other contributors.")
|
||||
|
||||
# Minimum requirement for building Qt
|
||||
set(QT_SUPPORTED_MIN_CMAKE_VERSION_FOR_BUILDING_QT_SHARED "3.16")
|
||||
set(QT_SUPPORTED_MIN_CMAKE_VERSION_FOR_BUILDING_QT_STATIC "3.21")
|
||||
set(QT_SUPPORTED_MIN_CMAKE_VERSION_FOR_BUILDING_QT_APPLE "3.21")
|
||||
|
||||
# Minimum requirement for consuming Qt in a user project.
|
||||
# This might be different in the future, e.g. be lower than the requirement for
|
||||
# building Qt.
|
||||
set(QT_SUPPORTED_MIN_CMAKE_VERSION_FOR_USING_QT_SHARED "3.16")
|
||||
set(QT_SUPPORTED_MIN_CMAKE_VERSION_FOR_USING_QT_STATIC "3.21")
|
||||
set(QT_SUPPORTED_MIN_CMAKE_VERSION_FOR_USING_QT_APPLE "3.21")
|
||||
|
||||
# Policy settings for commands defined by qtbase. These will also be injected
|
||||
# into the top level policy scope of each Qt module when building Qt so that
|
||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -218,6 +218,7 @@ qtc-qmldbg/
|
||||
|
||||
# Generic files
|
||||
.#*
|
||||
._*
|
||||
.com.apple.timemachine.supported
|
||||
.DS_Store
|
||||
callgrind.out.*
|
||||
@ -252,6 +253,7 @@ tags
|
||||
*_resource.rc
|
||||
*.*#
|
||||
*.debug
|
||||
.cache
|
||||
|
||||
# xemacs temporary files
|
||||
*.flc
|
||||
@ -332,3 +334,4 @@ CTestTestfile.cmake
|
||||
cmake_install.cmake
|
||||
*_autogen
|
||||
tst_*.xml
|
||||
CMakeUserPresets.json
|
||||
|
@ -1,4 +1,5 @@
|
||||
# special case skip regeneration
|
||||
# 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.
|
||||
@ -37,11 +38,26 @@ function(qt_internal_check_if_path_has_symlinks path)
|
||||
endwhile()
|
||||
endif()
|
||||
if(is_symlink)
|
||||
message(FATAL_ERROR "The path \"${path}\" contains symlinks. \
|
||||
This is not supported. Possible solutions:
|
||||
- map directories using a transparent mechanism such as mount --bind
|
||||
- pass the real path of the build directory to CMake, e.g. using \
|
||||
cd $(realpath <path>) before invoking cmake <source_dir>.")
|
||||
set(possible_solutions_for_resolving_symlink [[
|
||||
- Map directories using a transparent mechanism such as mount --bind
|
||||
- Pass the real path of the build directory to CMake, e.g. using
|
||||
cd $(realpath <path>) before invoking cmake <source_dir>.
|
||||
]])
|
||||
if(QT_ALLOW_SYMLINK_IN_PATHS)
|
||||
# In some cases, e.g., Homebrew, it is beneficial to skip this check.
|
||||
# Before this, Homebrew had to patch this out to be able to get their build.
|
||||
message(WARNING
|
||||
"The path \"${path}\" contains symlinks. "
|
||||
"This is not recommended, and it may lead to unexpected issues. If you do "
|
||||
"not have a good reason for enabling 'QT_ALLOW_SYMLINK_IN_PATHS', disable "
|
||||
"it, and follow one of the following solutions: \n"
|
||||
"${possible_solutions_for_resolving_symlink} ")
|
||||
else()
|
||||
message(FATAL_ERROR
|
||||
"The path \"${path}\" contains symlinks. "
|
||||
"This is not supported. Possible solutions: \n"
|
||||
"${possible_solutions_for_resolving_symlink} ")
|
||||
endif()
|
||||
endif()
|
||||
endfunction()
|
||||
qt_internal_check_if_path_has_symlinks("${CMAKE_BINARY_DIR}")
|
||||
@ -106,6 +122,8 @@ else()
|
||||
find_package(Qt6 REQUIRED COMPONENTS BuildInternals CMAKE_FIND_ROOT_PATH_BOTH)
|
||||
endif()
|
||||
|
||||
qt_internal_project_setup()
|
||||
|
||||
qt_build_repo_begin()
|
||||
|
||||
if(NOT QT_BUILD_STANDALONE_TESTS)
|
||||
|
45
LICENSES/AFL-2.1.txt
Normal file
45
LICENSES/AFL-2.1.txt
Normal file
@ -0,0 +1,45 @@
|
||||
The Academic Free License
|
||||
v.2.1
|
||||
|
||||
This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work:
|
||||
|
||||
Licensed under the Academic Free License version 2.1
|
||||
|
||||
1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following:
|
||||
|
||||
a) to reproduce the Original Work in copies;
|
||||
b) to prepare derivative works ("Derivative Works") based upon the Original Work;
|
||||
c) to distribute copies of the Original Work and Derivative Works to the public;
|
||||
d) to perform the Original Work publicly; and
|
||||
e) to display the Original Work publicly.
|
||||
|
||||
2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works.
|
||||
|
||||
3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work.
|
||||
|
||||
4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license.
|
||||
|
||||
5) This section intentionally omitted.
|
||||
|
||||
6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work.
|
||||
|
||||
7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer.
|
||||
|
||||
8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.
|
||||
|
||||
9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions.
|
||||
|
||||
10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware.
|
||||
|
||||
11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License.
|
||||
|
||||
12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License.
|
||||
|
||||
13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.
|
||||
|
||||
14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You.
|
||||
|
||||
This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved.
|
||||
Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner.
|
121
LICENSES/CC0-1.0.txt
Normal file
121
LICENSES/CC0-1.0.txt
Normal file
@ -0,0 +1,121 @@
|
||||
Creative Commons Legal Code
|
||||
|
||||
CC0 1.0 Universal
|
||||
|
||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
|
||||
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
|
||||
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
|
||||
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
|
||||
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
|
||||
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
|
||||
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
|
||||
HEREUNDER.
|
||||
|
||||
Statement of Purpose
|
||||
|
||||
The laws of most jurisdictions throughout the world automatically confer
|
||||
exclusive Copyright and Related Rights (defined below) upon the creator
|
||||
and subsequent owner(s) (each and all, an "owner") of an original work of
|
||||
authorship and/or a database (each, a "Work").
|
||||
|
||||
Certain owners wish to permanently relinquish those rights to a Work for
|
||||
the purpose of contributing to a commons of creative, cultural and
|
||||
scientific works ("Commons") that the public can reliably and without fear
|
||||
of later claims of infringement build upon, modify, incorporate in other
|
||||
works, reuse and redistribute as freely as possible in any form whatsoever
|
||||
and for any purposes, including without limitation commercial purposes.
|
||||
These owners may contribute to the Commons to promote the ideal of a free
|
||||
culture and the further production of creative, cultural and scientific
|
||||
works, or to gain reputation or greater distribution for their Work in
|
||||
part through the use and efforts of others.
|
||||
|
||||
For these and/or other purposes and motivations, and without any
|
||||
expectation of additional consideration or compensation, the person
|
||||
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
|
||||
is an owner of Copyright and Related Rights in the Work, voluntarily
|
||||
elects to apply CC0 to the Work and publicly distribute the Work under its
|
||||
terms, with knowledge of his or her Copyright and Related Rights in the
|
||||
Work and the meaning and intended legal effect of CC0 on those rights.
|
||||
|
||||
1. Copyright and Related Rights. A Work made available under CC0 may be
|
||||
protected by copyright and related or neighboring rights ("Copyright and
|
||||
Related Rights"). Copyright and Related Rights include, but are not
|
||||
limited to, the following:
|
||||
|
||||
i. the right to reproduce, adapt, distribute, perform, display,
|
||||
communicate, and translate a Work;
|
||||
ii. moral rights retained by the original author(s) and/or performer(s);
|
||||
iii. publicity and privacy rights pertaining to a person's image or
|
||||
likeness depicted in a Work;
|
||||
iv. rights protecting against unfair competition in regards to a Work,
|
||||
subject to the limitations in paragraph 4(a), below;
|
||||
v. rights protecting the extraction, dissemination, use and reuse of data
|
||||
in a Work;
|
||||
vi. database rights (such as those arising under Directive 96/9/EC of the
|
||||
European Parliament and of the Council of 11 March 1996 on the legal
|
||||
protection of databases, and under any national implementation
|
||||
thereof, including any amended or successor version of such
|
||||
directive); and
|
||||
vii. other similar, equivalent or corresponding rights throughout the
|
||||
world based on applicable law or treaty, and any national
|
||||
implementations thereof.
|
||||
|
||||
2. Waiver. To the greatest extent permitted by, but not in contravention
|
||||
of, applicable law, Affirmer hereby overtly, fully, permanently,
|
||||
irrevocably and unconditionally waives, abandons, and surrenders all of
|
||||
Affirmer's Copyright and Related Rights and associated claims and causes
|
||||
of action, whether now known or unknown (including existing as well as
|
||||
future claims and causes of action), in the Work (i) in all territories
|
||||
worldwide, (ii) for the maximum duration provided by applicable law or
|
||||
treaty (including future time extensions), (iii) in any current or future
|
||||
medium and for any number of copies, and (iv) for any purpose whatsoever,
|
||||
including without limitation commercial, advertising or promotional
|
||||
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
|
||||
member of the public at large and to the detriment of Affirmer's heirs and
|
||||
successors, fully intending that such Waiver shall not be subject to
|
||||
revocation, rescission, cancellation, termination, or any other legal or
|
||||
equitable action to disrupt the quiet enjoyment of the Work by the public
|
||||
as contemplated by Affirmer's express Statement of Purpose.
|
||||
|
||||
3. Public License Fallback. Should any part of the Waiver for any reason
|
||||
be judged legally invalid or ineffective under applicable law, then the
|
||||
Waiver shall be preserved to the maximum extent permitted taking into
|
||||
account Affirmer's express Statement of Purpose. In addition, to the
|
||||
extent the Waiver is so judged Affirmer hereby grants to each affected
|
||||
person a royalty-free, non transferable, non sublicensable, non exclusive,
|
||||
irrevocable and unconditional license to exercise Affirmer's Copyright and
|
||||
Related Rights in the Work (i) in all territories worldwide, (ii) for the
|
||||
maximum duration provided by applicable law or treaty (including future
|
||||
time extensions), (iii) in any current or future medium and for any number
|
||||
of copies, and (iv) for any purpose whatsoever, including without
|
||||
limitation commercial, advertising or promotional purposes (the
|
||||
"License"). The License shall be deemed effective as of the date CC0 was
|
||||
applied by Affirmer to the Work. Should any part of the License for any
|
||||
reason be judged legally invalid or ineffective under applicable law, such
|
||||
partial invalidity or ineffectiveness shall not invalidate the remainder
|
||||
of the License, and in such case Affirmer hereby affirms that he or she
|
||||
will not (i) exercise any of his or her remaining Copyright and Related
|
||||
Rights in the Work or (ii) assert any associated claims and causes of
|
||||
action with respect to the Work, in either case contrary to Affirmer's
|
||||
express Statement of Purpose.
|
||||
|
||||
4. Limitations and Disclaimers.
|
||||
|
||||
a. No trademark or patent rights held by Affirmer are waived, abandoned,
|
||||
surrendered, licensed or otherwise affected by this document.
|
||||
b. Affirmer offers the Work as-is and makes no representations or
|
||||
warranties of any kind concerning the Work, express, implied,
|
||||
statutory or otherwise, including without limitation warranties of
|
||||
title, merchantability, fitness for a particular purpose, non
|
||||
infringement, or the absence of latent or other defects, accuracy, or
|
||||
the present or absence of errors, whether or not discoverable, all to
|
||||
the greatest extent permissible under applicable law.
|
||||
c. Affirmer disclaims responsibility for clearing rights of other persons
|
||||
that may apply to the Work or any use thereof, including without
|
||||
limitation any person's Copyright and Related Rights in the Work.
|
||||
Further, Affirmer disclaims responsibility for obtaining any necessary
|
||||
consents, permissions or other rights required for any use of the
|
||||
Work.
|
||||
d. Affirmer understands and acknowledges that Creative Commons is not a
|
||||
party to this document and has no duty or obligation with respect to
|
||||
this CC0 or use of the Work.
|
1
LICENSES/GPL-2.0-or-later.txt
Symbolic link
1
LICENSES/GPL-2.0-or-later.txt
Symbolic link
@ -0,0 +1 @@
|
||||
GPL-2.0-only.txt
|
@ -0,0 +1,12 @@
|
||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
EXEMPTION FOR BINARY LIBRARY-LIKE PACKAGES
|
||||
------------------------------------------
|
||||
|
||||
The second condition in the BSD licence (covering binary redistributions) does not apply all the way down a chain of software. If binary package A includes PCRE2, it must respect the condition, but if package B is software that includes package A, the condition is not imposed on package B unless it uses PCRE2 independently.
|
3
LICENSES/LicenseRef-SHA1-Public-Domain.txt
Normal file
3
LICENSES/LicenseRef-SHA1-Public-Domain.txt
Normal file
@ -0,0 +1,3 @@
|
||||
100% free public domain implementation of the SHA-1 algorithm
|
||||
by Dominik Reichl <dominik.reichl@t-online.de>
|
||||
Web: http://www.dominik-reichl.de/
|
@ -1,2 +1,2 @@
|
||||
@echo off
|
||||
@host_qt_bindir@\@tool_name@.exe -qtconf "%~dp0\target_qt.conf" %*
|
||||
@host_qt_bindir@\@tool_name@@tool_version@.exe -qtconf "%~dp0\target_qt.conf" %*
|
||||
|
@ -4,4 +4,4 @@
|
||||
script_dir_path=`dirname $0`
|
||||
script_dir_path=`(cd "$script_dir_path"; /bin/pwd)`
|
||||
|
||||
@host_qt_bindir@/@tool_name@ -qtconf "$script_dir_path/target_qt.conf" $*
|
||||
@host_qt_bindir@/@tool_name@@tool_version@ -qtconf "$script_dir_path/target_qt.conf" $*
|
||||
|
18
bin/qt-cmake-create.bat.in
Normal file
18
bin/qt-cmake-create.bat.in
Normal file
@ -0,0 +1,18 @@
|
||||
@echo off
|
||||
:: The directory of this script is the expanded absolute path of the "$qt_prefix/bin" directory.
|
||||
set script_dir_path=%~dp0
|
||||
|
||||
:: Try to use original cmake, otherwise to make it relocatable, use any cmake found in PATH.
|
||||
set cmake_path=@CMAKE_COMMAND@
|
||||
if not exist "%cmake_path%" set cmake_path=cmake
|
||||
|
||||
if NOT "%~2" == "" goto :showhelp
|
||||
if NOT "%~1" == "" (set PROJECT_DIR=%~1) else (set PROJECT_DIR=%cd%)
|
||||
|
||||
"%cmake_path%" -DPROJECT_DIR="%PROJECT_DIR%" -P "%script_dir_path%\@__GlobalConfig_relative_path_from_bin_dir_to_cmake_config_dir@\QtInitProject.cmake"
|
||||
exit /b %errorlevel%
|
||||
|
||||
:showhelp
|
||||
echo Usage
|
||||
echo. qt-cmake-create <path/to/project>
|
||||
exit /b 1
|
29
bin/qt-cmake-create.in
Executable file
29
bin/qt-cmake-create.in
Executable file
@ -0,0 +1,29 @@
|
||||
#!/bin/sh
|
||||
|
||||
HELP_MESSAGE="Usage
|
||||
qt-cmake-create <path/to/project>"
|
||||
|
||||
# The directory of this script is the expanded absolute path of the "$qt_prefix/bin" directory.
|
||||
script_dir_path=`dirname $0`
|
||||
script_dir_path=`(cd "$script_dir_path"; /bin/pwd)`
|
||||
|
||||
# Try to use original cmake, otherwise to make it relocatable, use any cmake found in PATH.
|
||||
original_cmake_path="@CMAKE_COMMAND@"
|
||||
cmake_path=$original_cmake_path
|
||||
if ! test -f "$cmake_path"; then
|
||||
cmake_path="cmake"
|
||||
fi
|
||||
|
||||
if [ "$#" -gt 1 ]; then
|
||||
echo "Invalid number of arguments"
|
||||
echo "$HELP_MESSAGE"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$#" -gt 0 ]; then
|
||||
PROJECT_DIR=$1
|
||||
else
|
||||
PROJECT_DIR=$PWD
|
||||
fi
|
||||
exec "$cmake_path" -DPROJECT_DIR="$PROJECT_DIR" -P \
|
||||
"$script_dir_path/@__GlobalConfig_relative_path_from_bin_dir_to_cmake_config_dir@/QtInitProject.cmake"
|
@ -5,13 +5,18 @@
|
||||
# https://gitlab.kitware.com/cmake/cmake/-/issues/20713
|
||||
# https://gitlab.kitware.com/cmake/cmake/-/issues/21475
|
||||
set(configs "@__qt_configured_configs@")
|
||||
set(should_skip_strip "@__qt_skip_strip_installed_artifacts@")
|
||||
|
||||
if(NOT QT_BUILD_DIR)
|
||||
message(FATAL_ERROR "No QT_BUILD_DIR value provided to qt-cmake-private-install.")
|
||||
endif()
|
||||
unset(strip_arg)
|
||||
if ("x@MSVC@" STREQUAL "x")
|
||||
|
||||
if(should_skip_strip)
|
||||
unset(strip_arg)
|
||||
else()
|
||||
set(strip_arg --strip)
|
||||
endif()
|
||||
|
||||
foreach(config ${configs})
|
||||
message(STATUS "Installing configuration: '${config}'")
|
||||
set(args "${CMAKE_COMMAND}" --install ${QT_BUILD_DIR} --config "${config}" ${strip_arg})
|
||||
|
@ -6,5 +6,5 @@ set script_dir_path=%~dp0
|
||||
set cmake_path=@CMAKE_COMMAND@
|
||||
if not exist "%cmake_path%" set cmake_path=cmake
|
||||
|
||||
set toolchain_path=%script_dir_path%/@__GlobalConfig_relative_path_from_bin_dir_to_cmake_config_dir@/qt.toolchain.cmake
|
||||
set toolchain_path=%script_dir_path%\@__GlobalConfig_relative_path_from_bin_dir_to_cmake_config_dir@\qt.toolchain.cmake
|
||||
"%cmake_path%" -DCMAKE_TOOLCHAIN_FILE="%toolchain_path%" @__qt_cmake_extra@ %*
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
script_dir_path=`dirname $0`
|
||||
script_dir_path=`(cd "$script_dir_path"; /bin/pwd)`
|
||||
|
||||
@ -28,8 +30,9 @@ fi
|
||||
optfile=config.opt
|
||||
echo > "$optfile"
|
||||
for arg in "$@"; do
|
||||
echo $arg >> "$optfile"
|
||||
echo "$arg" >> "$optfile"
|
||||
done
|
||||
|
||||
cmake_script_path="$script_dir_path/@__relative_path_to_cmake_scripts_dir@/QtProcessConfigureArgs.cmake"
|
||||
"$script_dir_path/qt-cmake-private" -DOPTFILE=$optfile -DMODULE_ROOT="$module_root" -DCMAKE_COMMAND="$script_dir_path/qt-cmake-private" -P "$cmake_script_path"
|
||||
qt_cmake_private_path="$script_dir_path/../libexec"
|
||||
"$qt_cmake_private_path/qt-cmake-private" -DOPTFILE=$optfile -DMODULE_ROOT="$module_root" -DCMAKE_COMMAND="$qt_cmake_private_path/qt-cmake-private" -P "$cmake_script_path"
|
||||
|
@ -128,7 +128,8 @@ check_cxx_source_compiles("
|
||||
#include <EGL/egl.h>
|
||||
|
||||
int main(int, char **) {
|
||||
EGLint x = 0; EGLDisplay dpy = 0; EGLContext ctx = 0;
|
||||
[[maybe_unused]] EGLint x = 0;
|
||||
EGLDisplay dpy = 0; EGLContext ctx = 0;
|
||||
eglDestroyContext(dpy, ctx);
|
||||
}" HAVE_EGL)
|
||||
|
||||
|
@ -107,9 +107,6 @@ set_package_properties(WaylandScanner PROPERTIES
|
||||
DESCRIPTION "Executable that converts XML protocol files to C code"
|
||||
)
|
||||
|
||||
|
||||
include(CMakeParseArguments)
|
||||
|
||||
function(ecm_add_wayland_client_protocol out_var)
|
||||
# Parse arguments
|
||||
set(oneValueArgs PROTOCOL BASENAME)
|
||||
|
@ -129,10 +129,6 @@ set(XCB_known_components
|
||||
XVMC
|
||||
)
|
||||
|
||||
# XINPUT is unstable; do not include it by default
|
||||
set(XCB_default_components ${XCB_known_components})
|
||||
list(REMOVE_ITEM XCB_default_components "XINPUT")
|
||||
|
||||
# default component info: xcb components have fairly predictable
|
||||
# header files, library names and pkg-config names
|
||||
foreach(_comp ${XCB_known_components})
|
||||
@ -175,11 +171,6 @@ ecm_find_package_parse_components(XCB
|
||||
DEFAULT_COMPONENTS ${XCB_default_components}
|
||||
)
|
||||
|
||||
list(FIND XCB_components "XINPUT" _XCB_XINPUT_index)
|
||||
if (NOT _XCB_XINPUT_index EQUAL -1)
|
||||
message(AUTHOR_WARNING "XINPUT from XCB was requested: this is EXPERIMENTAL and is likely to unavailable on many systems!")
|
||||
endif()
|
||||
|
||||
ecm_find_package_handle_library_components(XCB
|
||||
COMPONENTS ${XCB_components}
|
||||
)
|
||||
@ -196,6 +187,6 @@ find_package_handle_standard_args(XCB
|
||||
|
||||
include(FeatureSummary)
|
||||
set_package_properties(XCB PROPERTIES
|
||||
URL "http://xcb.freedesktop.org"
|
||||
URL "https://xcb.freedesktop.org/"
|
||||
DESCRIPTION "X protocol C-language Binding"
|
||||
)
|
||||
|
@ -123,8 +123,6 @@
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
include(CMakeParseArguments)
|
||||
|
||||
macro(ecm_find_package_version_check module_name)
|
||||
if(CMAKE_VERSION VERSION_LESS 2.8.12)
|
||||
message(FATAL_ERROR "CMake 2.8.12 is required by Find${module_name}.cmake")
|
||||
|
@ -9,7 +9,7 @@
|
||||
"Version": "5.84.0",
|
||||
|
||||
"License": "BSD-3-Clause",
|
||||
"LicenseId": "BSD 3-Clause License",
|
||||
"LicenseId": "BSD-3-Clause",
|
||||
"LicenseFile": "COPYING-CMAKE-SCRIPTS",
|
||||
"Copyright": "Copyright © 2011-2018 The KDE community"
|
||||
}
|
||||
|
2
cmake/3rdparty/kwin/qt_attribution.json
vendored
2
cmake/3rdparty/kwin/qt_attribution.json
vendored
@ -9,7 +9,7 @@
|
||||
"Version": "5.13.4",
|
||||
|
||||
"License": "BSD-3-Clause",
|
||||
"LicenseId": "BSD 3-Clause License",
|
||||
"LicenseId": "BSD-3-Clause",
|
||||
"LicenseFile": "COPYING-CMAKE-SCRIPTS",
|
||||
"Copyright": "Copyright 2014 Alex Merry <alex.merry@kde.org>
|
||||
Copyright 2014 Martin Gräßlin <mgraesslin@kde.org>,
|
||||
|
@ -1,6 +1,9 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
|
||||
pkg_check_modules(ATSPI2 atspi-2 IMPORTED_TARGET)
|
||||
pkg_check_modules(ATSPI2 IMPORTED_TARGET "atspi-2")
|
||||
|
||||
if (NOT TARGET PkgConfig::ATSPI2)
|
||||
set(ATSPI2_FOUND 0)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#.rst:
|
||||
# FindDB2
|
||||
# ---------
|
||||
|
@ -1,6 +1,9 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
|
||||
pkg_check_modules(DirectFB directfb IMPORTED_TARGET)
|
||||
pkg_check_modules(DirectFB IMPORTED_TARGET "directfb")
|
||||
|
||||
if (NOT TARGET PkgConfig::DirectFB)
|
||||
set(DirectFB_FOUND 0)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
include(CheckCXXSourceCompiles)
|
||||
|
||||
# No library linkage is necessary to use GLESv2 with Emscripten. The headers are also
|
||||
|
@ -1,7 +1,10 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
pkg_check_modules(PC_GSSAPI QUIET krb5-gssapi)
|
||||
pkg_check_modules(PC_GSSAPI QUIET "krb5-gssapi")
|
||||
if (NOT PC_GSSAPI_FOUND)
|
||||
pkg_check_modules(PC_GSSAPI QUIET mit-krb5-gssapi)
|
||||
pkg_check_modules(PC_GSSAPI QUIET "mit-krb5-gssapi")
|
||||
endif()
|
||||
|
||||
find_path(GSSAPI_INCLUDE_DIRS
|
||||
@ -9,12 +12,24 @@ find_path(GSSAPI_INCLUDE_DIRS
|
||||
HINTS ${PC_GSSAPI_INCLUDEDIR}
|
||||
)
|
||||
|
||||
find_library(GSSAPI_LIBRARIES
|
||||
NAMES
|
||||
# On macOS, vcpkg opts for finding frameworks LAST. This is generally fine;
|
||||
# however, in the case of GSSAPI, `usr/lib/libgssapi_krb5.tbd` which is a
|
||||
# symlink to `Kerberos.framework` misses a few symols, e.g.,
|
||||
# `___gss_c_nt_hostbased_service_oid_desc`, and it causes build failure.
|
||||
# So, we need to make sure that we find `GSS.framework`.
|
||||
set(gssapi_library_names
|
||||
GSS # framework
|
||||
gss # solaris
|
||||
gssapi # FreeBSD
|
||||
gssapi_krb5
|
||||
)
|
||||
if(APPLE)
|
||||
list(REMOVE_ITEM gssapi_library_names "gssapi_krb5")
|
||||
endif()
|
||||
|
||||
find_library(GSSAPI_LIBRARIES
|
||||
NAMES
|
||||
${gssapi_library_names}
|
||||
HINTS ${PC_GSSAPI_LIBDIR}
|
||||
)
|
||||
|
||||
@ -41,4 +56,3 @@ mark_as_advanced(GSSAPI_INCLUDE_DIRS GSSAPI_LIBRARIES)
|
||||
include(FeatureSummary)
|
||||
set_package_properties(GSSAPI PROPERTIES
|
||||
DESCRIPTION "Generic Security Services Application Program Interface")
|
||||
|
||||
|
@ -1,10 +1,13 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
|
||||
set(__gtk3_required_version "${${CMAKE_FIND_PACKAGE_NAME}_FIND_VERSION}")
|
||||
if(__gtk3_required_version)
|
||||
set(__gtk3_required_version " >= ${__gtk3_required_version}")
|
||||
endif()
|
||||
pkg_check_modules(GTK3 "gtk+-3.0${__gtk3_required_version}" IMPORTED_TARGET)
|
||||
pkg_check_modules(GTK3 IMPORTED_TARGET "gtk+-3.0${__gtk3_required_version}")
|
||||
|
||||
if (NOT TARGET PkgConfig::GTK3)
|
||||
set(GTK3_FOUND 0)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#.rst:
|
||||
# FindInterbase
|
||||
# ---------
|
||||
@ -21,6 +24,7 @@
|
||||
find_path(Interbase_INCLUDE_DIR
|
||||
NAMES ibase.h
|
||||
HINTS ${Interbase_INCLUDEDIR}
|
||||
PATH_SUFFIXES firebird
|
||||
)
|
||||
|
||||
find_library(Interbase_LIBRARY
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# Blake2 contains a reference implementation, libb2 is a more efficient
|
||||
# implementation of a subset of Blake2 functions and should be preferred.
|
||||
# This Find module only searches for libb2 for that reason.
|
||||
@ -10,7 +13,7 @@ endif()
|
||||
find_package(PkgConfig QUIET)
|
||||
|
||||
if(PkgConfig_FOUND)
|
||||
pkg_check_modules(Libb2 libb2 IMPORTED_TARGET)
|
||||
pkg_check_modules(Libb2 IMPORTED_TARGET "libb2")
|
||||
|
||||
if (TARGET PkgConfig::Libb2)
|
||||
add_library(Libb2::Libb2 INTERFACE IMPORTED)
|
||||
|
@ -1,6 +1,9 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
|
||||
pkg_check_modules(Libproxy libproxy-1.0 IMPORTED_TARGET)
|
||||
pkg_check_modules(Libproxy IMPORTED_TARGET "libproxy-1.0")
|
||||
|
||||
if (NOT TARGET PkgConfig::Libproxy)
|
||||
set(Libproxy_FOUND 0)
|
||||
|
@ -1,6 +1,9 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
|
||||
pkg_check_modules(Libsystemd libsystemd IMPORTED_TARGET)
|
||||
pkg_check_modules(Libsystemd IMPORTED_TARGET "libsystemd")
|
||||
|
||||
if (NOT TARGET PkgConfig::Libsystemd)
|
||||
set(Libsystemd_FOUND 0)
|
||||
|
@ -1,6 +1,9 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
|
||||
pkg_check_modules(Libudev libudev IMPORTED_TARGET)
|
||||
pkg_check_modules(Libudev IMPORTED_TARGET "libudev")
|
||||
|
||||
if (NOT TARGET PkgConfig::Libudev)
|
||||
set(Libudev_FOUND 0)
|
||||
|
99
cmake/FindMimer.cmake
Normal file
99
cmake/FindMimer.cmake
Normal file
@ -0,0 +1,99 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# Copyright (C) 2022 Mimer Information Technology
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# FindMimer
|
||||
# ---------
|
||||
# Try to locate the Mimer SQL client library
|
||||
if(NOT DEFINED MimerSQL_ROOT)
|
||||
if(DEFINED ENV{MIMERSQL_DEV_ROOT})
|
||||
set(MimerSQL_ROOT "$ENV{MIMERSQL_DEV_ROOT}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(NOT DEFINED MimerSQL_ROOT)
|
||||
find_package(PkgConfig QUIET)
|
||||
endif()
|
||||
if(PkgConfig_FOUND AND NOT DEFINED MimerSQL_ROOT)
|
||||
pkg_check_modules(PC_Mimer QUIET mimcontrol)
|
||||
set(MimerSQL_include_dir_hints "${PC_MimerSQL_INCLUDEDIR}")
|
||||
set(MimerSQL_library_hints "${PC_MimerSQL_LIBDIR}")
|
||||
else()
|
||||
if(DEFINED MimerSQL_ROOT)
|
||||
if(WIN32)
|
||||
set(MimerSQL_include_dir_hints "${MimerSQL_ROOT}\\include")
|
||||
if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(x86|X86)$")
|
||||
set(MimerSQL_library_hints "${MimerSQL_ROOT}\\lib\\x86")
|
||||
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(amd64|AMD64)$")
|
||||
set(MimerSQL_library_hints "${MimerSQL_ROOT}\\lib\\amd64")
|
||||
else()
|
||||
set(MimerSQL_library_hints "")
|
||||
endif()
|
||||
else()
|
||||
set(MimerSQL_include_dir_hints "${MimerSQL_ROOT}/include")
|
||||
set(MimerSQL_library_hints "${MimerSQL_ROOT}/lib")
|
||||
endif()
|
||||
else()
|
||||
if(WIN32)
|
||||
set(MimerSQL_include_dir_hints "C:\\MimerSQLDev\\include")
|
||||
if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(x86|X86)$")
|
||||
set(MimerSQL_library_hints "C:\\MimerSQLDev\\lib\\x86")
|
||||
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(amd64|AMD64)$")
|
||||
set(MimerSQL_library_hints "C:\\MimerSQLDev\\lib\\amd64")
|
||||
else()
|
||||
set(MimerSQL_library_hints "")
|
||||
endif()
|
||||
elseif(APPLE AND ${CMAKE_SYSTEM_NAME} MATCHES "Darwin"
|
||||
AND CMAKE_OSX_ARCHITECTURES MATCHES "^(x86_64|arm64|)$")
|
||||
set(MimerSQL_library_hints "/usr/local/lib")
|
||||
set(MimerSQL_include_dir_hints "/usr/local/include")
|
||||
else()
|
||||
set(MimerSQL_include_dir_hints "")
|
||||
set(MimerSQL_library_hints "")
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
find_path(Mimer_INCLUDE_DIR
|
||||
NAMES mimerapi.h
|
||||
HINTS ${MimerSQL_include_dir_hints})
|
||||
|
||||
if(WIN32)
|
||||
if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(x86|X86)$")
|
||||
set(MIMER_LIBS_NAMES mimapi32)
|
||||
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(amd64|AMD64)$")
|
||||
set(MIMER_LIBS_NAMES mimapi64)
|
||||
endif()
|
||||
else()
|
||||
set(MIMER_LIBS_NAMES mimerapi)
|
||||
endif()
|
||||
|
||||
find_library(Mimer_LIBRARIES
|
||||
NAMES ${MIMER_LIBS_NAMES}
|
||||
HINTS ${MimerSQL_library_hints})
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
|
||||
find_package_handle_standard_args(Mimer
|
||||
REQUIRED_VARS Mimer_LIBRARIES Mimer_INCLUDE_DIR)
|
||||
|
||||
|
||||
|
||||
# Now try to get the include and library path.
|
||||
if(Mimer_FOUND)
|
||||
set(Mimer_INCLUDE_DIRS ${Mimer_INCLUDE_DIR})
|
||||
set(Mimer_LIBRARY_DIRS ${Mimer_LIBRARIES})
|
||||
if (NOT TARGET MimerSQL::MimerSQL)
|
||||
add_library(MimerSQL::MimerSQL UNKNOWN IMPORTED)
|
||||
set_target_properties(MimerSQL::MimerSQL PROPERTIES
|
||||
IMPORTED_LOCATION "${Mimer_LIBRARY_DIRS}"
|
||||
INTERFACE_INCLUDE_DIRECTORIES "${Mimer_INCLUDE_DIRS}")
|
||||
endif ()
|
||||
endif()
|
||||
|
||||
mark_as_advanced(Mimer_INCLUDE_DIR Mimer_LIBRARIES)
|
||||
|
||||
include(FeatureSummary)
|
||||
set_package_properties(MimerSQL PROPERTIES
|
||||
URL "https://www.mimer.com"
|
||||
DESCRIPTION "Mimer client library")
|
@ -1,6 +1,9 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
|
||||
pkg_check_modules(Mtdev mtdev IMPORTED_TARGET)
|
||||
pkg_check_modules(Mtdev IMPORTED_TARGET "mtdev")
|
||||
|
||||
if (NOT TARGET PkgConfig::Mtdev)
|
||||
set(Mtdev_FOUND 0)
|
||||
|
@ -1,9 +1,30 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#.rst:
|
||||
# FindMySQL
|
||||
# ---------
|
||||
#
|
||||
# Try to locate the mysql client library.
|
||||
# If found, this will define the following variables:
|
||||
#
|
||||
# By default, pkg-config is used, if available.
|
||||
# If pkg-config is not available or if you want to disable it, set the ``MySQL_ROOT`` variable.
|
||||
# The following variables can be set to control the behavior of this find module.
|
||||
#
|
||||
# ``MySQL_ROOT``
|
||||
# The root directory of the mysql client library's installation.
|
||||
# ``MySQL_INCLUDE_DIR``
|
||||
# The directory containing the include files of the mysql client library.
|
||||
# If not set, the directory is detected within ``MySQL_ROOT`` using find_path.
|
||||
# ``MySQL_LIBRARY_DIR``
|
||||
# The directory containing the binaries of the mysql client library.
|
||||
# This is used to detect ``MySQL_LIBRARY`` and passed as HINT to find_library.
|
||||
# ``MySQL_LIBRARY``
|
||||
# The file path to the mysql client library.
|
||||
# ``MySQL_LIBRARY_DEBUG``
|
||||
# The file path to the mysql client library for the DEBUG configuration.
|
||||
#
|
||||
# If the mysql client library is found, this will define the following variables:
|
||||
#
|
||||
# ``MySQL_FOUND``
|
||||
# True if the mysql library is available
|
||||
@ -18,17 +39,39 @@
|
||||
# ``MySQL::MySQL``
|
||||
# The mysql client library
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
pkg_check_modules(PC_MySQL QUIET mysqlclient)
|
||||
if(NOT DEFINED MySQL_ROOT)
|
||||
find_package(PkgConfig QUIET)
|
||||
endif()
|
||||
if(PkgConfig_FOUND AND NOT DEFINED MySQL_ROOT)
|
||||
pkg_check_modules(PC_MySQL QUIET "mysqlclient")
|
||||
set(MySQL_include_dir_hints ${PC_MySQL_INCLUDEDIR})
|
||||
set(MySQL_library_hints ${PC_MySQL_LIBDIR})
|
||||
set(MySQL_library_hints_debug "")
|
||||
else()
|
||||
set(MySQL_include_dir_hints "")
|
||||
if(NOT DEFINED MySQL_LIBRARY_DIR)
|
||||
set(MySQL_LIBRARY_DIR "${MySQL_ROOT}/lib")
|
||||
endif()
|
||||
set(MySQL_library_hints "${MySQL_LIBRARY_DIR}")
|
||||
set(MySQL_library_hints_debug "${MySQL_LIBRARY_DIR}/debug")
|
||||
endif()
|
||||
|
||||
find_path(MySQL_INCLUDE_DIR
|
||||
NAMES mysql.h
|
||||
HINTS ${PC_MySQL_INCLUDEDIR}
|
||||
HINTS "${MySQL_include_dir_hints}"
|
||||
PATH_SUFFIXES mysql mariadb)
|
||||
|
||||
find_library(MySQL_LIBRARY
|
||||
NO_PACKAGE_ROOT_PATH
|
||||
NAMES libmysql mysql mysqlclient libmariadb mariadb
|
||||
HINTS ${PC_MySQL_LIBDIR})
|
||||
HINTS ${MySQL_library_hints})
|
||||
|
||||
if(MySQL_library_hints_debug)
|
||||
find_library(MySQL_LIBRARY_DEBUG
|
||||
NO_PACKAGE_ROOT_PATH
|
||||
NAMES libmysql mysql mysqlclient libmariadb mariadb
|
||||
HINTS ${MySQL_library_hints_debug})
|
||||
endif()
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(MySQL DEFAULT_MSG MySQL_LIBRARY MySQL_INCLUDE_DIR)
|
||||
@ -41,6 +84,10 @@ if(MySQL_FOUND)
|
||||
set_target_properties(MySQL::MySQL PROPERTIES
|
||||
IMPORTED_LOCATION "${MySQL_LIBRARIES}"
|
||||
INTERFACE_INCLUDE_DIRECTORIES "${MySQL_INCLUDE_DIRS}")
|
||||
if(MySQL_LIBRARY_DEBUG)
|
||||
set_target_properties(MySQL::MySQL PROPERTIES
|
||||
IMPORTED_LOCATION_DEBUG "${MySQL_LIBRARY_DEBUG}")
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#.rst:
|
||||
# FindOracle
|
||||
# ---------
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# Find the PPS library
|
||||
|
||||
# Will make the target PPS::PPS available when found.
|
||||
@ -15,9 +18,7 @@ find_package_handle_standard_args(PPS DEFAULT_MSG PPS_INCLUDE_DIR PPS_LIBRARY)
|
||||
mark_as_advanced(PPS_INCLUDE_DIR PPS_LIBRARY)
|
||||
|
||||
if(PPS_FOUND)
|
||||
add_library(__PPS INTERFACE IMPORTED)
|
||||
target_link_libraries(__PPS INTERFACE ${PPS_LIBRARY})
|
||||
target_include_directories(__PPS INTERFACE ${PPS_INCLUDE_DIR})
|
||||
|
||||
add_library(PPS::PPS ALIAS __PPS)
|
||||
add_library(PPS::PPS INTERFACE IMPORTED)
|
||||
target_link_libraries(PPS::PPS INTERFACE "${PPS_LIBRARY}")
|
||||
target_include_directories(PPS::PPS INTERFACE "${PPS_INCLUDE_DIR}")
|
||||
endif()
|
||||
|
@ -1,5 +1,6 @@
|
||||
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
# file Copyright.txt or https://cmake.org/licensing for details.
|
||||
# Copyright (C) 2000-2022 Kitware, Inc. and Contributors.
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#[=======================================================================[.rst:
|
||||
FindPostgreSQL
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# Find the Slog2 library
|
||||
|
||||
# Will make the target Slog2::Slog2 available when found.
|
||||
|
@ -1,6 +1,9 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
|
||||
pkg_check_modules(Tslib tslib IMPORTED_TARGET)
|
||||
pkg_check_modules(Tslib IMPORTED_TARGET "tslib")
|
||||
|
||||
if (NOT TARGET PkgConfig::Tslib)
|
||||
set(Tslib_FOUND 0)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
||||
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
||||
if(TARGET WrapAtomic::WrapAtomic)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
if(TARGET WrapBacktrace::WrapBacktrace)
|
||||
set(WrapBacktrace_FOUND ON)
|
||||
return()
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
if(TARGET WrapBrotli::WrapBrotliDec)
|
||||
set(WrapBrotli_FOUND ON)
|
||||
return()
|
||||
@ -19,21 +22,21 @@ if (unofficial-brotli_FOUND)
|
||||
else()
|
||||
find_package(PkgConfig QUIET)
|
||||
if (PKG_CONFIG_FOUND)
|
||||
pkg_check_modules(libbrotlidec QUIET libbrotlidec IMPORTED_TARGET)
|
||||
pkg_check_modules(libbrotlidec QUIET IMPORTED_TARGET "libbrotlidec")
|
||||
if (libbrotlidec_FOUND)
|
||||
add_library(WrapBrotli::WrapBrotliDec INTERFACE IMPORTED)
|
||||
target_link_libraries(WrapBrotli::WrapBrotliDec INTERFACE PkgConfig::libbrotlidec)
|
||||
set(WrapBrotli_FOUND ON)
|
||||
endif()
|
||||
|
||||
pkg_check_modules(libbrotlienc QUIET libbrotlienc IMPORTED_TARGET)
|
||||
pkg_check_modules(libbrotlienc QUIET IMPORTED_TARGET "libbrotlienc")
|
||||
if (libbrotlienc_FOUND)
|
||||
add_library(WrapBrotli::WrapBrotliEnc INTERFACE IMPORTED)
|
||||
target_link_libraries(WrapBrotli::WrapBrotliEnc INTERFACE PkgConfig::libbrotlienc)
|
||||
set(WrapBrotli_FOUND ON)
|
||||
endif()
|
||||
|
||||
pkg_check_modules(libbrotlicommon QUIET libbrotlicommon IMPORTED_TARGET)
|
||||
pkg_check_modules(libbrotlicommon QUIET IMPORTED_TARGET "libbrotlicommon")
|
||||
if (libbrotlicommon_FOUND)
|
||||
add_library(WrapBrotli::WrapBrotliCommon INTERFACE IMPORTED)
|
||||
target_link_libraries(WrapBrotli::WrapBrotliCommon INTERFACE PkgConfig::libbrotlicommon)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# DBus1 is buggy and breaks PKG_CONFIG environment.
|
||||
# Work around that:-/
|
||||
# See https://gitlab.freedesktop.org/dbus/dbus/issues/267 for more information
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
include(QtFindWrapHelper NO_POLICY_SCOPE)
|
||||
|
||||
qt_find_package_system_or_bundled(wrap_freetype
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
include(QtFindWrapHelper NO_POLICY_SCOPE)
|
||||
|
||||
qt_find_package_system_or_bundled(wrap_harfbuzz
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
include(QtFindWrapHelper NO_POLICY_SCOPE)
|
||||
|
||||
qt_find_package_system_or_bundled(wrap_jpeg
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
||||
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
||||
if(TARGET WrapOpenGL::WrapOpenGL)
|
||||
@ -14,14 +17,18 @@ if (OpenGL_FOUND)
|
||||
|
||||
add_library(WrapOpenGL::WrapOpenGL INTERFACE IMPORTED)
|
||||
if(APPLE)
|
||||
# CMake 3.27 and older:
|
||||
# On Darwin platforms FindOpenGL sets IMPORTED_LOCATION to the absolute path of the library
|
||||
# within the framework. This ends up as an absolute path link flag, which we don't want,
|
||||
# because that makes our .prl files un-relocatable.
|
||||
# Extract the framework path instead, and use that in INTERFACE_LINK_LIBRARIES,
|
||||
# which CMake ends up transforming into a reloctable -framework flag.
|
||||
# which CMake ends up transforming into a relocatable -framework flag.
|
||||
# See https://gitlab.kitware.com/cmake/cmake/-/issues/20871 for details.
|
||||
#
|
||||
# CMake 3.28 and above:
|
||||
# IMPORTED_LOCATION is the absolute path the the OpenGL.framework folder.
|
||||
get_target_property(__opengl_fw_lib_path OpenGL::GL IMPORTED_LOCATION)
|
||||
if(__opengl_fw_lib_path)
|
||||
if(__opengl_fw_lib_path AND NOT __opengl_fw_lib_path MATCHES "/([^/]+)\\.framework$")
|
||||
get_filename_component(__opengl_fw_path "${__opengl_fw_lib_path}" DIRECTORY)
|
||||
endif()
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
||||
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
||||
if(TARGET WrapOpenSSL::WrapOpenSSL)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
||||
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
||||
if(TARGET WrapOpenSSLHeaders::WrapOpenSSLHeaders)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
include(QtFindWrapHelper NO_POLICY_SCOPE)
|
||||
|
||||
qt_find_package_system_or_bundled(wrap_pcre2
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
include(QtFindWrapHelper NO_POLICY_SCOPE)
|
||||
|
||||
qt_find_package_system_or_bundled(wrap_png
|
||||
|
53
cmake/FindWrapResolv.cmake
Normal file
53
cmake/FindWrapResolv.cmake
Normal file
@ -0,0 +1,53 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# Copyright (C) 2023 Intel Corpotation.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
||||
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
||||
if(TARGET WrapResolv::WrapResolv)
|
||||
set(WrapResolv_FOUND ON)
|
||||
return()
|
||||
endif()
|
||||
|
||||
set(WrapResolv_FOUND OFF)
|
||||
|
||||
include(CheckCXXSourceCompiles)
|
||||
include(CMakePushCheckState)
|
||||
|
||||
if(QNX)
|
||||
find_library(LIBRESOLV socket)
|
||||
else()
|
||||
find_library(LIBRESOLV resolv)
|
||||
endif()
|
||||
|
||||
cmake_push_check_state()
|
||||
if(LIBRESOLV)
|
||||
list(APPEND CMAKE_REQUIRED_LIBRARIES "${LIBRESOLV}")
|
||||
endif()
|
||||
|
||||
check_cxx_source_compiles("
|
||||
#include <netinet/in.h>
|
||||
#include <resolv.h>
|
||||
|
||||
int main(int, char **argv)
|
||||
{
|
||||
res_state statep;
|
||||
int n = res_nmkquery(statep, 0, argv[1], 0, 0, NULL, 0, NULL, NULL, 0);
|
||||
n = res_nsend(statep, NULL, 0, NULL, 0);
|
||||
n = dn_expand(NULL, NULL, NULL, NULL, 0);
|
||||
return n;
|
||||
}
|
||||
" HAVE_LIBRESOLV_FUNCTIONS)
|
||||
|
||||
cmake_pop_check_state()
|
||||
|
||||
if(HAVE_LIBRESOLV_FUNCTIONS)
|
||||
set(WrapResolv_FOUND ON)
|
||||
add_library(WrapResolv::WrapResolv INTERFACE IMPORTED)
|
||||
if(LIBRESOLV)
|
||||
target_link_libraries(WrapResolv::WrapResolv INTERFACE "${LIBRESOLV}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(WrapResolv DEFAULT_MSG WrapResolv_FOUND)
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
||||
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
||||
if(TARGET WrapRt::WrapRt)
|
||||
@ -18,17 +21,31 @@ if(LIBRT)
|
||||
endif()
|
||||
|
||||
check_cxx_source_compiles("
|
||||
#include <unistd.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int main(int, char **) {
|
||||
timespec ts; clock_gettime(CLOCK_REALTIME, &ts);
|
||||
}" HAVE_GETTIME)
|
||||
struct timespec ts;
|
||||
clock_gettime(CLOCK_REALTIME, &ts);
|
||||
return 0;
|
||||
}
|
||||
" HAVE_GETTIME)
|
||||
|
||||
check_cxx_source_compiles("
|
||||
#include <sys/types.h>
|
||||
#include <sys/mman.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
int main(int, char **) {
|
||||
shm_open(\"test\", O_RDWR | O_CREAT | O_EXCL, 0666);
|
||||
shm_unlink(\"test\");
|
||||
return 0;
|
||||
}
|
||||
" HAVE_SHM_OPEN_SHM_UNLINK)
|
||||
|
||||
cmake_pop_check_state()
|
||||
|
||||
|
||||
if(HAVE_GETTIME)
|
||||
if(HAVE_GETTIME OR HAVE_SHM_OPEN_SHM_UNLINK)
|
||||
set(WrapRt_FOUND ON)
|
||||
add_library(WrapRt::WrapRt INTERFACE IMPORTED)
|
||||
if (LIBRT)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
||||
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
||||
if(TARGET WrapSystemDoubleConversion::WrapSystemDoubleConversion)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
||||
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
||||
if(TARGET WrapSystemFreetype::WrapSystemFreetype)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
||||
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
||||
if(TARGET WrapSystemHarfbuzz::WrapSystemHarfbuzz)
|
||||
@ -29,7 +32,7 @@ endif()
|
||||
|
||||
if(__harfbuzz_broken_config_file OR NOT __harfbuzz_found)
|
||||
find_package(PkgConfig QUIET)
|
||||
pkg_check_modules(PC_HARFBUZZ harfbuzz IMPORTED_TARGET)
|
||||
pkg_check_modules(PC_HARFBUZZ IMPORTED_TARGET "harfbuzz")
|
||||
if(PC_HARFBUZZ_FOUND)
|
||||
set(__harfbuzz_target_name "PkgConfig::PC_HARFBUZZ")
|
||||
set(__harfbuzz_find_include_dirs_hints
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
if(TARGET WrapSystemJpeg::WrapSystemJpeg)
|
||||
set(WrapSystemJpeg_FOUND TRUE)
|
||||
return()
|
||||
|
@ -1,24 +1,43 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
if(TARGET WrapSystemMd4c::WrapSystemMd4c)
|
||||
set(WrapSystemMd4c_FOUND TRUE)
|
||||
return()
|
||||
endif()
|
||||
set(WrapSystemMd4c_REQUIRED_VARS __md4c_found)
|
||||
|
||||
find_package(md4c CONFIG)
|
||||
find_package(md4c ${${CMAKE_FIND_PACKAGE_NAME}_FIND_VERSION} QUIET)
|
||||
|
||||
# md4c provides a md4c::md4c target but
|
||||
# older versions create a md4c target without
|
||||
# namespace. If we find the old variant create
|
||||
# a namespaced target out of the md4c target.
|
||||
if(TARGET md4c AND NOT TARGET md4c::md4c)
|
||||
add_library(md4c::md4c INTERFACE IMPORTED)
|
||||
target_link_libraries(md4c::md4c INTERFACE md4c)
|
||||
set(__md4c_target_name "md4c::md4c")
|
||||
|
||||
if(md4c_FOUND)
|
||||
set(__md4c_found TRUE)
|
||||
|
||||
# md4c provides a md4c::md4c target but
|
||||
# older versions create a md4c target without
|
||||
# namespace. If we find the old variant create
|
||||
# a namespaced target out of the md4c target.
|
||||
if(TARGET md4c AND NOT TARGET ${__md4c_target_name})
|
||||
add_library(${__md4c_target_name} INTERFACE IMPORTED)
|
||||
target_link_libraries(${__md4c_target_name} INTERFACE md4c)
|
||||
endif()
|
||||
|
||||
if(md4c_VERSION)
|
||||
set(WrapSystemMd4c_VERSION "${md4c_VERSION}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(TARGET md4c::md4c)
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(WrapSystemMd4c
|
||||
REQUIRED_VARS ${WrapSystemMd4c_REQUIRED_VARS}
|
||||
VERSION_VAR WrapSystemMd4c_VERSION)
|
||||
|
||||
if(WrapSystemMd4c_FOUND)
|
||||
add_library(WrapSystemMd4c::WrapSystemMd4c INTERFACE IMPORTED)
|
||||
target_link_libraries(WrapSystemMd4c::WrapSystemMd4c INTERFACE md4c::md4c)
|
||||
target_link_libraries(WrapSystemMd4c::WrapSystemMd4c
|
||||
INTERFACE "${__md4c_target_name}")
|
||||
endif()
|
||||
|
||||
if(TARGET WrapSystemMd4c::WrapSystemMd4c)
|
||||
set(WrapSystemMd4c_FOUND TRUE)
|
||||
endif()
|
||||
unset(__md4c_found)
|
||||
unset(__md4c_target_name)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
if(TARGET WrapSystemPCRE2::WrapSystemPCRE2)
|
||||
set(WrapSystemPCRE2_FOUND TRUE)
|
||||
return()
|
||||
@ -6,11 +9,7 @@ set(WrapSystemPCRE2_REQUIRED_VARS __pcre2_found)
|
||||
|
||||
find_package(PCRE2 ${${CMAKE_FIND_PACKAGE_NAME}_FIND_VERSION} COMPONENTS 16BIT QUIET)
|
||||
|
||||
# TODO: pcre2-16 is not the target name provided by the upstream Config file. It is PCRE2::16BIT.
|
||||
# https://github.com/PCRE2Project/pcre2/blob/2410fbe3869cab403f02b94caa9ab37ee9f5854b/cmake/pcre2-config.cmake.in#L122
|
||||
# We don't strictly need to handle that though, because the pkg-config code path below still
|
||||
# finds the correct libraries.
|
||||
set(__pcre2_target_name "PCRE2::pcre2-16")
|
||||
set(__pcre2_target_name "PCRE2::16BIT")
|
||||
if(PCRE2_FOUND AND TARGET "${__pcre2_target_name}")
|
||||
# Hunter case.
|
||||
set(__pcre2_found TRUE)
|
||||
@ -23,7 +22,7 @@ if(NOT __pcre2_found)
|
||||
list(PREPEND WrapSystemPCRE2_REQUIRED_VARS PCRE2_LIBRARIES PCRE2_INCLUDE_DIRS)
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
pkg_check_modules(PC_PCRE2 QUIET libpcre2-16)
|
||||
pkg_check_modules(PC_PCRE2 QUIET "libpcre2-16")
|
||||
|
||||
find_path(PCRE2_INCLUDE_DIRS
|
||||
NAMES pcre2.h
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
||||
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
||||
if(TARGET WrapSystemPNG::WrapSystemPNG)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
||||
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
||||
if(TARGET WrapSystemZLIB::WrapSystemZLIB)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
||||
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
||||
if(TARGET WrapVulkan::WrapVulkan)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
||||
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
||||
if(TARGET WrapVulkanHeaders::WrapVulkanHeaders)
|
||||
@ -45,6 +48,26 @@ if(Vulkan_INCLUDE_DIR)
|
||||
target_include_directories(WrapVulkanHeaders::WrapVulkanHeaders INTERFACE
|
||||
${__qt_molten_vk_homebrew_include_path})
|
||||
endif()
|
||||
|
||||
# Check for homebrew vulkan-headers folder structure
|
||||
# If instead of molten-vk folder, CMAKE_PREFIX_PATH points to Homebrew's
|
||||
# vulkan-headers installation, then we will not be able to find molten-vk
|
||||
# headers. If we assume that user has installed the molten-vk formula as
|
||||
# well, then we might have a chance to pick it up like this.
|
||||
if(Vulkan_INCLUDE_DIR MATCHES "/homebrew/Cellar/")
|
||||
set(__qt_standalone_molten_vk_homebrew_include_path
|
||||
"${Vulkan_INCLUDE_DIR}/../../../../opt/molten-vk/include")
|
||||
else()
|
||||
set(__qt_standalone_molten_vk_homebrew_include_path
|
||||
"${Vulkan_INCLUDE_DIR}/../../molten-vk/include")
|
||||
endif()
|
||||
get_filename_component(
|
||||
__qt_standalone_molten_vk_homebrew_include_path
|
||||
"${__qt_standalone_molten_vk_homebrew_include_path}" ABSOLUTE)
|
||||
if(EXISTS "${__qt_standalone_molten_vk_homebrew_include_path}")
|
||||
target_include_directories(WrapVulkanHeaders::WrapVulkanHeaders INTERFACE
|
||||
${__qt_standalone_molten_vk_homebrew_include_path})
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
include(QtFindWrapHelper NO_POLICY_SCOPE)
|
||||
|
||||
qt_find_package_system_or_bundled(wrap_zlib
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#.rst:
|
||||
# FindZstd
|
||||
# ---------
|
||||
@ -25,10 +28,10 @@ include(FindPackageHandleStandardArgs)
|
||||
if(TARGET zstd::libzstd_static OR TARGET zstd::libzstd_shared)
|
||||
find_package_handle_standard_args(WrapZSTD
|
||||
REQUIRED_VARS zstd_VERSION VERSION_VAR zstd_VERSION)
|
||||
if(TARGET zstd::libzstd_static)
|
||||
set(zstdtargetsuffix "_static")
|
||||
else()
|
||||
if(TARGET zstd::libzstd_shared)
|
||||
set(zstdtargetsuffix "_shared")
|
||||
else()
|
||||
set(zstdtargetsuffix "_static")
|
||||
endif()
|
||||
if(NOT TARGET WrapZSTD::WrapZSTD)
|
||||
add_library(WrapZSTD::WrapZSTD INTERFACE IMPORTED)
|
||||
@ -37,7 +40,7 @@ if(TARGET zstd::libzstd_static OR TARGET zstd::libzstd_shared)
|
||||
endif()
|
||||
else()
|
||||
find_package(PkgConfig QUIET)
|
||||
pkg_check_modules(PC_ZSTD QUIET libzstd)
|
||||
pkg_check_modules(PC_ZSTD QUIET "libzstd")
|
||||
|
||||
find_path(ZSTD_INCLUDE_DIRS
|
||||
NAMES zstd.h
|
||||
|
@ -1,6 +1,9 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
|
||||
pkg_check_modules(XKB_COMMON_X11 "xkbcommon-x11>=0.4.1" IMPORTED_TARGET)
|
||||
pkg_check_modules(XKB_COMMON_X11 IMPORTED_TARGET "xkbcommon-x11>=0.4.1")
|
||||
|
||||
if (NOT TARGET PkgConfig::XKB_COMMON_X11)
|
||||
set(XKB_COMMON_X11_FOUND 0)
|
||||
|
@ -1,7 +1,10 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
find_package(PkgConfig QUIET)
|
||||
|
||||
if(NOT TARGET PkgConfig::XRender)
|
||||
pkg_check_modules(XRender xrender IMPORTED_TARGET)
|
||||
pkg_check_modules(XRender IMPORTED_TARGET "xrender")
|
||||
|
||||
if (NOT TARGET PkgConfig::XRender)
|
||||
set(XRender_FOUND 0)
|
||||
|
@ -1,11 +1,13 @@
|
||||
{
|
||||
"module_name": "${target}",
|
||||
"version": "${PROJECT_VERSION}",
|
||||
"built_with": {
|
||||
"name": "${target}",
|
||||
"repository": "${lower_case_project_name}",
|
||||
"version": "${PROJECT_VERSION}",${extra_module_information}
|
||||
"built_with": {${extra_build_information}
|
||||
"compiler_id": "${CMAKE_CXX_COMPILER_ID}",
|
||||
"compiler_target": "${CMAKE_CXX_COMPILER_TARGET}",
|
||||
"compiler_version": "${CMAKE_CXX_COMPILER_VERSION}",
|
||||
"cross_compiled": ${cross_compilation},
|
||||
"target_system": "${CMAKE_SYSTEM_NAME}"
|
||||
"target_system": "${CMAKE_SYSTEM_NAME}",
|
||||
"architecture": "${TEST_architecture_arch}"
|
||||
}
|
||||
}
|
||||
|
@ -4,6 +4,7 @@ macro(qt_internal_get_add_library_option_args option_args)
|
||||
STATIC
|
||||
MODULE
|
||||
INTERFACE
|
||||
NO_UNITY_BUILD
|
||||
)
|
||||
endmacro()
|
||||
|
||||
@ -14,12 +15,12 @@ endmacro()
|
||||
# Everything else is just prepation for option validating.
|
||||
function(qt_internal_add_common_qt_library_helper target)
|
||||
qt_internal_get_add_library_option_args(option_args)
|
||||
qt_parse_all_arguments(arg "qt_internal_add_common_qt_library_helper"
|
||||
cmake_parse_arguments(PARSE_ARGV 1 arg
|
||||
"${option_args}"
|
||||
""
|
||||
""
|
||||
${ARGN}
|
||||
)
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
if(arg_SHARED)
|
||||
set(arg_SHARED SHARED)
|
||||
@ -50,6 +51,11 @@ function(qt_internal_add_common_qt_library_helper target)
|
||||
endif()
|
||||
|
||||
_qt_internal_add_library(${target} ${arg_STATIC} ${arg_SHARED} ${arg_MODULE} ${arg_INTERFACE})
|
||||
|
||||
if(arg_NO_UNITY_BUILD)
|
||||
set_property(TARGET "${target}" PROPERTY UNITY_BUILD OFF)
|
||||
endif()
|
||||
|
||||
qt_internal_mark_as_internal_library(${target})
|
||||
endfunction()
|
||||
|
||||
@ -67,12 +73,13 @@ function(qt_internal_add_cmake_library target)
|
||||
${__default_public_args}
|
||||
)
|
||||
|
||||
qt_parse_all_arguments(arg "qt_add_cmake_library"
|
||||
cmake_parse_arguments(PARSE_ARGV 1 arg
|
||||
"${option_args}"
|
||||
"${single_args}"
|
||||
"${multi_args}"
|
||||
${ARGN}
|
||||
)
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
_qt_internal_validate_no_unity_build(arg)
|
||||
|
||||
qt_remove_args(library_helper_args
|
||||
ARGS_TO_REMOVE
|
||||
@ -102,6 +109,8 @@ function(qt_internal_add_cmake_library target)
|
||||
SOURCES ${arg_SOURCES}
|
||||
INCLUDE_DIRECTORIES
|
||||
${arg_INCLUDE_DIRECTORIES}
|
||||
SYSTEM_INCLUDE_DIRECTORIES
|
||||
${arg_SYSTEM_INCLUDE_DIRECTORIES}
|
||||
PUBLIC_INCLUDE_DIRECTORIES
|
||||
${arg_PUBLIC_INCLUDE_DIRECTORIES}
|
||||
PUBLIC_DEFINES
|
||||
@ -117,6 +126,7 @@ function(qt_internal_add_cmake_library target)
|
||||
MOC_OPTIONS ${arg_MOC_OPTIONS}
|
||||
ENABLE_AUTOGEN_TOOLS ${arg_ENABLE_AUTOGEN_TOOLS}
|
||||
DISABLE_AUTOGEN_TOOLS ${arg_DISABLE_AUTOGEN_TOOLS}
|
||||
NO_UNITY_BUILD # Disabled by default
|
||||
)
|
||||
endfunction()
|
||||
|
||||
@ -139,12 +149,13 @@ function(qt_internal_add_3rdparty_library target)
|
||||
${__default_public_args}
|
||||
)
|
||||
|
||||
qt_parse_all_arguments(arg "qt_internal_add_3rdparty_library"
|
||||
cmake_parse_arguments(PARSE_ARGV 1 arg
|
||||
"${library_option_args};${option_args}"
|
||||
"${single_args}"
|
||||
"${multi_args}"
|
||||
${ARGN}
|
||||
)
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
_qt_internal_validate_no_unity_build(arg)
|
||||
|
||||
qt_remove_args(library_helper_args
|
||||
ARGS_TO_REMOVE
|
||||
@ -238,6 +249,7 @@ function(qt_internal_add_3rdparty_library target)
|
||||
MOC_OPTIONS ${arg_MOC_OPTIONS}
|
||||
ENABLE_AUTOGEN_TOOLS ${arg_ENABLE_AUTOGEN_TOOLS}
|
||||
DISABLE_AUTOGEN_TOOLS ${arg_DISABLE_AUTOGEN_TOOLS}
|
||||
NO_UNITY_BUILD
|
||||
)
|
||||
|
||||
if(NOT BUILD_SHARED_LIBS OR arg_INSTALL)
|
||||
@ -308,6 +320,12 @@ function(qt_internal_add_3rdparty_library target)
|
||||
qt_enable_separate_debug_info(${target} "${debug_install_dir}")
|
||||
qt_internal_install_pdb_files(${target} "${INSTALL_LIBDIR}")
|
||||
endif()
|
||||
|
||||
if(BUILD_SHARED_LIBS AND MSVC)
|
||||
set_target_properties(${target} PROPERTIES
|
||||
INTERPROCEDURAL_OPTIMIZATION OFF
|
||||
)
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
function(qt_install_3rdparty_library_wrap_config_extra_file target)
|
||||
@ -341,12 +359,13 @@ function(qt_internal_add_3rdparty_header_module target)
|
||||
set(multi_args
|
||||
EXTERNAL_HEADERS
|
||||
)
|
||||
qt_parse_all_arguments(arg "qt_internal_add_header_module"
|
||||
cmake_parse_arguments(PARSE_ARGV 1 arg
|
||||
"${option_args}"
|
||||
"${single_args}"
|
||||
"${multi_args}"
|
||||
${ARGN}
|
||||
)
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
qt_internal_add_module(${target}
|
||||
INTERNAL_MODULE
|
||||
HEADER_MODULE
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#
|
||||
# Android specific functions/macros/properties required for building Qt Modules
|
||||
#
|
||||
@ -127,8 +130,9 @@ function(qt_internal_android_dependencies_content target file_content_out)
|
||||
if (init_class)
|
||||
set(init_class "initClass=\"${init_class}\"")
|
||||
endif()
|
||||
file(TO_NATIVE_PATH ${jar_file} jar_file_native)
|
||||
string(APPEND file_contents "<jar file=\"${jar_file_native}\" ${init_class} />\n")
|
||||
# Use unix path to allow using files on any host platform.
|
||||
file(TO_CMAKE_PATH ${jar_file} jar_file_unix_path)
|
||||
string(APPEND file_contents "<jar file=\"${jar_file_unix_path}\" ${init_class} />\n")
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
@ -139,8 +143,10 @@ function(qt_internal_android_dependencies_content target file_content_out)
|
||||
if (init_class)
|
||||
set(init_class "initClass=\"${init_class}\"")
|
||||
endif()
|
||||
file(TO_NATIVE_PATH ${bundle_file} jar_bundle_native)
|
||||
string(APPEND file_contents "<jar bundling=\"1\" file=\"${jar_bundle_native}\" ${init_class} />\n")
|
||||
# Use unix path to allow using files on any host platform.
|
||||
file(TO_CMAKE_PATH ${bundle_file} jar_bundle_unix_path)
|
||||
string(APPEND file_contents
|
||||
"<jar bundling=\"1\" file=\"${jar_bundle_unix_path}\" ${init_class} />\n")
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
@ -152,8 +158,9 @@ function(qt_internal_android_dependencies_content target file_content_out)
|
||||
if (lib_extends)
|
||||
set(lib_extends "extends=\"${lib_extends}\"")
|
||||
endif()
|
||||
file(TO_NATIVE_PATH ${lib_file} lib_file_native)
|
||||
string(APPEND file_contents "<lib file=\"${lib_file_native}\" ${lib_extends} />\n")
|
||||
# Use unix path to allow using files on any host platform.
|
||||
file(TO_CMAKE_PATH ${lib_file} lib_file_unix_path)
|
||||
string(APPEND file_contents "<lib file=\"${lib_file_unix_path}\" ${lib_extends} />\n")
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
@ -163,19 +170,23 @@ function(qt_internal_android_dependencies_content target file_content_out)
|
||||
string(REPLACE ".so" "_${CMAKE_ANDROID_ARCH_ABI}.so" lib ${lib})
|
||||
section(${lib} ":" lib_file lib_replacement)
|
||||
if (lib_replacement)
|
||||
file(TO_NATIVE_PATH ${lib_replacement} lib_replacement_native)
|
||||
set(lib_replacement "replaces=\"${lib_replacement_native}\"")
|
||||
# Use unix path to allow using files on any host platform.
|
||||
file(TO_CMAKE_PATH ${lib_replacement} lib_replacement_unix_path)
|
||||
set(lib_replacement "replaces=\"${lib_replacement_unix_path}\"")
|
||||
endif()
|
||||
file(TO_NATIVE_PATH ${lib_file} lib_file_native)
|
||||
string(APPEND file_contents "<lib file=\"${lib_file_native}\" ${lib_replacement} />\n")
|
||||
# Use unix path to allow using files on any host platform.
|
||||
file(TO_CMAKE_PATH ${lib_file} lib_file_unix_path)
|
||||
string(APPEND file_contents
|
||||
"<lib file=\"${lib_file_unix_path}\" ${lib_replacement} />\n")
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
# Bundled files
|
||||
if(arg_BUNDLED_FILES)
|
||||
foreach(bundled_file IN LISTS arg_BUNDLED_FILES)
|
||||
file(TO_NATIVE_PATH ${bundled_file} file_native)
|
||||
string(APPEND file_contents "<bundled file=\"${file_native}\" />\n")
|
||||
# Use unix path to allow using files on any host platform.
|
||||
file(TO_CMAKE_PATH ${bundled_file} file_unix_path)
|
||||
string(APPEND file_contents "<bundled file=\"${file_unix_path}\" />\n")
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
@ -241,7 +252,7 @@ function(qt_internal_android_dependencies target)
|
||||
# Module plugins
|
||||
if(module_plugin_types)
|
||||
foreach(plugin IN LISTS module_plugin_types)
|
||||
string(APPEND file_contents "<bundled file=\"plugins/${plugin}\" />\n")
|
||||
string(APPEND file_contents "<bundled file=\"${INSTALL_PLUGINSDIR}/${plugin}\" />\n")
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
|
@ -1,12 +1,20 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# This function creates a CMake target for a Qt internal app.
|
||||
# Such projects had a load(qt_app) command.
|
||||
function(qt_internal_add_app target)
|
||||
qt_parse_all_arguments(arg
|
||||
"qt_internal_add_app"
|
||||
"NO_INSTALL;INSTALL_VERSIONED_LINK"
|
||||
cmake_parse_arguments(PARSE_ARGV 1 arg
|
||||
"NO_INSTALL;INSTALL_VERSIONED_LINK;EXCEPTIONS;NO_UNITY_BUILD"
|
||||
"${__default_target_info_args};INSTALL_DIR"
|
||||
"${__default_private_args}"
|
||||
${ARGN})
|
||||
"${__default_private_args};PUBLIC_LIBRARIES"
|
||||
)
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
set(exceptions "")
|
||||
if(arg_EXCEPTIONS)
|
||||
set(exceptions EXCEPTIONS)
|
||||
endif()
|
||||
|
||||
if(DEFINED arg_INSTALL_DIR)
|
||||
set(forward_install_dir INSTALL_DIRECTORY ${arg_INSTALL_DIR})
|
||||
@ -21,29 +29,53 @@ function(qt_internal_add_app target)
|
||||
set(no_install NO_INSTALL)
|
||||
endif()
|
||||
|
||||
if(arg_PUBLIC_LIBRARIES)
|
||||
message(WARNING
|
||||
"qt_internal_add_app's PUBLIC_LIBRARIES option is deprecated, and will be removed in "
|
||||
"a future Qt version. Use the LIBRARIES option instead.")
|
||||
endif()
|
||||
|
||||
qt_internal_library_deprecation_level(deprecation_define)
|
||||
|
||||
if(arg_NO_UNITY_BUILD)
|
||||
set(arg_NO_UNITY_BUILD "NO_UNITY_BUILD")
|
||||
else()
|
||||
set(arg_NO_UNITY_BUILD "")
|
||||
endif()
|
||||
|
||||
qt_internal_add_executable("${target}"
|
||||
QT_APP
|
||||
DELAY_RC
|
||||
DELAY_TARGET_INFO
|
||||
OUTPUT_DIRECTORY "${output_directory}"
|
||||
${exceptions}
|
||||
${no_install}
|
||||
${arg_NO_UNITY_BUILD}
|
||||
${forward_install_dir}
|
||||
SOURCES ${arg_SOURCES}
|
||||
NO_PCH_SOURCES ${arg_NO_PCH_SOURCES}
|
||||
NO_UNITY_BUILD_SOURCES ${arg_NO_UNITY_BUILD_SOURCES}
|
||||
INCLUDE_DIRECTORIES
|
||||
${arg_INCLUDE_DIRECTORIES}
|
||||
DEFINES
|
||||
${arg_DEFINES}
|
||||
LIBRARIES ${arg_LIBRARIES} Qt::PlatformAppInternal
|
||||
${deprecation_define}
|
||||
LIBRARIES
|
||||
${arg_LIBRARIES}
|
||||
${arg_PUBLIC_LIBRARIES}
|
||||
Qt::PlatformAppInternal
|
||||
COMPILE_OPTIONS ${arg_COMPILE_OPTIONS}
|
||||
LINK_OPTIONS ${arg_LINK_OPTIONS}
|
||||
MOC_OPTIONS ${arg_MOC_OPTIONS}
|
||||
ENABLE_AUTOGEN_TOOLS ${arg_ENABLE_AUTOGEN_TOOLS}
|
||||
DISABLE_AUTOGEN_TOOLS ${arg_DISABLE_AUTOGEN_TOOLS}
|
||||
TARGET_VERSION "${arg_TARGET_VERSION}"
|
||||
TARGET_PRODUCT "${arg_TARGET_PRODUCT}"
|
||||
TARGET_DESCRIPTION "${arg_TARGET_DESCRIPTION}"
|
||||
TARGET_COMPANY "${arg_TARGET_COMPANY}"
|
||||
TARGET_COPYRIGHT "${arg_TARGET_COPYRIGHT}"
|
||||
TARGET_VERSION ${arg_TARGET_VERSION}
|
||||
TARGET_PRODUCT ${arg_TARGET_PRODUCT}
|
||||
TARGET_DESCRIPTION ${arg_TARGET_DESCRIPTION}
|
||||
TARGET_COMPANY ${arg_TARGET_COMPANY}
|
||||
TARGET_COPYRIGHT ${arg_TARGET_COPYRIGHT}
|
||||
# If you are putting anything after these, make sure that
|
||||
# qt_set_target_info_properties knows how to process them
|
||||
)
|
||||
qt_internal_add_target_aliases("${target}")
|
||||
_qt_internal_apply_strict_cpp("${target}")
|
||||
@ -62,7 +94,8 @@ function(qt_internal_add_app target)
|
||||
|
||||
# Install versioned link if requested.
|
||||
if(NOT arg_NO_INSTALL AND arg_INSTALL_VERSIONED_LINK)
|
||||
qt_internal_install_versioned_link("${arg_INSTALL_DIR}" ${target})
|
||||
qt_internal_install_versioned_link(WORKING_DIRECTORY "${arg_INSTALL_DIR}"
|
||||
TARGETS ${target})
|
||||
endif()
|
||||
|
||||
qt_add_list_file_finalizer(qt_internal_finalize_app ${target})
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#
|
||||
# Collection of auto detection routines to improve the user experience when
|
||||
# building Qt from source.
|
||||
@ -5,6 +8,9 @@
|
||||
# Make sure to not run detection when building standalone tests, because the detection was already
|
||||
# done when initially configuring qtbase.
|
||||
|
||||
# This needs to be here because QtAutoDetect loads before any other modules
|
||||
option(QT_USE_VCPKG "Enable the use of vcpkg" ON)
|
||||
|
||||
function(qt_internal_ensure_static_qt_config)
|
||||
if(NOT DEFINED BUILD_SHARED_LIBS)
|
||||
set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build Qt statically or dynamically" FORCE)
|
||||
@ -18,7 +24,7 @@ endfunction()
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/QtPublicWasmToolchainHelpers.cmake")
|
||||
function(qt_auto_detect_wasm)
|
||||
if("${QT_QMAKE_TARGET_MKSPEC}" STREQUAL "wasm-emscripten")
|
||||
if("${QT_QMAKE_TARGET_MKSPEC}" STREQUAL "wasm-emscripten" OR "${QT_QMAKE_TARGET_MKSPEC}" STREQUAL "wasm-emscripten-64")
|
||||
if (NOT DEFINED ENV{EMSDK})
|
||||
message(FATAL_ERROR
|
||||
"Can't find an Emscripten SDK! Make sure the EMSDK environment variable is "
|
||||
@ -32,6 +38,10 @@ function(qt_auto_detect_wasm)
|
||||
__qt_internal_query_emsdk_version("${EMROOT_PATH}" TRUE CMAKE_EMSDK_REGEX_VERSION)
|
||||
set(EMCC_VERSION "${CMAKE_EMSDK_REGEX_VERSION}" CACHE STRING INTERNAL FORCE)
|
||||
|
||||
if(NOT DEFINED BUILD_SHARED_LIBS)
|
||||
qt_internal_ensure_static_qt_config()
|
||||
endif()
|
||||
|
||||
# Find toolchain file
|
||||
if(NOT DEFINED CMAKE_TOOLCHAIN_FILE)
|
||||
__qt_internal_get_emscripten_cmake_toolchain_file_path_from_emsdk_env(
|
||||
@ -46,8 +56,6 @@ function(qt_auto_detect_wasm)
|
||||
__qt_internal_show_error_no_emscripten_toolchain_file_found_when_building_qt()
|
||||
endif()
|
||||
|
||||
qt_internal_ensure_static_qt_config()
|
||||
|
||||
__qt_internal_get_emcc_recommended_version(recommended_version)
|
||||
set(QT_EMCC_RECOMMENDED_VERSION "${recommended_version}" CACHE STRING INTERNAL FORCE)
|
||||
|
||||
@ -156,7 +164,7 @@ function(qt_auto_detect_android)
|
||||
endfunction()
|
||||
|
||||
function(qt_auto_detect_vcpkg)
|
||||
if(DEFINED ENV{VCPKG_ROOT})
|
||||
if(QT_USE_VCPKG AND DEFINED ENV{VCPKG_ROOT})
|
||||
set(vcpkg_toolchain_file "$ENV{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake")
|
||||
get_filename_component(vcpkg_toolchain_file "${vcpkg_toolchain_file}" ABSOLUTE)
|
||||
|
||||
@ -169,8 +177,8 @@ function(qt_auto_detect_vcpkg)
|
||||
endif()
|
||||
set(CMAKE_TOOLCHAIN_FILE "${vcpkg_toolchain_file}" CACHE STRING "" FORCE)
|
||||
message(STATUS "Using vcpkg from $ENV{VCPKG_ROOT}")
|
||||
if(DEFINED ENV{VCPKG_DEFAULT_TRIPLET} AND NOT DEFINED VCPKG_TARGET_TRIPLET)
|
||||
set(VCPKG_TARGET_TRIPLET "$ENV{VCPKG_DEFAULT_TRIPLET}" CACHE STRING "")
|
||||
if(DEFINED ENV{QT_VCPKG_TARGET_TRIPLET} AND NOT DEFINED VCPKG_TARGET_TRIPLET)
|
||||
set(VCPKG_TARGET_TRIPLET "$ENV{QT_VCPKG_TARGET_TRIPLET}" CACHE STRING "")
|
||||
message(STATUS "Using vcpkg triplet ${VCPKG_TARGET_TRIPLET}")
|
||||
endif()
|
||||
unset(vcpkg_toolchain_file)
|
||||
@ -182,9 +190,7 @@ function(qt_auto_detect_vcpkg)
|
||||
endfunction()
|
||||
|
||||
function(qt_auto_detect_ios)
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL iOS
|
||||
OR CMAKE_SYSTEM_NAME STREQUAL watchOS
|
||||
OR CMAKE_SYSTEM_NAME STREQUAL tvOS)
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL iOS)
|
||||
message(STATUS "Using internal CMake ${CMAKE_SYSTEM_NAME} toolchain file.")
|
||||
|
||||
# The QT_UIKIT_SDK check simulates the input.sdk condition for simulator_and_device in
|
||||
@ -201,9 +207,8 @@ function(qt_auto_detect_ios)
|
||||
message(STATUS "simulator_and_device set to: \"${simulator_and_device}\".")
|
||||
|
||||
# Choose relevant architectures.
|
||||
# Using a non xcode generator requires explicit setting of the
|
||||
# Using a non Xcode generator requires explicit setting of the
|
||||
# architectures, otherwise compilation fails with unknown defines.
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL iOS)
|
||||
if(simulator_and_device)
|
||||
set(osx_architectures "arm64;x86_64")
|
||||
elseif(QT_UIKIT_SDK STREQUAL "iphoneos")
|
||||
@ -212,46 +217,13 @@ function(qt_auto_detect_ios)
|
||||
set(osx_architectures "x86_64")
|
||||
else()
|
||||
if(NOT DEFINED QT_UIKIT_SDK)
|
||||
message(FATAL_ERROR "Please proviude a value for -DQT_UIKIT_SDK."
|
||||
message(FATAL_ERROR "Please provide a value for -DQT_UIKIT_SDK."
|
||||
" Possible values: iphoneos, iphonesimulator.")
|
||||
else()
|
||||
message(FATAL_ERROR
|
||||
"Unknown SDK argument given to QT_UIKIT_SDK: ${QT_UIKIT_SDK}.")
|
||||
endif()
|
||||
endif()
|
||||
elseif(CMAKE_SYSTEM_NAME STREQUAL tvOS)
|
||||
if(simulator_and_device)
|
||||
set(osx_architectures "arm64;x86_64")
|
||||
elseif(QT_UIKIT_SDK STREQUAL "appletvos")
|
||||
set(osx_architectures "arm64")
|
||||
elseif(QT_UIKIT_SDK STREQUAL "appletvsimulator")
|
||||
set(osx_architectures "x86_64")
|
||||
else()
|
||||
if(NOT DEFINED QT_UIKIT_SDK)
|
||||
message(FATAL_ERROR "Please proviude a value for -DQT_UIKIT_SDK."
|
||||
" Possible values: appletvos, appletvsimulator.")
|
||||
else()
|
||||
message(FATAL_ERROR
|
||||
"Unknown SDK argument given to QT_UIKIT_SDK: ${QT_UIKIT_SDK}.")
|
||||
endif()
|
||||
endif()
|
||||
elseif(CMAKE_SYSTEM_NAME STREQUAL watchOS)
|
||||
if(simulator_and_device)
|
||||
set(osx_architectures "armv7k;i386")
|
||||
elseif(QT_UIKIT_SDK STREQUAL "watchos")
|
||||
set(osx_architectures "armv7k")
|
||||
elseif(QT_UIKIT_SDK STREQUAL "watchsimulator")
|
||||
set(osx_architectures "i386")
|
||||
else()
|
||||
if(NOT DEFINED QT_UIKIT_SDK)
|
||||
message(FATAL_ERROR "Please proviude a value for -DQT_UIKIT_SDK."
|
||||
" Possible values: watchos, watchsimulator.")
|
||||
else()
|
||||
message(FATAL_ERROR
|
||||
"Unknown SDK argument given to QT_UIKIT_SDK: ${QT_UIKIT_SDK}.")
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# For non simulator_and_device builds, we need to explicitly set the SYSROOT aka the sdk
|
||||
# value.
|
||||
@ -260,7 +232,9 @@ function(qt_auto_detect_ios)
|
||||
endif()
|
||||
set(CMAKE_OSX_ARCHITECTURES "${osx_architectures}" CACHE STRING "")
|
||||
|
||||
if(NOT DEFINED BUILD_SHARED_LIBS)
|
||||
qt_internal_ensure_static_qt_config()
|
||||
endif()
|
||||
|
||||
# Disable qt rpaths for iOS, just like mkspecs/common/uikit.conf does, due to those
|
||||
# bundles not being able to use paths outside the app bundle. Not sure this is strictly
|
||||
@ -270,7 +244,15 @@ function(qt_auto_detect_ios)
|
||||
endfunction()
|
||||
|
||||
function(qt_auto_detect_cmake_config)
|
||||
if(CMAKE_CONFIGURATION_TYPES)
|
||||
# If CMAKE_CONFIGURATION_TYPES are not set for the multi-config generator use Release and
|
||||
# Debug configurations by default, instead of those are proposed by the CMake internal logic.
|
||||
get_property(is_multi GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
|
||||
if(is_multi)
|
||||
if(NOT CMAKE_CONFIGURATION_TYPES)
|
||||
set(CMAKE_CONFIGURATION_TYPES Release Debug)
|
||||
set(CMAKE_CONFIGURATION_TYPES "${CMAKE_CONFIGURATION_TYPES}" PARENT_SCOPE)
|
||||
endif()
|
||||
|
||||
# Allow users to specify this option.
|
||||
if(NOT QT_MULTI_CONFIG_FIRST_CONFIG)
|
||||
list(GET CMAKE_CONFIGURATION_TYPES 0 first_config_type)
|
||||
@ -294,7 +276,7 @@ function(qt_auto_detect_cmake_config)
|
||||
endfunction()
|
||||
|
||||
function(qt_auto_detect_cyclic_toolchain)
|
||||
if(CMAKE_TOOLCHAIN_FILE AND CMAKE_TOOLCHAIN_FILE MATCHES "/qt.toolchain.cmake$")
|
||||
if(CMAKE_TOOLCHAIN_FILE AND CMAKE_TOOLCHAIN_FILE MATCHES "/qt\\.toolchain\\.cmake$")
|
||||
message(FATAL_ERROR
|
||||
"Woah there! You can't use the Qt generated qt.toolchain.cmake file to configure "
|
||||
"qtbase, because that will create a toolchain file that includes itself!\n"
|
||||
@ -305,12 +287,8 @@ endfunction()
|
||||
|
||||
function(qt_internal_get_darwin_sdk_version out_var)
|
||||
if(APPLE)
|
||||
if(IOS)
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL iOS)
|
||||
set(sdk_name "iphoneos")
|
||||
elseif(TVOS)
|
||||
set(sdk_name "appletvos")
|
||||
elseif(WATCHOS)
|
||||
set(sdk_name "watchos")
|
||||
else()
|
||||
# Default to macOS
|
||||
set(sdk_name "macosx")
|
||||
@ -349,13 +327,9 @@ function(qt_auto_detect_darwin)
|
||||
if(NOT CMAKE_OSX_DEPLOYMENT_TARGET)
|
||||
if(NOT CMAKE_SYSTEM_NAME)
|
||||
# macOS
|
||||
set(version "10.14")
|
||||
set(version "11.0")
|
||||
elseif(CMAKE_SYSTEM_NAME STREQUAL iOS)
|
||||
set(version "13.0")
|
||||
elseif(CMAKE_SYSTEM_NAME STREQUAL watchOS)
|
||||
set(version "6.0")
|
||||
elseif(CMAKE_SYSTEM_NAME STREQUAL tvOS)
|
||||
set(version "13.0")
|
||||
set(version "14.0")
|
||||
endif()
|
||||
if(version)
|
||||
set(CMAKE_OSX_DEPLOYMENT_TARGET "${version}" CACHE STRING "${description}")
|
||||
@ -368,9 +342,8 @@ function(qt_auto_detect_darwin)
|
||||
qt_internal_get_xcode_version(xcode_version)
|
||||
set(QT_MAC_XCODE_VERSION "${xcode_version}" CACHE STRING "Xcode version.")
|
||||
|
||||
set(device_names "iOS" "watchOS" "tvOS")
|
||||
list(LENGTH CMAKE_OSX_ARCHITECTURES arch_count)
|
||||
if(NOT CMAKE_SYSTEM_NAME IN_LIST device_names AND arch_count GREATER 0)
|
||||
if(NOT CMAKE_SYSTEM_NAME STREQUAL iOS AND arch_count GREATER 0)
|
||||
foreach(arch ${CMAKE_OSX_ARCHITECTURES})
|
||||
if(arch STREQUAL "arm64e")
|
||||
message(WARNING "Applications built against an arm64e Qt architecture will "
|
||||
@ -383,8 +356,7 @@ function(qt_auto_detect_darwin)
|
||||
endfunction()
|
||||
|
||||
function(qt_auto_detect_macos_universal)
|
||||
set(device_names "iOS" "watchOS" "tvOS")
|
||||
if(APPLE AND NOT CMAKE_SYSTEM_NAME IN_LIST device_names)
|
||||
if(APPLE AND NOT CMAKE_SYSTEM_NAME STREQUAL iOS)
|
||||
list(LENGTH CMAKE_OSX_ARCHITECTURES arch_count)
|
||||
|
||||
set(is_universal "OFF")
|
||||
@ -517,6 +489,12 @@ function(qt_auto_detect_integrity)
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
# Save the build type before project() might set one.
|
||||
# This allows us to determine if the user has set an explicit build type that we should use.
|
||||
function(qt_auto_detect_cmake_build_type)
|
||||
set(__qt_auto_detect_cmake_build_type_before_project_call "${CMAKE_BUILD_TYPE}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
# Let CMake load our custom platform modules.
|
||||
# CMake-provided platform modules take precedence.
|
||||
if(NOT QT_AVOID_CUSTOM_PLATFORM_MODULES)
|
||||
@ -536,3 +514,4 @@ qt_auto_detect_wasm()
|
||||
qt_auto_detect_win32_arm()
|
||||
qt_auto_detect_linux_x86()
|
||||
qt_auto_detect_integrity()
|
||||
qt_auto_detect_cmake_build_type()
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# Initial autogen setup for a target to specify certain CMake properties which are common
|
||||
# to all autogen tools. Also enable AUTOMOC by default.
|
||||
function(qt_autogen_tools_initial_setup target)
|
||||
@ -58,7 +61,8 @@ endfunction()
|
||||
|
||||
# This function adds or removes additional AUTOGEN tools to a target: AUTOMOC/UIC/RCC
|
||||
function(qt_autogen_tools target)
|
||||
qt_parse_all_arguments(arg "qt_autogen_tools" "" "" "${__default_private_args}" ${ARGN})
|
||||
cmake_parse_arguments(PARSE_ARGV 1 arg "" "" "${__default_private_args}")
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
if(arg_ENABLE_AUTOGEN_TOOLS)
|
||||
foreach(tool ${arg_ENABLE_AUTOGEN_TOOLS})
|
||||
@ -91,7 +95,7 @@ function(qt_manual_moc result)
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_BINARY_DIR}" outfile)
|
||||
list(APPEND moc_files "${outfile}")
|
||||
|
||||
set(moc_parameters_file "${outfile}_parameters$<$<BOOL:$<CONFIGURATION>>:_$<CONFIGURATION>>")
|
||||
set(moc_parameters_file "${outfile}_parameters$<$<BOOL:$<CONFIG>>:_$<CONFIG>>")
|
||||
set(moc_parameters ${arg_FLAGS} -o "${outfile}" "${infile}")
|
||||
|
||||
foreach(dir IN ITEMS ${arg_INCLUDE_DIRECTORIES})
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
## Test the cmake build system:
|
||||
option(BUILD_CMAKE_TESTING "Build tests for the Qt build system" OFF)
|
||||
mark_as_advanced(BUILD_CMAKE_TESTING)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
include(CheckCXXSourceCompiles)
|
||||
|
||||
function(qt_run_config_test_architecture)
|
||||
@ -11,8 +14,12 @@ function(qt_run_config_test_architecture)
|
||||
|
||||
list(TRANSFORM flags PREPEND " " OUTPUT_VARIABLE flags_indented)
|
||||
list(JOIN flags_indented "\n" flags_indented)
|
||||
|
||||
message(STATUS
|
||||
"Building architecture extraction project with the following CMake arguments:\n${flags_indented}")
|
||||
"Building architecture extraction project with the following CMake arguments:")
|
||||
list(POP_BACK CMAKE_MESSAGE_CONTEXT _context)
|
||||
message(NOTICE ${flags_indented})
|
||||
list(APPEND CMAKE_MESSAGE_CONTEXT ${_context})
|
||||
|
||||
try_compile(
|
||||
_arch_result
|
||||
@ -108,41 +115,38 @@ endfunction()
|
||||
|
||||
|
||||
function(qt_run_linker_version_script_support)
|
||||
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/version_flag.map" "VERS_1 { global: sym; };
|
||||
VERS_2 { global: sym; }
|
||||
VERS_1;
|
||||
")
|
||||
if(DEFINED CMAKE_REQUIRED_FLAGS)
|
||||
set(CMAKE_REQUIRED_FLAGS_SAVE ${CMAKE_REQUIRED_FLAGS})
|
||||
else()
|
||||
set(CMAKE_REQUIRED_FLAGS "")
|
||||
endif()
|
||||
set(CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS} "-Wl,--version-script=\"${CMAKE_CURRENT_BINARY_DIR}/version_flag.map\"")
|
||||
|
||||
# Pass the linker that the main project uses to the version script compile test.
|
||||
qt_internal_get_active_linker_flags(linker_flags)
|
||||
if(linker_flags)
|
||||
set(CMAKE_REQUIRED_LINK_OPTIONS ${linker_flags})
|
||||
endif()
|
||||
|
||||
check_cxx_source_compiles("int main(void){return 0;}" HAVE_LD_VERSION_SCRIPT)
|
||||
if(DEFINED CMAKE_REQUIRED_FLAGS_SAVE)
|
||||
set(CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS_SAVE})
|
||||
endif()
|
||||
file(REMOVE "${CMAKE_CURRENT_BINARY_DIR}/conftest.map")
|
||||
|
||||
# For some reason the linker command line written by the XCode generator, which is
|
||||
# subsequently executed by xcodebuild, ignores the linker flag, and thus the test
|
||||
# seemingly succeeds. Explicitly disable the version script test on darwin platforms.
|
||||
if(APPLE)
|
||||
set(HAVE_LD_VERSION_SCRIPT OFF)
|
||||
endif()
|
||||
# Also makes no sense with MSVC-style command-line
|
||||
if(MSVC)
|
||||
if(NOT APPLE AND NOT MSVC)
|
||||
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/version_flag.map" [=[
|
||||
VERS_1 { global: sym1; };
|
||||
VERS_2 { global: sym2; } VERS_1;
|
||||
]=])
|
||||
set(CMAKE_REQUIRED_LINK_OPTIONS "")
|
||||
list(APPEND CMAKE_REQUIRED_LINK_OPTIONS
|
||||
"-Wl,--version-script=${CMAKE_CURRENT_BINARY_DIR}/version_flag.map")
|
||||
# Pass the linker that the main project uses to the version script compile test.
|
||||
qt_internal_get_active_linker_flags(linker_flags)
|
||||
if(linker_flags)
|
||||
list(APPEND CMAKE_REQUIRED_LINK_OPTIONS ${linker_flags})
|
||||
endif()
|
||||
check_cxx_source_compiles([=[
|
||||
int sym1;
|
||||
int sym2;
|
||||
int main(void) { return 0; }
|
||||
]=] HAVE_LD_VERSION_SCRIPT)
|
||||
file(REMOVE "${CMAKE_CURRENT_BINARY_DIR}/version_flag.map")
|
||||
else()
|
||||
set(HAVE_LD_VERSION_SCRIPT OFF)
|
||||
endif()
|
||||
|
||||
set(TEST_ld_version_script "${HAVE_LD_VERSION_SCRIPT}" CACHE INTERNAL "linker version script support")
|
||||
set(TEST_ld_version_script "${HAVE_LD_VERSION_SCRIPT}"
|
||||
CACHE INTERNAL "linker version script support")
|
||||
list(APPEND QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT TEST_ld_version_script)
|
||||
set(QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT ${QT_BASE_CONFIGURE_TESTS_VARS_TO_EXPORT}
|
||||
CACHE INTERNAL "Test variables that should be exported")
|
||||
endfunction()
|
||||
|
||||
function(qt_internal_ensure_latest_win_nt_api)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
set(__GlobalConfig_path_suffix "${INSTALL_CMAKE_NAMESPACE}")
|
||||
qt_path_join(__GlobalConfig_build_dir ${QT_CONFIG_BUILD_DIR} ${__GlobalConfig_path_suffix})
|
||||
qt_path_join(__GlobalConfig_install_dir ${QT_CONFIG_INSTALL_DIR} ${__GlobalConfig_path_suffix})
|
||||
@ -87,17 +90,19 @@ include("${CMAKE_CURRENT_SOURCE_DIR}/configure.cmake")
|
||||
|
||||
qt_internal_get_first_osx_arch(__qt_osx_first_arch)
|
||||
set(__qt_apple_silicon_arches "arm64;arm64e")
|
||||
if((UIKIT AND NOT QT_UIKIT_SDK)
|
||||
OR (MACOS AND QT_IS_MACOS_UNIVERSAL
|
||||
AND __qt_osx_first_arch IN_LIST __qt_apple_silicon_arches))
|
||||
set(QT_FORCE_FEATURE_sse2 ON CACHE INTERNAL "Force enable sse2 due to platform requirements.")
|
||||
if(MACOS AND QT_IS_MACOS_UNIVERSAL
|
||||
AND __qt_osx_first_arch IN_LIST __qt_apple_silicon_arches)
|
||||
# The test in configure.cmake will not be run, but we know that
|
||||
# the compiler supports these intrinsics
|
||||
set(QT_FORCE_FEATURE_x86intrin ON CACHE INTERNAL "Force-enable x86 intrinsics due to platform requirements.")
|
||||
set(__QtFeature_custom_enabled_cache_variables
|
||||
TEST_subarch_sse2
|
||||
FEATURE_sse2
|
||||
QT_FEATURE_sse2)
|
||||
TEST_x86intrin
|
||||
FEATURE_x86intrin
|
||||
QT_FEATURE_x86intrin)
|
||||
endif()
|
||||
|
||||
if(MACOS AND QT_IS_MACOS_UNIVERSAL AND __qt_osx_first_arch STREQUAL "x86_64")
|
||||
if(MACOS AND QT_IS_MACOS_UNIVERSAL AND
|
||||
(__qt_osx_first_arch STREQUAL "x86_64" OR __qt_osx_first_arch STREQUAL "x86_64h"))
|
||||
set(QT_FORCE_FEATURE_neon ON CACHE INTERNAL "Force enable neon due to platform requirements.")
|
||||
set(__QtFeature_custom_enabled_cache_variables
|
||||
TEST_subarch_neon
|
||||
@ -211,6 +216,7 @@ qt_copy_or_install(FILES
|
||||
cmake/QtAndroidHelpers.cmake
|
||||
cmake/QtAppHelpers.cmake
|
||||
cmake/QtAutogenHelpers.cmake
|
||||
cmake/QtBaseTopLevelHelpers.cmake
|
||||
cmake/QtBuild.cmake
|
||||
cmake/QtBuildInformation.cmake
|
||||
cmake/QtCMakeHelpers.cmake
|
||||
@ -219,6 +225,7 @@ qt_copy_or_install(FILES
|
||||
cmake/QtCompilerFlags.cmake
|
||||
cmake/QtCompilerOptimization.cmake
|
||||
cmake/QtConfigDependencies.cmake.in
|
||||
cmake/QtConfigureTimeExecutableCMakeLists.txt.in
|
||||
cmake/QtDeferredDependenciesHelpers.cmake
|
||||
cmake/QtDbusHelpers.cmake
|
||||
cmake/QtDocsHelpers.cmake
|
||||
@ -234,6 +241,7 @@ qt_copy_or_install(FILES
|
||||
cmake/QtGenerateExtPri.cmake
|
||||
cmake/QtGenerateLibHelpers.cmake
|
||||
cmake/QtGenerateLibPri.cmake
|
||||
cmake/QtGenerateVersionScript.cmake
|
||||
cmake/QtGlobalStateHelpers.cmake
|
||||
cmake/QtHeadersClean.cmake
|
||||
cmake/QtInstallHelpers.cmake
|
||||
@ -241,6 +249,7 @@ qt_copy_or_install(FILES
|
||||
cmake/QtLalrHelpers.cmake
|
||||
cmake/QtModuleConfig.cmake.in
|
||||
cmake/QtModuleDependencies.cmake.in
|
||||
cmake/QtModuleHeadersCheck.cmake
|
||||
cmake/QtModuleHelpers.cmake
|
||||
cmake/QtModuleToolsConfig.cmake.in
|
||||
cmake/QtModuleToolsDependencies.cmake.in
|
||||
@ -256,6 +265,7 @@ qt_copy_or_install(FILES
|
||||
cmake/QtPostProcess.cmake
|
||||
cmake/QtPostProcessHelpers.cmake
|
||||
cmake/QtPrecompiledHeadersHelpers.cmake
|
||||
cmake/QtUnityBuildHelpers.cmake
|
||||
cmake/QtPriHelpers.cmake
|
||||
cmake/QtPrlHelpers.cmake
|
||||
cmake/QtPlatformTargetHelpers.cmake
|
||||
@ -281,6 +291,7 @@ qt_copy_or_install(FILES
|
||||
cmake/QtWriteArgsFile.cmake
|
||||
cmake/modulecppexports.h.in
|
||||
cmake/modulecppexports_p.h.in
|
||||
cmake/qbatchedtestrunner.in.cpp
|
||||
DESTINATION "${__GlobalConfig_install_dir}"
|
||||
)
|
||||
|
||||
@ -322,6 +333,7 @@ set(__public_cmake_helpers
|
||||
cmake/QtCopyFileIfDifferent.cmake
|
||||
cmake/QtFeature.cmake
|
||||
cmake/QtFeatureCommon.cmake
|
||||
cmake/QtInitProject.cmake
|
||||
cmake/QtPublicAppleHelpers.cmake
|
||||
cmake/QtPublicCMakeHelpers.cmake
|
||||
cmake/QtPublicCMakeVersionHelpers.cmake
|
||||
@ -349,7 +361,6 @@ if(QT_WILL_INSTALL)
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
# TODO: Check whether this is the right place to install these
|
||||
qt_copy_or_install(DIRECTORY "cmake/3rdparty" DESTINATION "${__GlobalConfig_install_dir}")
|
||||
|
||||
# In prefix builds we also need to copy the files into the build config directory, so that the
|
||||
@ -365,6 +376,10 @@ qt_copy_or_install(DIRECTORY cmake/
|
||||
FILES_MATCHING PATTERN "Find*.cmake"
|
||||
PATTERN "tests" EXCLUDE
|
||||
PATTERN "3rdparty" EXCLUDE
|
||||
PATTERN "macos" EXCLUDE
|
||||
PATTERN "ios" EXCLUDE
|
||||
PATTERN "platforms" EXCLUDE
|
||||
PATTERN "QtBuildInternals" EXCLUDE
|
||||
)
|
||||
|
||||
# In prefix builds we also need to copy the files into the build config directory, so that the
|
||||
@ -375,20 +390,37 @@ if(QT_WILL_INSTALL)
|
||||
FILES_MATCHING PATTERN "Find*.cmake"
|
||||
PATTERN "tests" EXCLUDE
|
||||
PATTERN "3rdparty" EXCLUDE
|
||||
PATTERN "macos" EXCLUDE
|
||||
PATTERN "ios" EXCLUDE
|
||||
PATTERN "platforms" EXCLUDE
|
||||
PATTERN "QtBuildInternals" EXCLUDE
|
||||
)
|
||||
endif()
|
||||
|
||||
if(MACOS)
|
||||
qt_copy_or_install(FILES
|
||||
cmake/macos/MacOSXBundleInfo.plist.in
|
||||
DESTINATION "${__GlobalConfig_install_dir}/macos"
|
||||
if(APPLE)
|
||||
if(MACOS)
|
||||
set(platform_shortname "macos")
|
||||
elseif(IOS)
|
||||
set(platform_shortname "ios")
|
||||
endif()
|
||||
|
||||
qt_copy_or_install(FILES "cmake/${platform_shortname}/Info.plist.app.in"
|
||||
DESTINATION "${__GlobalConfig_install_dir}/${platform_shortname}"
|
||||
)
|
||||
elseif(IOS)
|
||||
qt_copy_or_install(FILES
|
||||
cmake/ios/Info.plist.app.in
|
||||
cmake/ios/LaunchScreen.storyboard
|
||||
# For examples built as part of prefix build before install
|
||||
file(COPY "cmake/${platform_shortname}/Info.plist.app.in"
|
||||
DESTINATION "${__GlobalConfig_build_dir}/${platform_shortname}"
|
||||
)
|
||||
|
||||
if(IOS)
|
||||
qt_copy_or_install(FILES "cmake/ios/LaunchScreen.storyboard"
|
||||
DESTINATION "${__GlobalConfig_install_dir}/ios"
|
||||
)
|
||||
# For examples built as part of prefix build before install
|
||||
file(COPY "cmake/ios/LaunchScreen.storyboard"
|
||||
DESTINATION "${__GlobalConfig_build_dir}/ios"
|
||||
)
|
||||
endif()
|
||||
elseif(WASM)
|
||||
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/util/wasm/wasmtestrunner/qt-wasmtestrunner.py"
|
||||
"${QT_BUILD_DIR}/${INSTALL_LIBEXECDIR}/qt-wasmtestrunner.py" @ONLY)
|
||||
@ -403,3 +435,5 @@ qt_copy_or_install(FILES coin/instructions/qmake/ensure_pro_file.cmake
|
||||
DESTINATION "${__qt_libexec_install_dir}")
|
||||
qt_copy_or_install(PROGRAMS "util/testrunner/qt-testrunner.py"
|
||||
DESTINATION "${__qt_libexec_install_dir}")
|
||||
qt_copy_or_install(PROGRAMS "util/testrunner/sanitizer-testrunner.py"
|
||||
DESTINATION "${__qt_libexec_install_dir}")
|
||||
|
81
cmake/QtBaseTopLevelHelpers.cmake
Normal file
81
cmake/QtBaseTopLevelHelpers.cmake
Normal file
@ -0,0 +1,81 @@
|
||||
# Copyright (C) 2023 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# Depends on __qt6_qtbase_src_path being set in the top-level dir.
|
||||
macro(qt_internal_top_level_setup_autodetect)
|
||||
# Run platform auto-detection /before/ the first project() call and thus
|
||||
# before the toolchain file is loaded.
|
||||
# Don't run auto-detection when doing standalone tests. In that case, the detection
|
||||
# results are taken from either QtBuildInternals or the qt.toolchain.cmake file.
|
||||
|
||||
if(NOT QT_BUILD_STANDALONE_TESTS)
|
||||
set(__qt6_auto_detect_path "${__qt6_qtbase_src_path}/cmake/QtAutoDetect.cmake")
|
||||
if(NOT EXISTS "${__qt6_auto_detect_path}")
|
||||
message(FATAL_ERROR "Required file does not exist: '${__qt6_auto_detect_path}'")
|
||||
endif()
|
||||
include("${__qt6_auto_detect_path}")
|
||||
endif()
|
||||
endmacro()
|
||||
|
||||
macro(qt_internal_top_level_setup_after_project)
|
||||
qt_internal_top_level_setup_testing()
|
||||
endmacro()
|
||||
|
||||
macro(qt_internal_top_level_setup_testing)
|
||||
# Required so we can call ctest from the root build directory
|
||||
enable_testing()
|
||||
endmacro()
|
||||
|
||||
# Depends on __qt6_qtbase_src_path being set in the top-level dir.
|
||||
macro(qt_internal_top_level_setup_cmake_module_path)
|
||||
if (NOT QT_BUILD_STANDALONE_TESTS)
|
||||
set(__qt6_cmake_module_path "${__qt6_qtbase_src_path}/cmake")
|
||||
if(NOT EXISTS "${__qt6_cmake_module_path}")
|
||||
message(FATAL_ERROR "Required directory does not exist: '${__qt6_cmake_module_path}'")
|
||||
endif()
|
||||
|
||||
list(APPEND CMAKE_MODULE_PATH "${__qt6_cmake_module_path}")
|
||||
|
||||
list(APPEND CMAKE_MODULE_PATH
|
||||
"${__qt6_cmake_module_path}/3rdparty/extra-cmake-modules/find-modules")
|
||||
list(APPEND CMAKE_MODULE_PATH "${__qt6_cmake_module_path}/3rdparty/kwin")
|
||||
endif()
|
||||
endmacro()
|
||||
|
||||
macro(qt_internal_top_level_before_build_submodules)
|
||||
qt_internal_top_level_setup_no_create_targets()
|
||||
endmacro()
|
||||
|
||||
macro(qt_internal_top_level_setup_no_create_targets)
|
||||
# Also make sure the CMake config files do not recreate the already-existing targets
|
||||
if (NOT QT_BUILD_STANDALONE_TESTS)
|
||||
set(QT_NO_CREATE_TARGETS TRUE)
|
||||
endif()
|
||||
endmacro()
|
||||
|
||||
macro(qt_internal_top_level_end)
|
||||
qt_internal_print_top_level_info()
|
||||
|
||||
# Depends on QtBuildInternalsConfig being included, which is the case whenver any repo is
|
||||
# configured.
|
||||
qt_internal_qt_configure_end()
|
||||
endmacro()
|
||||
|
||||
function(qt_internal_print_top_level_info)
|
||||
if(NOT QT_BUILD_STANDALONE_TESTS)
|
||||
# Display a summary of everything
|
||||
include(QtBuildInformation)
|
||||
include(QtPlatformSupport)
|
||||
qt_print_feature_summary()
|
||||
qt_print_build_instructions()
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
macro(qt_internal_top_level_after_add_subdirectory)
|
||||
if(module STREQUAL "qtbase")
|
||||
if (NOT QT_BUILD_STANDALONE_TESTS)
|
||||
list(APPEND CMAKE_PREFIX_PATH "${QtBase_BINARY_DIR}/${INSTALL_LIBDIR}/cmake")
|
||||
list(APPEND CMAKE_FIND_ROOT_PATH "${QtBase_BINARY_DIR}")
|
||||
endif()
|
||||
endif()
|
||||
endmacro()
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
include(CMakePackageConfigHelpers)
|
||||
include(QtSeparateDebugInfo)
|
||||
|
||||
@ -57,9 +60,11 @@ endif()
|
||||
# to each destination, and sets the computed install target destination arguments in OUT_VAR.
|
||||
# Defaults used for each of the destination types, and can be configured per destination type.
|
||||
function(qt_get_install_target_default_args)
|
||||
qt_parse_all_arguments(arg "qt_get_install_target_default_args"
|
||||
"" "OUT_VAR;CMAKE_CONFIG;RUNTIME;LIBRARY;ARCHIVE;INCLUDES;BUNDLE"
|
||||
"ALL_CMAKE_CONFIGS" ${ARGN})
|
||||
cmake_parse_arguments(PARSE_ARGV 0 arg
|
||||
""
|
||||
"OUT_VAR;CMAKE_CONFIG;RUNTIME;LIBRARY;ARCHIVE;INCLUDES;BUNDLE"
|
||||
"ALL_CMAKE_CONFIGS")
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
if(NOT arg_CMAKE_CONFIG)
|
||||
message(FATAL_ERROR "No value given for CMAKE_CONFIG.")
|
||||
@ -137,7 +142,7 @@ qt_configure_process_path(INSTALL_SYSCONFDIR
|
||||
qt_configure_process_path(INSTALL_EXAMPLESDIR "examples" "Examples [PREFIX/examples]")
|
||||
qt_configure_process_path(INSTALL_TESTSDIR "tests" "Tests [PREFIX/tests]")
|
||||
qt_configure_process_path(INSTALL_DESCRIPTIONSDIR
|
||||
"${INSTALL_DATADIR}/modules"
|
||||
"${INSTALL_ARCHDATADIR}/modules"
|
||||
"Module description files directory")
|
||||
|
||||
if(NOT "${CMAKE_STAGING_PREFIX}" STREQUAL "")
|
||||
@ -225,6 +230,11 @@ if(NOT QT_MKSPECS_DIR)
|
||||
set(QT_MKSPECS_DIR "${QT_MKSPECS_DIR}" CACHE INTERNAL "")
|
||||
endif()
|
||||
|
||||
# macOS versions 10.14 and less don't have the implementation of std::filesystem API.
|
||||
if(CMAKE_HOST_APPLE AND CMAKE_HOST_SYSTEM_VERSION VERSION_LESS "19.0.0")
|
||||
message(FATAL_ERROR "macOS versions less than 10.15 are not supported for building Qt.")
|
||||
endif()
|
||||
|
||||
# the default RPATH to be used when installing, but only if it's not a system directory
|
||||
list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/${INSTALL_LIBDIR}" isSystemDir)
|
||||
if("${isSystemDir}" STREQUAL "-1")
|
||||
@ -263,49 +273,32 @@ function(qt_setup_tool_path_command)
|
||||
list(APPEND command COMMAND)
|
||||
list(APPEND command set PATH=${bindir}$<SEMICOLON>%PATH%)
|
||||
set(QT_TOOL_PATH_SETUP_COMMAND "${command}" CACHE INTERNAL "internal command prefix for tool invocations" FORCE)
|
||||
# QT_TOOL_PATH_SETUP_COMMAND is deprecated. Please use _qt_internal_wrap_tool_command
|
||||
# QT_TOOL_PATH_SETUP_COMMAND is deprecated. Please use _qt_internal_get_wrap_tool_script_path
|
||||
# instead.
|
||||
endfunction()
|
||||
qt_setup_tool_path_command()
|
||||
|
||||
function(qt_internal_generate_tool_command_wrapper)
|
||||
get_property(is_called GLOBAL PROPERTY _qt_internal_generate_tool_command_wrapper_called)
|
||||
if(NOT CMAKE_HOST_WIN32 OR is_called)
|
||||
return()
|
||||
endif()
|
||||
set(bindir "${QT_BUILD_INTERNALS_RELOCATABLE_INSTALL_PREFIX}/${INSTALL_BINDIR}")
|
||||
file(TO_NATIVE_PATH "${bindir}" bindir)
|
||||
set(tool_command_wrapper_path "${QT_BUILD_DIR}/${INSTALL_LIBEXECDIR}/qt_setup_tool_path.bat")
|
||||
file(WRITE "${tool_command_wrapper_path}" "@echo off
|
||||
set PATH=${bindir};%PATH%
|
||||
%*")
|
||||
set(QT_TOOL_COMMAND_WRAPPER_PATH "${tool_command_wrapper_path}"
|
||||
CACHE INTERNAL "Path to the wrapper of the tool commands")
|
||||
set_property(GLOBAL PROPERTY _qt_internal_generate_tool_command_wrapper_called TRUE)
|
||||
endfunction()
|
||||
qt_internal_generate_tool_command_wrapper()
|
||||
|
||||
# Platform define path, etc.
|
||||
if(WIN32)
|
||||
set(QT_DEFAULT_PLATFORM_DEFINITIONS WIN32 _ENABLE_EXTENDED_ALIGNED_STORAGE)
|
||||
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||
if(QT_64BIT)
|
||||
list(APPEND QT_DEFAULT_PLATFORM_DEFINITIONS WIN64 _WIN64)
|
||||
endif()
|
||||
if(MSVC)
|
||||
if (CLANG)
|
||||
|
||||
if(CLANG)
|
||||
if(CMAKE_CXX_COMPILER_FRONTEND_VARIANT STREQUAL "MSVC" OR MSVC)
|
||||
set(QT_DEFAULT_MKSPEC win32-clang-msvc)
|
||||
elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
|
||||
elseif(CMAKE_CXX_COMPILER_FRONTEND_VARIANT STREQUAL "GNU" OR MINGW)
|
||||
set(QT_DEFAULT_MKSPEC win32-clang-g++)
|
||||
endif()
|
||||
elseif(MSVC)
|
||||
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
|
||||
set(QT_DEFAULT_MKSPEC win32-arm64-msvc)
|
||||
else()
|
||||
set(QT_DEFAULT_MKSPEC win32-msvc)
|
||||
endif()
|
||||
elseif(CLANG AND MINGW)
|
||||
set(QT_DEFAULT_MKSPEC win32-clang-g++)
|
||||
elseif(MINGW)
|
||||
set(QT_DEFAULT_MKSPEC win32-g++)
|
||||
endif()
|
||||
|
||||
if (MINGW)
|
||||
list(APPEND QT_DEFAULT_PLATFORM_DEFINITIONS MINGW_HAS_SECURE_API=1)
|
||||
endif()
|
||||
elseif(LINUX)
|
||||
@ -325,7 +318,11 @@ elseif(IOS)
|
||||
elseif(APPLE)
|
||||
set(QT_DEFAULT_MKSPEC macx-clang)
|
||||
elseif(WASM)
|
||||
if(WASM64)
|
||||
set(QT_DEFAULT_MKSPEC wasm-emscripten-64)
|
||||
else()
|
||||
set(QT_DEFAULT_MKSPEC wasm-emscripten)
|
||||
endif()
|
||||
elseif(QNX)
|
||||
# Certain POSIX defines are not set if we don't compile with -std=gnuXX
|
||||
set(QT_ENABLE_CXX_EXTENSIONS ON)
|
||||
@ -379,15 +376,23 @@ else()
|
||||
set(QT_QMAKE_HOST_MKSPEC "${QT_QMAKE_TARGET_MKSPEC}")
|
||||
endif()
|
||||
|
||||
if(NOT EXISTS "${QT_MKSPECS_DIR}/${QT_QMAKE_TARGET_MKSPEC}")
|
||||
if(NOT QT_QMAKE_TARGET_MKSPEC OR NOT EXISTS "${QT_MKSPECS_DIR}/${QT_QMAKE_TARGET_MKSPEC}")
|
||||
if(NOT QT_QMAKE_TARGET_MKSPEC)
|
||||
set(reason "Platform is not detected. Please make sure your build environment is configured"
|
||||
" properly or specify it manually using QT_QMAKE_TARGET_MKSPEC variable and one of the"
|
||||
" known platforms.")
|
||||
else()
|
||||
set(reason "Unknown platform ${QT_QMAKE_TARGET_MKSPEC}")
|
||||
endif()
|
||||
|
||||
file(GLOB known_platforms
|
||||
LIST_DIRECTORIES true
|
||||
RELATIVE "${QT_MKSPECS_DIR}"
|
||||
"${QT_MKSPECS_DIR}/*"
|
||||
)
|
||||
list(JOIN known_platforms "\n " known_platforms)
|
||||
message(FATAL_ERROR "Unknown platform ${QT_QMAKE_TARGET_MKSPEC}\n\
|
||||
Known platforms:\n ${known_platforms}")
|
||||
message(FATAL_ERROR "${reason}\n"
|
||||
"Known platforms:\n ${known_platforms}")
|
||||
endif()
|
||||
|
||||
if(NOT DEFINED QT_DEFAULT_PLATFORM_DEFINITIONS)
|
||||
@ -429,7 +434,7 @@ set(QT_TOP_LEVEL_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
# Prevent warnings about object files without any symbols. This is a common
|
||||
# thing in Qt as we tend to build files unconditionally, and then use ifdefs
|
||||
# to compile out parts that are not relevant.
|
||||
if(CMAKE_HOST_APPLE AND APPLE)
|
||||
if(CMAKE_CXX_COMPILER_ID MATCHES "AppleClang")
|
||||
foreach(lang ASM C CXX)
|
||||
# We have to tell 'ar' to not run ranlib by itself, by passing the 'S' option
|
||||
set(CMAKE_${lang}_ARCHIVE_CREATE "<CMAKE_AR> qcS <TARGET> <LINK_FLAGS> <OBJECTS>")
|
||||
@ -447,6 +452,7 @@ set(__default_private_args
|
||||
SOURCES
|
||||
LIBRARIES
|
||||
INCLUDE_DIRECTORIES
|
||||
SYSTEM_INCLUDE_DIRECTORIES
|
||||
DEFINES
|
||||
DBUS_ADAPTOR_BASENAME
|
||||
DBUS_ADAPTOR_FLAGS
|
||||
@ -461,6 +467,8 @@ set(__default_private_args
|
||||
DISABLE_AUTOGEN_TOOLS
|
||||
ENABLE_AUTOGEN_TOOLS
|
||||
PLUGIN_TYPES
|
||||
NO_PCH_SOURCES
|
||||
NO_UNITY_BUILD_SOURCES
|
||||
)
|
||||
set(__default_public_args
|
||||
PUBLIC_LIBRARIES
|
||||
@ -489,6 +497,7 @@ set(__qt_internal_add_executable_optional_args
|
||||
DELAY_RC
|
||||
DELAY_TARGET_INFO
|
||||
QT_APP
|
||||
NO_UNITY_BUILD
|
||||
)
|
||||
set(__qt_internal_add_executable_single_args
|
||||
CORE_LIBRARY
|
||||
@ -522,6 +531,7 @@ include(QtModuleHelpers)
|
||||
include(QtNoLinkTargetHelpers)
|
||||
include(QtPluginHelpers)
|
||||
include(QtPrecompiledHeadersHelpers)
|
||||
include(QtUnityBuildHelpers)
|
||||
include(QtPkgConfigHelpers)
|
||||
include(QtPriHelpers)
|
||||
include(QtPrlHelpers)
|
||||
@ -567,43 +577,6 @@ endif()
|
||||
_qt_internal_determine_if_host_info_package_needed(__qt_build_requires_host_info_package)
|
||||
_qt_internal_find_host_info_package("${__qt_build_requires_host_info_package}")
|
||||
|
||||
# TODO: This block provides support for old variables. It should be removed once
|
||||
# we remove all references to these variables in other Qt module repos.
|
||||
# Prefer to use the provided commands to retrieve the relevant things instead.
|
||||
# We won't have the queried command when we get here for qtbase (it is
|
||||
# provided by the Core module), but we will for all other repos (which
|
||||
# is all we need).
|
||||
if(COMMAND _qt_internal_get_add_plugin_keywords)
|
||||
_qt_internal_get_add_plugin_keywords(
|
||||
__qt_public_add_plugin_option_args
|
||||
__qt_public_add_plugin_single_args
|
||||
__qt_public_add_plugin_multi_args
|
||||
)
|
||||
qt_internal_get_internal_add_plugin_keywords(
|
||||
__qt_internal_add_plugin_option_args
|
||||
__qt_internal_add_plugin_single_args
|
||||
__qt_internal_add_plugin_multi_args
|
||||
)
|
||||
set(__qt_add_plugin_optional_args
|
||||
${__qt_public_add_plugin_option_args}
|
||||
${__qt_internal_add_plugin_option_args}
|
||||
)
|
||||
set(__qt_add_plugin_single_args
|
||||
${__qt_public_add_plugin_single_args}
|
||||
${__qt_internal_add_plugin_single_args}
|
||||
)
|
||||
set(__qt_add_plugin_multi_args
|
||||
${__qt_public_add_plugin_multi_args}
|
||||
${__qt_internal_add_plugin_multi_args}
|
||||
)
|
||||
unset(__qt_public_add_plugin_option_args)
|
||||
unset(__qt_public_add_plugin_single_args)
|
||||
unset(__qt_public_add_plugin_multi_args)
|
||||
unset(__qt_internal_add_plugin_option_args)
|
||||
unset(__qt_internal_add_plugin_single_args)
|
||||
unset(__qt_internal_add_plugin_multi_args)
|
||||
endif()
|
||||
|
||||
# This sets up the poor man's scope finalizer mechanism.
|
||||
# For newer CMake versions, we use cmake_language(DEFER CALL) instead.
|
||||
if(CMAKE_VERSION VERSION_LESS "3.19.0")
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
function(qt_print_feature_summary)
|
||||
if(QT_SUPERBUILD)
|
||||
qt_internal_set_message_log_level(message_log_level)
|
||||
@ -90,7 +93,13 @@ function(qt_print_build_instructions)
|
||||
"\nTo configure and build other Qt modules, you can use the following convenience script:
|
||||
${local_install_prefix}/${INSTALL_BINDIR}/${configure_module_command}")
|
||||
list(APPEND msg "\nIf reconfiguration fails for some reason, try removing 'CMakeCache.txt' \
|
||||
from the build directory \n")
|
||||
from the build directory")
|
||||
if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.24")
|
||||
list(APPEND msg "Alternatively, you can add the --fresh flag to your CMake flags.\n")
|
||||
else()
|
||||
list(APPEND msg "\n")
|
||||
endif()
|
||||
|
||||
list(JOIN msg "\n" msg)
|
||||
|
||||
if(NOT QT_INTERNAL_BUILD_INSTRUCTIONS_SHOWN)
|
||||
@ -98,6 +107,33 @@ from the build directory \n")
|
||||
endif()
|
||||
|
||||
set(QT_INTERNAL_BUILD_INSTRUCTIONS_SHOWN "TRUE" CACHE STRING "" FORCE)
|
||||
|
||||
if(QT_SUPERBUILD)
|
||||
qt_internal_save_previously_visited_packages()
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
function(qt_configure_print_summary_helper summary_reports force_show)
|
||||
# We force show the summary by temporarily (within the scope of the function) resetting the
|
||||
# current log level.
|
||||
if(force_show)
|
||||
set(CMAKE_MESSAGE_LOG_LEVEL "STATUS")
|
||||
|
||||
# Need 2 flushes to ensure no interleaved input is printed due to a mix of message(STATUS)
|
||||
# and message(NOTICE) calls.
|
||||
execute_process(COMMAND ${CMAKE_COMMAND} -E echo " ")
|
||||
|
||||
message(STATUS "Configure summary:\n${summary_reports}")
|
||||
|
||||
execute_process(COMMAND ${CMAKE_COMMAND} -E echo " ")
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
function(qt_configure_print_build_instructions_helper msg)
|
||||
# We want to ensure build instructions are always shown the first time, regardless of the
|
||||
# current log level.
|
||||
set(CMAKE_MESSAGE_LOG_LEVEL "STATUS")
|
||||
message(STATUS "${msg}")
|
||||
endfunction()
|
||||
|
||||
function(qt_configure_print_summary_helper summary_reports force_show)
|
||||
@ -127,39 +163,32 @@ function(qt_configure_print_summary)
|
||||
|
||||
# Show Qt-specific configuration summary.
|
||||
if(__qt_configure_reports)
|
||||
# We want to show the the summary file and log level messages only on first configuration
|
||||
# or when we detect a feature change, to keep most reconfiguration output as quiet as
|
||||
# possible. Currently feature change detection is not entirely reliable.
|
||||
# We want to show the configuration summary file and log level message only on
|
||||
# first configuration or when we detect a feature change, to keep most
|
||||
# reconfiguration output as quiet as possible.
|
||||
# Currently feature change detection is not entirely reliable.
|
||||
if(NOT QT_INTERNAL_SUMMARY_INSTRUCTIONS_SHOWN OR features_possibly_changed)
|
||||
message("")
|
||||
set(force_show_summary TRUE)
|
||||
message(
|
||||
"\n"
|
||||
"-- Configuration summary shown below. It has also been written to"
|
||||
" ${CMAKE_BINARY_DIR}/config.summary")
|
||||
message(
|
||||
"-- Configure with --log-level=STATUS or higher to increase "
|
||||
"CMake's message verbosity. "
|
||||
"The log level does not persist across reconfigurations.")
|
||||
endif()
|
||||
|
||||
# Need 2 flushes to ensure no interleaved input is printed due to a mix of message(STATUS)
|
||||
# and message(NOTICE) calls.
|
||||
execute_process(COMMAND ${CMAKE_COMMAND} -E echo " ")
|
||||
|
||||
# We want to show the configuration summary only on first configuration or when we detect
|
||||
# a feature change, to keep most reconfiguration output as quiet as possible.
|
||||
# Currently feature change detection is not entirely reliable.
|
||||
if(NOT QT_INTERNAL_SUMMARY_INSTRUCTIONS_SHOWN OR features_possibly_changed)
|
||||
set(force_show_summary TRUE)
|
||||
else()
|
||||
set(force_show_summary FALSE)
|
||||
message(
|
||||
"\n"
|
||||
"-- Configuration summary has been written to"
|
||||
" ${CMAKE_BINARY_DIR}/config.summary")
|
||||
endif()
|
||||
|
||||
qt_configure_print_summary_helper(
|
||||
"Configuration summary:\n${__qt_configure_reports}"
|
||||
"${__qt_configure_reports}"
|
||||
${force_show_summary})
|
||||
|
||||
execute_process(COMMAND ${CMAKE_COMMAND} -E echo " ")
|
||||
|
||||
file(APPEND "${summary_file}" "${__qt_configure_reports}")
|
||||
endif()
|
||||
|
||||
@ -300,9 +329,11 @@ function(qt_configure_add_summary_entry)
|
||||
endfunction()
|
||||
|
||||
function(qt_configure_process_add_summary_entry)
|
||||
qt_parse_all_arguments(arg "qt_configure_add_summary_entry"
|
||||
cmake_parse_arguments(PARSE_ARGV 0 arg
|
||||
""
|
||||
"ARGS;TYPE;MESSAGE" "CONDITION" ${ARGN})
|
||||
"ARGS;TYPE;MESSAGE"
|
||||
"CONDITION")
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
if(NOT arg_TYPE)
|
||||
set(arg_TYPE "feature")
|
||||
@ -459,8 +490,11 @@ function(qt_configure_add_summary_section)
|
||||
endfunction()
|
||||
|
||||
function(qt_configure_process_add_summary_section)
|
||||
qt_parse_all_arguments(arg "qt_configure_add_summary_section"
|
||||
"" "NAME" "" ${ARGN})
|
||||
cmake_parse_arguments(PARSE_ARGV 0 arg
|
||||
""
|
||||
"NAME"
|
||||
"")
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
qt_configure_add_report("${__qt_configure_indent}${arg_NAME}:")
|
||||
if(NOT DEFINED __qt_configure_indent)
|
||||
@ -492,9 +526,11 @@ function(qt_configure_add_report_error error)
|
||||
endfunction()
|
||||
|
||||
function(qt_configure_process_add_report_entry)
|
||||
qt_parse_all_arguments(arg "qt_configure_add_report_entry"
|
||||
cmake_parse_arguments(PARSE_ARGV 0 arg
|
||||
""
|
||||
"TYPE;MESSAGE" "CONDITION" ${ARGN})
|
||||
"TYPE;MESSAGE"
|
||||
"CONDITION")
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
set(possible_types NOTE WARNING ERROR FATAL_ERROR)
|
||||
if(NOT "${arg_TYPE}" IN_LIST possible_types)
|
||||
|
@ -1,5 +1,8 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# These values should be kept in sync with those in qtbase/.cmake.conf
|
||||
cmake_minimum_required(VERSION 3.16...3.20)
|
||||
cmake_minimum_required(VERSION 3.16...3.21)
|
||||
|
||||
###############################################
|
||||
#
|
||||
@ -12,8 +15,8 @@ cmake_minimum_required(VERSION 3.16...3.20)
|
||||
#
|
||||
# The returned dependencies are topologically sorted.
|
||||
#
|
||||
# Example output for qtimageformats:
|
||||
# qtbase;qtshadertools;qtsvg;qtdeclarative;qttools
|
||||
# Example output for qtdeclarative:
|
||||
# qtbase;qtimageformats;qtlanguageserver;qtshadertools;qtsvg
|
||||
#
|
||||
function(qt_internal_read_repo_dependencies out_var repo_dir)
|
||||
set(seen ${ARGN})
|
||||
@ -36,6 +39,9 @@ function(qt_internal_read_repo_dependencies out_var repo_dir)
|
||||
if(NOT dependency IN_LIST seen)
|
||||
qt_internal_read_repo_dependencies(subdeps "${dependency_repo_dir}"
|
||||
${seen} ${dependency})
|
||||
if(dependency MATCHES "^tqtc-(.+)")
|
||||
set(dependency "${CMAKE_MATCH_1}")
|
||||
endif()
|
||||
list(APPEND dependencies ${subdeps} ${dependency})
|
||||
endif()
|
||||
endif()
|
||||
@ -102,6 +108,35 @@ endif()
|
||||
# build.
|
||||
include(QtPlatformSupport)
|
||||
|
||||
# Set FEATURE_${feature} if INPUT_${feature} is set in certain circumstances.
|
||||
# Set FEATURE_${feature}_computed_from_input to TRUE or FALSE depending on whether the
|
||||
# INPUT_${feature} value has overridden the FEATURE_${feature} variable.
|
||||
#
|
||||
# Needs to be in QtBuildInternalsConfig.cmake instead of QtFeature.cmake because it's used in
|
||||
# qt_build_internals_disable_pkg_config_if_needed.
|
||||
function(qt_internal_compute_feature_value_from_possible_input feature)
|
||||
# If FEATURE_ is not defined try to use the INPUT_ variable to enable/disable feature.
|
||||
# If FEATURE_ is defined and the configure script is being used (so
|
||||
# QT_INTERNAL_CALLED_FROM_CONFIGURE is TRUE), ignore the FEATURE_ variable, and take into
|
||||
# account the INPUT_ variable instead, because a command line argument takes priority over
|
||||
# a pre-cached FEATURE_ variable.
|
||||
if((NOT DEFINED FEATURE_${feature} OR QT_INTERNAL_CALLED_FROM_CONFIGURE)
|
||||
AND DEFINED INPUT_${feature}
|
||||
AND NOT "${INPUT_${feature}}" STREQUAL "undefined"
|
||||
AND NOT "${INPUT_${feature}}" STREQUAL "")
|
||||
if(INPUT_${feature})
|
||||
set(FEATURE_${feature} ON)
|
||||
else()
|
||||
set(FEATURE_${feature} OFF)
|
||||
endif()
|
||||
|
||||
set(FEATURE_${feature} "${FEATURE_${feature}}" PARENT_SCOPE)
|
||||
set(FEATURE_${feature}_computed_from_input TRUE PARENT_SCOPE)
|
||||
else()
|
||||
set(FEATURE_${feature}_computed_from_input FALSE PARENT_SCOPE)
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
function(qt_build_internals_disable_pkg_config_if_needed)
|
||||
# pkg-config should not be used by default on Darwin and Windows platforms (and QNX), as defined
|
||||
# in the qtbase/configure.json. Unfortunately by the time the feature is evaluated there are
|
||||
@ -128,15 +163,7 @@ function(qt_build_internals_disable_pkg_config_if_needed)
|
||||
endif()
|
||||
|
||||
# Features won't have been evaluated yet if this is the first run, have to evaluate this here
|
||||
if ((NOT DEFINED "FEATURE_pkg_config") AND (DEFINED "INPUT_pkg_config")
|
||||
AND (NOT "${INPUT_pkg_config}" STREQUAL "undefined")
|
||||
AND (NOT "${INPUT_pkg_config}" STREQUAL ""))
|
||||
if(INPUT_pkg_config)
|
||||
set(FEATURE_pkg_config ON)
|
||||
else()
|
||||
set(FEATURE_pkg_config OFF)
|
||||
endif()
|
||||
endif()
|
||||
qt_internal_compute_feature_value_from_possible_input(pkg_config)
|
||||
|
||||
# If user explicitly specified a value for the feature, honor it, even if it might break
|
||||
# the build.
|
||||
@ -227,11 +254,20 @@ if(NOT QT_BUILD_INTERNALS_SKIP_SYSTEM_PREFIX_ADJUSTMENT)
|
||||
qt_build_internals_set_up_system_prefixes()
|
||||
endif()
|
||||
|
||||
macro(qt_build_internals_set_up_private_api)
|
||||
# The macro sets all the necessary pre-conditions and setup consistent environment for building
|
||||
# the Qt repository. It has to be called right after the find_package(Qt6 COMPONENTS BuildInternals)
|
||||
# call. Otherwise we cannot make sure that all the required policies will be applied to the Qt
|
||||
# components that are involved in build procedure.
|
||||
macro(qt_internal_project_setup)
|
||||
# Check for the minimum CMake version.
|
||||
include(QtCMakeVersionHelpers)
|
||||
qt_internal_require_suitable_cmake_version()
|
||||
qt_internal_upgrade_cmake_policies()
|
||||
endmacro()
|
||||
|
||||
macro(qt_build_internals_set_up_private_api)
|
||||
# TODO: this call needs to be removed once all repositories got the qtbase update
|
||||
qt_internal_project_setup()
|
||||
|
||||
# Qt specific setup common for all modules:
|
||||
include(QtSetup)
|
||||
@ -255,7 +291,7 @@ macro(qt_build_internals_get_repo_targets subdir)
|
||||
if(_targets)
|
||||
foreach(_target IN LISTS _targets)
|
||||
get_target_property(_type ${_target} TYPE)
|
||||
if(NOT (${_type} STREQUAL "UTILITY" OR ${_type} STREQUAL "INTERFACE"))
|
||||
if(NOT ${_type} STREQUAL "UTILITY")
|
||||
list(APPEND qt_repo_targets "${_target}")
|
||||
endif()
|
||||
endforeach()
|
||||
@ -284,7 +320,27 @@ function(qt_build_internals_add_toplevel_targets)
|
||||
COMMENT "Building everything in ${qt_repo_targets_name}/${qt_repo_target_basename}")
|
||||
add_dependencies("${qt_repo_target_name}" ${qt_repo_targets})
|
||||
list(APPEND qt_repo_target_all "${qt_repo_target_name}")
|
||||
|
||||
# Create special dependency target for External Project examples excluding targets
|
||||
# marked as skipped.
|
||||
set(qt_repo_target_name
|
||||
"${qt_repo_targets_name}_${qt_repo_target_basename}_for_examples")
|
||||
add_custom_target("${qt_repo_target_name}")
|
||||
|
||||
set(unskipped_targets "")
|
||||
foreach(target IN LISTS qt_repo_targets)
|
||||
if(TARGET "${target}")
|
||||
qt_internal_is_target_skipped_for_examples("${target}" is_skipped)
|
||||
if(NOT is_skipped)
|
||||
list(APPEND unskipped_targets "${target}")
|
||||
endif()
|
||||
endif()
|
||||
endforeach()
|
||||
if(unskipped_targets)
|
||||
add_dependencies("${qt_repo_target_name}" ${unskipped_targets})
|
||||
endif()
|
||||
endif()
|
||||
|
||||
endforeach()
|
||||
if (qt_repo_target_all)
|
||||
# Note qt_repo_targets_name is different from qt_repo_target_name that is used above.
|
||||
@ -296,24 +352,19 @@ function(qt_build_internals_add_toplevel_targets)
|
||||
endfunction()
|
||||
|
||||
macro(qt_enable_cmake_languages)
|
||||
include(CheckLanguage)
|
||||
set(__qt_required_language_list C CXX)
|
||||
set(__qt_optional_language_list )
|
||||
set(__qt_platform_required_language_list )
|
||||
|
||||
# https://gitlab.kitware.com/cmake/cmake/-/issues/20545
|
||||
if(APPLE)
|
||||
list(APPEND __qt_optional_language_list OBJC OBJCXX)
|
||||
list(APPEND __qt_platform_required_language_list OBJC OBJCXX)
|
||||
endif()
|
||||
|
||||
foreach(__qt_lang ${__qt_required_language_list})
|
||||
enable_language(${__qt_lang})
|
||||
endforeach()
|
||||
|
||||
foreach(__qt_lang ${__qt_optional_language_list})
|
||||
check_language(${__qt_lang})
|
||||
if(CMAKE_${__qt_lang}_COMPILER)
|
||||
foreach(__qt_lang ${__qt_platform_required_language_list})
|
||||
enable_language(${__qt_lang})
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
# The qtbase call is handled in qtbase/CMakeLists.txt.
|
||||
@ -379,6 +430,8 @@ macro(qt_internal_prepare_single_repo_target_set_build)
|
||||
endmacro()
|
||||
|
||||
macro(qt_build_repo_begin)
|
||||
list(APPEND CMAKE_MESSAGE_CONTEXT "${PROJECT_NAME}")
|
||||
|
||||
qt_build_internals_set_up_private_api()
|
||||
|
||||
# Prevent installation in non-prefix builds.
|
||||
@ -416,6 +469,16 @@ macro(qt_build_repo_begin)
|
||||
add_dependencies(install_docs install_html_docs install_qch_docs)
|
||||
endif()
|
||||
|
||||
if(NOT TARGET sync_headers)
|
||||
add_custom_target(sync_headers)
|
||||
endif()
|
||||
|
||||
# The special target that we use to sync 3rd-party headers before the gn run when building
|
||||
# qtwebengine in top-level builds.
|
||||
if(NOT TARGET thirdparty_sync_headers)
|
||||
add_custom_target(thirdparty_sync_headers)
|
||||
endif()
|
||||
|
||||
# Add global qt_plugins, qpa_plugins and qpa_default_plugins convenience custom targets.
|
||||
# Internal executables will add a dependency on the qpa_default_plugins target,
|
||||
# so that building and running a test ensures it won't fail at runtime due to a missing qpa
|
||||
@ -428,6 +491,31 @@ macro(qt_build_repo_begin)
|
||||
|
||||
string(TOLOWER ${PROJECT_NAME} project_name_lower)
|
||||
|
||||
# Target to build all plugins that are part of the current repo.
|
||||
set(qt_repo_plugins "qt_plugins_${project_name_lower}")
|
||||
if(NOT TARGET ${qt_repo_plugins})
|
||||
add_custom_target(${qt_repo_plugins})
|
||||
endif()
|
||||
|
||||
# Target to build all plugins that are part of the current repo and the current repo's
|
||||
# dependencies plugins. Used for external project example dependencies.
|
||||
set(qt_repo_plugins_recursive "${qt_repo_plugins}_recursive")
|
||||
if(NOT TARGET ${qt_repo_plugins_recursive})
|
||||
add_custom_target(${qt_repo_plugins_recursive})
|
||||
add_dependencies(${qt_repo_plugins_recursive} "${qt_repo_plugins}")
|
||||
endif()
|
||||
|
||||
qt_internal_read_repo_dependencies(qt_repo_deps "${PROJECT_SOURCE_DIR}")
|
||||
if(qt_repo_deps)
|
||||
foreach(qt_repo_dep IN LISTS qt_repo_deps)
|
||||
if(TARGET qt_plugins_${qt_repo_dep})
|
||||
message(DEBUG
|
||||
"${qt_repo_plugins_recursive} depends on qt_plugins_${qt_repo_dep}")
|
||||
add_dependencies(${qt_repo_plugins_recursive} "qt_plugins_${qt_repo_dep}")
|
||||
endif()
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
set(qt_repo_targets_name ${project_name_lower})
|
||||
set(qt_docs_target_name docs_${project_name_lower})
|
||||
set(qt_docs_prepare_target_name prepare_docs_${project_name_lower})
|
||||
@ -471,6 +559,10 @@ macro(qt_build_repo_begin)
|
||||
if(NOT TARGET benchmark)
|
||||
add_custom_target(benchmark)
|
||||
endif()
|
||||
|
||||
if(QT_INTERNAL_SYNCED_MODULES)
|
||||
set_property(GLOBAL PROPERTY _qt_synced_modules ${QT_INTERNAL_SYNCED_MODULES})
|
||||
endif()
|
||||
endmacro()
|
||||
|
||||
macro(qt_build_repo_end)
|
||||
@ -507,8 +599,39 @@ macro(qt_build_repo_end)
|
||||
if(NOT QT_SUPERBUILD)
|
||||
qt_print_build_instructions()
|
||||
endif()
|
||||
|
||||
get_property(synced_modules GLOBAL PROPERTY _qt_synced_modules)
|
||||
if(synced_modules)
|
||||
set(QT_INTERNAL_SYNCED_MODULES ${synced_modules} CACHE INTERNAL
|
||||
"List of the synced modules. Prevents running syncqt.cpp after the first configuring.")
|
||||
endif()
|
||||
|
||||
if(NOT QT_SUPERBUILD)
|
||||
qt_internal_save_previously_visited_packages()
|
||||
endif()
|
||||
|
||||
if(QT_INTERNAL_FRESH_REQUESTED)
|
||||
set(QT_INTERNAL_FRESH_REQUESTED "FALSE" CACHE INTERNAL "")
|
||||
endif()
|
||||
|
||||
if(NOT QT_SUPERBUILD)
|
||||
qt_internal_qt_configure_end()
|
||||
endif()
|
||||
|
||||
list(POP_BACK CMAKE_MESSAGE_CONTEXT)
|
||||
endmacro()
|
||||
|
||||
# Function called either at the end of per-repo configuration, or at the end of configuration of
|
||||
# a super build.
|
||||
# At the moment it is called before examples are configured in a per-repo build. We might want
|
||||
# to change that at some point if needed.
|
||||
function(qt_internal_qt_configure_end)
|
||||
# If Qt is configued via the configure script, remove the marker variable, so that any future
|
||||
# reconfigurations that are done by calling cmake directly don't trigger configure specific
|
||||
# logic.
|
||||
unset(QT_INTERNAL_CALLED_FROM_CONFIGURE CACHE)
|
||||
endfunction()
|
||||
|
||||
macro(qt_build_repo)
|
||||
qt_build_repo_begin(${ARGN})
|
||||
|
||||
@ -548,6 +671,10 @@ macro(qt_build_repo_impl_src)
|
||||
add_subdirectory(src)
|
||||
endif()
|
||||
endif()
|
||||
if(QT_FEATURE_lttng AND NOT TARGET LTTng::UST)
|
||||
qt_find_package(LTTngUST PROVIDED_TARGETS LTTng::UST
|
||||
MODULE_NAME global QMAKE_LIB lttng-ust)
|
||||
endif()
|
||||
endmacro()
|
||||
|
||||
macro(qt_build_repo_impl_tools)
|
||||
@ -571,6 +698,7 @@ macro(qt_build_repo_impl_examples)
|
||||
if(QT_BUILD_EXAMPLES
|
||||
AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/examples/CMakeLists.txt"
|
||||
AND NOT QT_BUILD_STANDALONE_TESTS)
|
||||
message(STATUS "Configuring examples.")
|
||||
add_subdirectory(examples)
|
||||
endif()
|
||||
endmacro()
|
||||
@ -610,6 +738,8 @@ function(qt_internal_get_standalone_tests_config_file_name out_var)
|
||||
endfunction()
|
||||
|
||||
macro(qt_build_tests)
|
||||
set(CMAKE_UNITY_BUILD OFF)
|
||||
|
||||
if(QT_BUILD_STANDALONE_TESTS)
|
||||
# Find location of TestsConfig.cmake. These contain the modules that need to be
|
||||
# find_package'd when testing.
|
||||
@ -669,7 +799,7 @@ macro(qt_build_tests)
|
||||
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/auto/CMakeLists.txt")
|
||||
add_subdirectory(auto)
|
||||
endif()
|
||||
if(NOT QT_BUILD_MINIMAL_STATIC_TESTS)
|
||||
if(NOT QT_BUILD_MINIMAL_STATIC_TESTS AND NOT QT_BUILD_MINIMAL_ANDROID_MULTI_ABI_TESTS)
|
||||
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/baseline/CMakeLists.txt")
|
||||
add_subdirectory(baseline)
|
||||
endif()
|
||||
@ -680,6 +810,8 @@ macro(qt_build_tests)
|
||||
add_subdirectory(manual)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
set(CMAKE_UNITY_BUILD ${QT_UNITY_BUILD})
|
||||
endmacro()
|
||||
|
||||
function(qt_compute_relative_path_from_cmake_config_dir_to_prefix)
|
||||
@ -765,22 +897,25 @@ macro(qt_examples_build_begin)
|
||||
|
||||
cmake_parse_arguments(arg "${options}" "${singleOpts}" "${multiOpts}" ${ARGN})
|
||||
|
||||
set(CMAKE_UNITY_BUILD OFF)
|
||||
|
||||
# Use by qt_internal_add_example.
|
||||
set(QT_EXAMPLE_BASE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
|
||||
if(arg_EXTERNAL_BUILD AND QT_BUILD_EXAMPLES_AS_EXTERNAL)
|
||||
# Examples will be built using ExternalProject.
|
||||
# We always depend on all plugins so as to prevent opportunities for
|
||||
# We depend on all plugins built as part of the current repo as well as current repo's
|
||||
# dependencies plugins, to prevent opportunities for
|
||||
# weird errors associated with loading out-of-date plugins from
|
||||
# unrelated Qt modules.
|
||||
# We also depend on all targets from this repo's src and tools subdirectories
|
||||
# to ensure that we've built anything that a find_package() call within
|
||||
# an example might use. Projects can add further dependencies if needed,
|
||||
# but that should rarely be necessary.
|
||||
set(QT_EXAMPLE_DEPENDENCIES qt_plugins ${arg_DEPENDS})
|
||||
set(QT_EXAMPLE_DEPENDENCIES ${qt_repo_plugins_recursive} ${arg_DEPENDS})
|
||||
|
||||
if(TARGET ${qt_repo_targets_name}_src)
|
||||
list(APPEND QT_EXAMPLE_DEPENDENCIES ${qt_repo_targets_name}_src)
|
||||
list(APPEND QT_EXAMPLE_DEPENDENCIES ${qt_repo_targets_name}_src_for_examples)
|
||||
endif()
|
||||
|
||||
if(TARGET ${qt_repo_targets_name}_tools)
|
||||
@ -852,7 +987,6 @@ macro(qt_examples_build_begin)
|
||||
# annotate where each example is installed to, to be able to derive a relative rpath, and it
|
||||
# seems there's no way to query such information from CMake itself.
|
||||
set(CMAKE_INSTALL_RPATH "${_default_install_rpath}")
|
||||
set(QT_DISABLE_QT_ADD_PLUGIN_COMPATIBILITY TRUE)
|
||||
|
||||
install(CODE "
|
||||
# Backup CMAKE_INSTALL_PREFIX because we're going to change it in each example subdirectory
|
||||
@ -894,27 +1028,129 @@ macro(qt_examples_build_end)
|
||||
if(TARGET Qt::Widgets)
|
||||
qt_autogen_tools(${target} ENABLE_AUTOGEN_TOOLS "uic")
|
||||
endif()
|
||||
set_target_properties(${target} PROPERTIES UNITY_BUILD OFF)
|
||||
endforeach()
|
||||
|
||||
install(CODE "
|
||||
# Restore backed up CMAKE_INSTALL_PREFIX.
|
||||
set(CMAKE_INSTALL_PREFIX \"\${_qt_internal_examples_cmake_install_prefix_backup}\")
|
||||
")
|
||||
|
||||
set(CMAKE_UNITY_BUILD ${QT_UNITY_BUILD})
|
||||
endmacro()
|
||||
|
||||
# Allows building an example either as an ExternalProject or in-tree with the Qt build.
|
||||
# Also allows installing the example sources.
|
||||
function(qt_internal_add_example subdir)
|
||||
# Pre-compute unique example name based on the subdir, in case of target name clashes.
|
||||
qt_internal_get_example_unique_name(unique_example_name "${subdir}")
|
||||
|
||||
# QT_INTERNAL_NO_CONFIGURE_EXAMPLES is not meant to be used by Qt builders, it's here for faster
|
||||
# testing of the source installation code path for build system engineers.
|
||||
if(NOT QT_INTERNAL_NO_CONFIGURE_EXAMPLES)
|
||||
if(NOT QT_IS_EXTERNAL_EXAMPLES_BUILD)
|
||||
qt_internal_add_example_in_tree(${ARGV})
|
||||
qt_internal_add_example_in_tree("${subdir}")
|
||||
else()
|
||||
qt_internal_add_example_external_project(${ARGV})
|
||||
qt_internal_add_example_external_project("${subdir}"
|
||||
NAME "${unique_example_name}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(QT_INSTALL_EXAMPLES_SOURCES)
|
||||
string(TOLOWER ${PROJECT_NAME} project_name_lower)
|
||||
|
||||
qt_internal_install_example_sources("${subdir}"
|
||||
NAME "${unique_example_name}"
|
||||
REPO_NAME "${project_name_lower}")
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
# Gets the install prefix where an example should be installed.
|
||||
# Used for computing the final installation path.
|
||||
function(qt_internal_get_example_install_prefix out_var)
|
||||
# Allow customizing the installation path of the examples. Will be used in CI.
|
||||
if(QT_INTERNAL_EXAMPLES_INSTALL_PREFIX)
|
||||
set(qt_example_install_prefix "${QT_INTERNAL_EXAMPLES_INSTALL_PREFIX}")
|
||||
else()
|
||||
set(qt_example_install_prefix "${CMAKE_INSTALL_PREFIX}/${INSTALL_EXAMPLESDIR}")
|
||||
endif()
|
||||
file(TO_CMAKE_PATH "${qt_example_install_prefix}" qt_example_install_prefix)
|
||||
set(${out_var} "${qt_example_install_prefix}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
# Gets the install prefix where an example's sources should be installed.
|
||||
# Used for computing the final installation path.
|
||||
function(qt_internal_get_examples_sources_install_prefix out_var)
|
||||
# Allow customizing the installation path of the examples source specifically.
|
||||
if(QT_INTERNAL_EXAMPLES_SOURCES_INSTALL_PREFIX)
|
||||
set(qt_example_install_prefix "${QT_INTERNAL_EXAMPLES_SOURCES_INSTALL_PREFIX}")
|
||||
else()
|
||||
qt_internal_get_example_install_prefix(qt_example_install_prefix)
|
||||
endif()
|
||||
file(TO_CMAKE_PATH "${qt_example_install_prefix}" qt_example_install_prefix)
|
||||
set(${out_var} "${qt_example_install_prefix}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
# Gets the relative path of an example, relative to the current repo's examples source dir.
|
||||
# QT_EXAMPLE_BASE_DIR is meant to be already set in a parent scope.
|
||||
function(qt_internal_get_example_rel_path out_var subdir)
|
||||
file(RELATIVE_PATH example_rel_path
|
||||
"${QT_EXAMPLE_BASE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/${subdir}")
|
||||
set(${out_var} "${example_rel_path}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
# Gets the install path where an example should be installed.
|
||||
function(qt_internal_get_example_install_path out_var subdir)
|
||||
qt_internal_get_example_install_prefix(qt_example_install_prefix)
|
||||
qt_internal_get_example_rel_path(example_rel_path "${subdir}")
|
||||
set(example_install_path "${qt_example_install_prefix}/${example_rel_path}")
|
||||
|
||||
set(${out_var} "${example_install_path}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
# Gets the install path where an example's sources should be installed.
|
||||
function(qt_internal_get_examples_sources_install_path out_var subdir)
|
||||
qt_internal_get_examples_sources_install_prefix(qt_example_install_prefix)
|
||||
qt_internal_get_example_rel_path(example_rel_path "${subdir}")
|
||||
set(example_install_path "${qt_example_install_prefix}/${example_rel_path}")
|
||||
|
||||
set(${out_var} "${example_install_path}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
# Get the unique name of an example project based on its subdir or explicitly given name.
|
||||
# Makes the name unique by appending a short sha1 hash of the relative path of the example
|
||||
# if a target of the same name already exist.
|
||||
function(qt_internal_get_example_unique_name out_var subdir)
|
||||
qt_internal_get_example_rel_path(example_rel_path "${subdir}")
|
||||
|
||||
set(name "${subdir}")
|
||||
|
||||
# qtdeclarative has calls like qt_internal_add_example(imagine/automotive)
|
||||
# so passing a nested subdirectory. Custom targets (and thus ExternalProjects) can't contain
|
||||
# slashes, so extract the last part of the path to be used as a name.
|
||||
if(name MATCHES "/")
|
||||
string(REPLACE "/" ";" exploded_path "${name}")
|
||||
list(POP_BACK exploded_path last_dir)
|
||||
if(NOT last_dir)
|
||||
message(FATAL_ERROR "Example subdirectory must have a name.")
|
||||
else()
|
||||
set(name "${last_dir}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Likely a clash with an example subdir ExternalProject custom target of the same name in a
|
||||
# top-level build.
|
||||
if(TARGET "${name}")
|
||||
string(SHA1 rel_path_hash "${example_rel_path}")
|
||||
string(SUBSTRING "${rel_path_hash}" 0 4 short_hash)
|
||||
set(name "${name}-${short_hash}")
|
||||
endif()
|
||||
|
||||
set(${out_var} "${name}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
# Use old non-ExternalProject approach, aka build in-tree with the Qt build.
|
||||
function(qt_internal_add_example_in_tree subdir)
|
||||
file(RELATIVE_PATH example_rel_path
|
||||
"${QT_EXAMPLE_BASE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/${subdir}")
|
||||
|
||||
# Unset the default CMAKE_INSTALL_PREFIX that's generated in
|
||||
# ${CMAKE_CURRENT_BINARY_DIR}/cmake_install.cmake
|
||||
# so we can override it with a different value in
|
||||
@ -928,15 +1164,8 @@ unset(CMAKE_INSTALL_PREFIX)
|
||||
|
||||
# Override the install prefix in the subdir cmake_install.cmake, so that
|
||||
# relative install(TARGETS DESTINATION) calls in example projects install where we tell them to.
|
||||
# Allow customizing the installation path of the examples. Will be used in CI.
|
||||
if(QT_INTERNAL_EXAMPLES_INSTALL_PREFIX)
|
||||
set(qt_example_install_prefix "${QT_INTERNAL_EXAMPLES_INSTALL_PREFIX}")
|
||||
else()
|
||||
set(qt_example_install_prefix "${CMAKE_INSTALL_PREFIX}/${INSTALL_EXAMPLESDIR}")
|
||||
endif()
|
||||
file(TO_CMAKE_PATH "${qt_example_install_prefix}" qt_example_install_prefix)
|
||||
|
||||
set(CMAKE_INSTALL_PREFIX "${qt_example_install_prefix}/${example_rel_path}")
|
||||
qt_internal_get_example_install_path(example_install_path "${subdir}")
|
||||
set(CMAKE_INSTALL_PREFIX "${example_install_path}")
|
||||
|
||||
# Make sure unclean example projects have their INSTALL_EXAMPLEDIR set to "."
|
||||
# Won't have any effect on example projects that don't use INSTALL_EXAMPLEDIR.
|
||||
@ -946,7 +1175,7 @@ unset(CMAKE_INSTALL_PREFIX)
|
||||
# TODO: Remove once all repositories use qt_internal_add_example instead of add_subdirectory.
|
||||
set(QT_INTERNAL_SET_EXAMPLE_INSTALL_DIR_TO_DOT ON)
|
||||
|
||||
add_subdirectory(${subdir} ${ARGN})
|
||||
add_subdirectory(${subdir})
|
||||
endfunction()
|
||||
|
||||
function(qt_internal_add_example_external_project subdir)
|
||||
@ -956,33 +1185,6 @@ function(qt_internal_add_example_external_project subdir)
|
||||
|
||||
cmake_parse_arguments(PARSE_ARGV 1 arg "${options}" "${singleOpts}" "${multiOpts}")
|
||||
|
||||
file(RELATIVE_PATH example_rel_path
|
||||
"${QT_EXAMPLE_BASE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/${subdir}")
|
||||
|
||||
if(NOT arg_NAME)
|
||||
set(arg_NAME "${subdir}")
|
||||
|
||||
# qtdeclarative has calls like qt_internal_add_example(imagine/automotive)
|
||||
# so passing a nested subdirectory. Custom targets (and thus ExternalProjects) can't contain
|
||||
# slashes, so extract the last part of the path to be used as a name.
|
||||
if(arg_NAME MATCHES "/")
|
||||
string(REPLACE "/" ";" exploded_path "${arg_NAME}")
|
||||
list(POP_BACK exploded_path last_dir)
|
||||
if(NOT last_dir)
|
||||
message(FATAL_ERROR "Example subdirectory must have a name.")
|
||||
else()
|
||||
set(arg_NAME "${last_dir}")
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Likely a clash with an example subdir ExternalProject custom target of the same name.
|
||||
if(TARGET "${arg_NAME}")
|
||||
string(SHA1 rel_path_hash "${example_rel_path}")
|
||||
string(SUBSTRING "${rel_path_hash}" 0 4 short_hash)
|
||||
set(arg_NAME "${arg_NAME}-${short_hash}")
|
||||
endif()
|
||||
|
||||
# TODO: Fix example builds when using Conan / install prefixes are different for each repo.
|
||||
if(QT_SUPERBUILD OR QtBase_BINARY_DIR)
|
||||
# When doing a top-level build or when building qtbase,
|
||||
@ -1203,15 +1405,7 @@ function(qt_internal_add_example_external_project subdir)
|
||||
# example_source_dir, use _qt_internal_override_example_install_dir_to_dot to ensure
|
||||
# INSTALL_EXAMPLEDIR does not interfere.
|
||||
|
||||
# Allow customizing the installation path of the examples. Will be used in CI.
|
||||
if(QT_INTERNAL_EXAMPLES_INSTALL_PREFIX)
|
||||
set(qt_example_install_prefix "${QT_INTERNAL_EXAMPLES_INSTALL_PREFIX}")
|
||||
else()
|
||||
set(qt_example_install_prefix "${CMAKE_INSTALL_PREFIX}/${INSTALL_EXAMPLESDIR}")
|
||||
endif()
|
||||
file(TO_CMAKE_PATH "${qt_example_install_prefix}" qt_example_install_prefix)
|
||||
|
||||
set(example_install_prefix "${qt_example_install_prefix}/${example_rel_path}")
|
||||
qt_internal_get_example_install_path(example_install_path "${subdir}")
|
||||
|
||||
set(ep_binary_dir "${CMAKE_CURRENT_BINARY_DIR}/${subdir}")
|
||||
|
||||
@ -1226,7 +1420,7 @@ function(qt_internal_add_example_external_project subdir)
|
||||
PREFIX "${CMAKE_CURRENT_BINARY_DIR}/${subdir}-ep"
|
||||
STAMP_DIR "${CMAKE_CURRENT_BINARY_DIR}/${subdir}-ep/stamp"
|
||||
BINARY_DIR "${ep_binary_dir}"
|
||||
INSTALL_DIR "${example_install_prefix}"
|
||||
INSTALL_DIR "${example_install_path}"
|
||||
INSTALL_COMMAND ""
|
||||
${build_command}
|
||||
TEST_COMMAND ""
|
||||
@ -1280,6 +1474,54 @@ execute_process(
|
||||
|
||||
endfunction()
|
||||
|
||||
function(qt_internal_install_example_sources subdir)
|
||||
set(options "")
|
||||
set(single_args NAME REPO_NAME)
|
||||
set(multi_args "")
|
||||
|
||||
cmake_parse_arguments(PARSE_ARGV 1 arg "${options}" "${single_args}" "${multi_args}")
|
||||
|
||||
qt_internal_get_examples_sources_install_path(example_install_path "${subdir}")
|
||||
|
||||
# The trailing slash is important to avoid duplicate nested directory names.
|
||||
set(example_source_dir "${subdir}/")
|
||||
|
||||
# Allow controlling whether sources should be part of the default install target.
|
||||
if(QT_INSTALL_EXAMPLES_SOURCES_BY_DEFAULT)
|
||||
set(exclude_from_all "")
|
||||
else()
|
||||
set(exclude_from_all "EXCLUDE_FROM_ALL")
|
||||
endif()
|
||||
|
||||
# Create an install component for all example sources. Can also be part of the default
|
||||
# install target if EXCLUDE_FROM_ALL is not passed.
|
||||
install(
|
||||
DIRECTORY "${example_source_dir}"
|
||||
DESTINATION "${example_install_path}"
|
||||
COMPONENT "examples_sources"
|
||||
USE_SOURCE_PERMISSIONS
|
||||
${exclude_from_all}
|
||||
)
|
||||
|
||||
# Also create a specific install component just for this repo's examples.
|
||||
install(
|
||||
DIRECTORY "${example_source_dir}"
|
||||
DESTINATION "${example_install_path}"
|
||||
COMPONENT "examples_sources_${arg_REPO_NAME}"
|
||||
USE_SOURCE_PERMISSIONS
|
||||
EXCLUDE_FROM_ALL
|
||||
)
|
||||
|
||||
# Also create a specific install component just for the current example's sources.
|
||||
install(
|
||||
DIRECTORY "${example_source_dir}"
|
||||
DESTINATION "${example_install_path}"
|
||||
COMPONENT "examples_sources_${arg_NAME}"
|
||||
USE_SOURCE_PERMISSIONS
|
||||
EXCLUDE_FROM_ALL
|
||||
)
|
||||
endfunction()
|
||||
|
||||
if ("STANDALONE_TEST" IN_LIST Qt6BuildInternals_FIND_COMPONENTS)
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/QtStandaloneTestTemplateProject/Main.cmake)
|
||||
if (NOT PROJECT_VERSION_MAJOR)
|
||||
@ -1338,3 +1580,13 @@ function(qt_internal_run_common_config_tests)
|
||||
qt_internal_check_cmp0099_available()
|
||||
qt_configure_end_summary_section()
|
||||
endfunction()
|
||||
|
||||
# It is used in QtWebEngine to replace the REALPATH with ABSOLUTE path, which is
|
||||
# useful for building Qt in Homebrew.
|
||||
function(qt_internal_get_filename_path_mode out_var)
|
||||
set(mode REALPATH)
|
||||
if(APPLE AND QT_ALLOW_SYMLINK_IN_PATHS)
|
||||
set(mode ABSOLUTE)
|
||||
endif()
|
||||
set(${out_var} ${mode} PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
@ -1,9 +1,12 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(qt_single_test VERSION 6.0.0 LANGUAGES C CXX ASM)
|
||||
|
||||
find_package(Qt6 REQUIRED COMPONENTS BuildInternals Core)
|
||||
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/Main.cmake)
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/Main.cmake NO_POLICY_SCOPE)
|
||||
|
||||
# Get the absolute path of the passed-in project dir, relative to the current working directory
|
||||
# of the calling script, rather than relative to this source directory.
|
||||
@ -15,5 +18,17 @@ else()
|
||||
set(absolute_project_path "${QT_STANDALONE_TEST_PATH}")
|
||||
endif()
|
||||
|
||||
# If path does not include the drive letter, we try to add it.
|
||||
get_filename_component(absolute_project_path "." REALPATH BASE_DIR "${absolute_project_path}")
|
||||
|
||||
if(NOT IS_DIRECTORY "${absolute_project_path}")
|
||||
get_filename_component(filename "${absolute_project_path}" NAME)
|
||||
get_filename_component(directory "${absolute_project_path}" DIRECTORY)
|
||||
|
||||
if(filename STREQUAL "CMakeLists.txt")
|
||||
set(absolute_project_path "${directory}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Add the test project path as a subdirectory project.
|
||||
add_subdirectory("${absolute_project_path}" "build_dir")
|
||||
|
@ -1,4 +1,9 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# Includes QtSetup and friends for private CMake API.
|
||||
set(QT_INTERNAL_IS_STANDALONE_TEST TRUE)
|
||||
qt_internal_project_setup()
|
||||
qt_build_internals_set_up_private_api()
|
||||
|
||||
# Find all StandaloneTestsConfig.cmake files, and include them
|
||||
|
@ -18,15 +18,14 @@ get_filename_component(QT_BUILD_INTERNALS_RELOCATABLE_INSTALL_PREFIX
|
||||
# new_prefix: the new prefix for this repository
|
||||
# orig_prefix: the prefix that was used when qtbase was configured
|
||||
#
|
||||
# On Windows hosts, this function makes sure that we use exactly the original prefix if it points to
|
||||
# the same directory as the new one. This is needed for the case where the original prefix is passed
|
||||
# without drive letter to support installing with DESTDIR set.
|
||||
# On Windows hosts: if the original prefix does not start with a drive letter, this function removes
|
||||
# the drive letter from the new prefix. This is needed for installation with DESTDIR set.
|
||||
function(qt_internal_new_prefix out_var new_prefix orig_prefix)
|
||||
if(CMAKE_HOST_WIN32)
|
||||
get_filename_component(real_new_prefix "${new_prefix}" REALPATH)
|
||||
get_filename_component(real_orig_prefix "${orig_prefix}" REALPATH)
|
||||
if(real_new_prefix STREQUAL real_orig_prefix)
|
||||
set(new_prefix "${orig_prefix}")
|
||||
set(drive_letter_regexp "^[a-zA-Z]:")
|
||||
if(new_prefix MATCHES "${drive_letter_regexp}"
|
||||
AND NOT orig_prefix MATCHES "${drive_letter_regexp}")
|
||||
string(SUBSTRING "${new_prefix}" 2 -1 new_prefix)
|
||||
endif()
|
||||
endif()
|
||||
set(${out_var} "${new_prefix}" PARENT_SCOPE)
|
||||
@ -85,6 +84,11 @@ set(QT_BUILD_BENCHMARKS @QT_BUILD_BENCHMARKS@ CACHE BOOL "Build Qt Benchmarks")
|
||||
set(QT_BUILD_MANUAL_TESTS @QT_BUILD_MANUAL_TESTS@ CACHE BOOL "Build Qt manual tests")
|
||||
set(QT_BUILD_MINIMAL_STATIC_TESTS @QT_BUILD_MINIMAL_STATIC_TESTS@ CACHE BOOL
|
||||
"Build minimal subset of tests for static Qt builds")
|
||||
set(QT_BUILD_MINIMAL_ANDROID_MULTI_ABI_TESTS @QT_BUILD_MINIMAL_ANDROID_MULTI_ABI_TESTS@ CACHE BOOL
|
||||
"Build minimal subset of tests for Android multi-ABI Qt builds")
|
||||
|
||||
set(QT_BUILD_TESTS_BATCHED @QT_BUILD_TESTS_BATCHED@ CACHE BOOL
|
||||
"Should all tests be batched into a single binary.")
|
||||
|
||||
set(QT_BUILD_TESTS_BY_DEFAULT @QT_BUILD_TESTS_BY_DEFAULT@ CACHE BOOL
|
||||
"Should tests be built as part of the default 'all' target.")
|
||||
@ -99,6 +103,16 @@ set(QT_BUILD_EXAMPLES_AS_EXTERNAL "@QT_BUILD_EXAMPLES_AS_EXTERNAL@" CACHE BOOL
|
||||
# Propagate usage of ccache.
|
||||
set(QT_USE_CCACHE @QT_USE_CCACHE@ CACHE BOOL "Enable the use of ccache")
|
||||
|
||||
# Propagate usage of vcpkg, ON by default.
|
||||
set(QT_USE_VCPKG @QT_USE_VCPKG@ CACHE BOOL "Enable the use of vcpkg")
|
||||
|
||||
# Propagate usage of unity build.
|
||||
set(QT_UNITY_BUILD @QT_UNITY_BUILD@ CACHE BOOL "Enable unity (jumbo) build")
|
||||
set(QT_UNITY_BUILD_BATCH_SIZE "@QT_UNITY_BUILD_BATCH_SIZE@" CACHE STRING "Unity build batch size")
|
||||
|
||||
# Propragate the value of WARNINGS_ARE_ERRORS.
|
||||
set(WARNINGS_ARE_ERRORS "@WARNINGS_ARE_ERRORS@" CACHE BOOL "Build Qt with warnings as errors")
|
||||
|
||||
# Propagate usage of versioned hard link.
|
||||
set(QT_CREATE_VERSIONED_HARD_LINK "@QT_CREATE_VERSIONED_HARD_LINK@" CACHE BOOL
|
||||
"Enable the use of versioned hard link")
|
||||
@ -152,6 +166,7 @@ function(qt_internal_force_set_cmake_build_type_conditionally value)
|
||||
AND NOT QT_NO_FORCE_SET_CMAKE_BUILD_TYPE
|
||||
AND NOT __qt_internal_extras_is_multi_config)
|
||||
set(CMAKE_BUILD_TYPE "${value}" CACHE STRING "Choose the type of build." FORCE)
|
||||
set(__qt_build_internals_cmake_build_type "${value}" PARENT_SCOPE)
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
|
@ -1,19 +1,19 @@
|
||||
# qt_configure_file(OUTPUT output-file <INPUT input-file | CONTENT content>)
|
||||
# input-file is relative to ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
# output-file is relative to ${CMAKE_CURRENT_BINARY_DIR}
|
||||
#
|
||||
# This function is similar to file(GENERATE OUTPUT) except it writes the content
|
||||
# to the file at configure time, rather than at generate time. Once CMake 3.18 is released, it can
|
||||
# use file(CONFIGURE) in its implementation. Until then, it uses configure_file() with a generic
|
||||
# input file as source, when used with the CONTENT signature.
|
||||
function(qt_configure_file)
|
||||
qt_parse_all_arguments(arg "qt_configure_file" "" "OUTPUT;INPUT;CONTENT" "" ${ARGN})
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# The common implementation of qt_configure_file functionality.
|
||||
macro(qt_configure_file_impl)
|
||||
if(NOT arg_OUTPUT)
|
||||
message(FATAL_ERROR "No output file provided to qt_configure_file.")
|
||||
endif()
|
||||
|
||||
if(arg_CONTENT)
|
||||
# We use this check for the cases when the specified CONTENT is empty. The value of arg_CONTENT
|
||||
# is undefined, but we still want to create a file with empty content.
|
||||
if(NOT "CONTENT" IN_LIST arg_KEYWORDS_MISSING_VALUES)
|
||||
if(arg_INPUT)
|
||||
message(WARNING "Both CONTENT and INPUT are specified. CONTENT will be used to generate"
|
||||
" output")
|
||||
endif()
|
||||
set(template_name "QtFileConfigure.txt.in")
|
||||
# When building qtbase, use the source template file.
|
||||
# Otherwise use the installed file (basically wherever Qt6 package is found).
|
||||
@ -31,10 +31,29 @@ function(qt_configure_file)
|
||||
endif()
|
||||
|
||||
configure_file("${input_file}" "${arg_OUTPUT}" @ONLY)
|
||||
endmacro()
|
||||
|
||||
# qt_configure_file(OUTPUT output-file <INPUT input-file | CONTENT content>)
|
||||
# input-file is relative to ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
# output-file is relative to ${CMAKE_CURRENT_BINARY_DIR}
|
||||
#
|
||||
# This function is similar to file(GENERATE OUTPUT) except it writes the content
|
||||
# to the file at configure time, rather than at generate time.
|
||||
#
|
||||
# TODO: Once we require 3.18+, this can use file(CONFIGURE) in its implementation,
|
||||
# or maybe its usage can be replaced by file(CONFIGURE). Until then, it uses
|
||||
# configure_file() with a generic input file as source, when used with the CONTENT
|
||||
# signature.
|
||||
function(qt_configure_file)
|
||||
cmake_parse_arguments(PARSE_ARGV 0 arg "" "OUTPUT;INPUT;CONTENT" "")
|
||||
qt_configure_file_impl()
|
||||
endfunction()
|
||||
|
||||
# A version of cmake_parse_arguments that makes sure all arguments are processed and errors out
|
||||
# with a message about ${type} having received unknown arguments.
|
||||
#
|
||||
# TODO: Remove when all usage of qt_parse_all_arguments were replaced by
|
||||
# cmake_parse_all_arguments(PARSEARGV) instances
|
||||
macro(qt_parse_all_arguments result type flags options multiopts)
|
||||
cmake_parse_arguments(${result} "${flags}" "${options}" "${multiopts}" ${ARGN})
|
||||
if(DEFINED ${result}_UNPARSED_ARGUMENTS)
|
||||
@ -42,6 +61,14 @@ macro(qt_parse_all_arguments result type flags options multiopts)
|
||||
endif()
|
||||
endmacro()
|
||||
|
||||
# Checks whether any unparsed arguments have been passed to the function at the call site.
|
||||
# Use this right after `cmake_parse_arguments`.
|
||||
function(_qt_internal_validate_all_args_are_parsed prefix)
|
||||
if(DEFINED ${prefix}_UNPARSED_ARGUMENTS)
|
||||
message(FATAL_ERROR "Unknown arguments: (${${prefix}_UNPARSED_ARGUMENTS})")
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
# Print all variables defined in the current scope.
|
||||
macro(qt_debug_print_variables)
|
||||
cmake_parse_arguments(__arg "DEDUP" "" "MATCH;IGNORE" ${ARGN})
|
||||
@ -98,8 +125,7 @@ endfunction()
|
||||
# Parameters:
|
||||
# out_var: result of remove all arguments specified by ARGS_TO_REMOVE from ALL_ARGS
|
||||
# ARGS_TO_REMOVE: Arguments to remove.
|
||||
# ALL_ARGS: All arguments supplied to cmake_parse_arguments or
|
||||
# qt_parse_all_arguments
|
||||
# ALL_ARGS: All arguments supplied to cmake_parse_arguments
|
||||
# from which ARGS_TO_REMOVE should be removed from. We require all the
|
||||
# arguments or we can't properly identify the range of the arguments detailed
|
||||
# in ARGS_TO_REMOVE.
|
||||
@ -113,7 +139,7 @@ endfunction()
|
||||
# bar(target BAR.... WWW...)
|
||||
#
|
||||
# function(foo target)
|
||||
# qt_parse_all_arguments(arg "" "" "BAR;ZZZ;WWW ${ARGV})
|
||||
# cmake_parse_arguments(PARSE_ARGV 1 arg "" "" "BAR;ZZZ;WWW")
|
||||
# qt_remove_args(forward_args
|
||||
# ARGS_TO_REMOVE ${target} ZZZ
|
||||
# ALL_ARGS ${target} BAR ZZZ WWW
|
||||
|
@ -8,7 +8,9 @@ if(QT_NO_PACKAGE_VERSION_CHECK)
|
||||
set(__qt_disable_package_version_check TRUE)
|
||||
endif()
|
||||
|
||||
# Extra CMake code begin
|
||||
@extra_code@
|
||||
# Extra CMake code end
|
||||
|
||||
if((NOT PACKAGE_VERSION_COMPATIBLE) OR PACKAGE_VERSION_UNSUITABLE)
|
||||
set(__qt_package_version_incompatible TRUE)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# Returns the minimum supported CMake version required to /build/ Qt as originally advertised by Qt.
|
||||
function(qt_internal_get_supported_min_cmake_version_for_building_qt out_var)
|
||||
if(NOT DEFINED BUILD_SHARED_LIBS)
|
||||
@ -11,6 +14,8 @@ function(qt_internal_get_supported_min_cmake_version_for_building_qt out_var)
|
||||
set(supported_version "${QT_SUPPORTED_MIN_CMAKE_VERSION_FOR_BUILDING_QT}")
|
||||
|
||||
# We're building qtbase so the values come from .cmake.conf.
|
||||
elseif(APPLE)
|
||||
set(supported_version "${QT_SUPPORTED_MIN_CMAKE_VERSION_FOR_BUILDING_QT_APPLE}")
|
||||
elseif(BUILD_SHARED_LIBS)
|
||||
set(supported_version "${QT_SUPPORTED_MIN_CMAKE_VERSION_FOR_BUILDING_QT_SHARED}")
|
||||
else()
|
||||
@ -27,7 +32,9 @@ function(qt_internal_get_supported_min_cmake_version_for_using_qt out_var)
|
||||
"It should have been set by this point.")
|
||||
endif()
|
||||
|
||||
if(BUILD_SHARED_LIBS)
|
||||
if(APPLE)
|
||||
set(supported_version "${QT_SUPPORTED_MIN_CMAKE_VERSION_FOR_USING_QT_APPLE}")
|
||||
elseif(BUILD_SHARED_LIBS)
|
||||
set(supported_version "${QT_SUPPORTED_MIN_CMAKE_VERSION_FOR_USING_QT_SHARED}")
|
||||
else()
|
||||
set(supported_version "${QT_SUPPORTED_MIN_CMAKE_VERSION_FOR_USING_QT_STATIC}")
|
||||
@ -195,19 +202,6 @@ function(qt_internal_warn_about_buggy_cmake_versions)
|
||||
# Fixed in 3.21.2.
|
||||
list(APPEND unsuitable_versions "3.21.1")
|
||||
|
||||
# qt_ensure_perl fails to find perl in host PATH via find_program
|
||||
# due to Android Platform module setting CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH to OFF
|
||||
# Fixed in 3.20.6, 3.21.3. not a problem in CMake versions earlier than 3.20.0
|
||||
# https://gitlab.kitware.com/cmake/cmake/-/issues/22634
|
||||
# https://gitlab.kitware.com/cmake/cmake/-/merge_requests/5357
|
||||
# https://gitlab.kitware.com/cmake/cmake/-/merge_requests/6528
|
||||
if(ANDROID AND CMAKE_HOST_WIN32)
|
||||
list(APPEND unsuitable_versions
|
||||
"3.20.0" "3.20.1" "3.20.2" "3.20.3" "3.20.4" "3.20.5"
|
||||
"3.21.0" "3.21.1" "3.21.2"
|
||||
)
|
||||
endif()
|
||||
|
||||
foreach(unsuitable_version ${unsuitable_versions})
|
||||
if(CMAKE_VERSION VERSION_EQUAL unsuitable_version)
|
||||
message(WARNING
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# Enable compiler warnings by default. All compilers except MSVC support -Wall -Wextra
|
||||
#
|
||||
# You can disable the warnings for specific targets (for instance containing 3rd party code)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
if (MSVC)
|
||||
if (QT_64BIT)
|
||||
# SSE2 is mandatory on 64-bit mode, so skip the option. It triggers:
|
||||
@ -13,7 +16,6 @@ if (MSVC)
|
||||
set(QT_CFLAGS_AESNI "${QT_CFLAGS_SSE2}")
|
||||
set(QT_CFLAGS_SHANI "${QT_CFLAGS_SSE2}")
|
||||
|
||||
# FIXME to be Visual Studio version specific, like in mkspecs/common/msvc-version.conf
|
||||
set(QT_CFLAGS_AVX "-arch:AVX")
|
||||
set(QT_CFLAGS_AVX2 "-arch:AVX2")
|
||||
set(QT_CFLAGS_F16C "-arch:AVX")
|
||||
@ -71,7 +73,7 @@ endif()
|
||||
# TODO: Missing mkspecs flags we don't handle below: win32-clang-g++, win32-clang-msvc, rtems-base
|
||||
#
|
||||
# gcc and clang base
|
||||
if(GCC OR CLANG AND NOT WASM)
|
||||
if(GCC OR CLANG)
|
||||
set(QT_CFLAGS_OPTIMIZE "-O2")
|
||||
set(QT_CFLAGS_OPTIMIZE_FULL "-O3")
|
||||
set(QT_CFLAGS_OPTIMIZE_DEBUG "-Og")
|
||||
@ -90,10 +92,10 @@ endif()
|
||||
|
||||
# Windows MSVC
|
||||
if(MSVC)
|
||||
set(QT_CFLAGS_OPTIMIZE "-O2")
|
||||
set(QT_CFLAGS_OPTIMIZE "-O2 -Ob3") # -Ob3 was introduced in Visual Studio 2019 version 16.0
|
||||
set(QT_CFLAGS_OPTIMIZE_DEBUG "-Od")
|
||||
set(QT_CFLAGS_OPTIMIZE_SIZE "-O1")
|
||||
set(QT_CFLAGS_OPTIMIZE_VALID_VALUES "/O2" "/O1" "/Od" "/Ob0" "/Ob1" "/Ob2" "/O0" "-O0")
|
||||
set(QT_CFLAGS_OPTIMIZE_VALID_VALUES "/O2" "/O1" "/Od" "/Ob0" "/Ob1" "/Ob2" "/Ob3" "/O0" "-O0")
|
||||
|
||||
if(CLANG)
|
||||
set(QT_CFLAGS_OPTIMIZE_FULL "/clang:-O3")
|
||||
@ -119,12 +121,8 @@ if (QCC)
|
||||
set(QT_CFLAGS_OPTIMIZE_FULL "-O3")
|
||||
endif()
|
||||
|
||||
# Emscripten Clang
|
||||
if(WASM)
|
||||
set(QT_CFLAGS_OPTIMIZE "-O2")
|
||||
set(QT_CFLAGS_OPTIMIZE_FULL "-O3")
|
||||
set(QT_CFLAGS_OPTIMIZE_SIZE "-Os")
|
||||
set(QT_CFLAGS_OPTIMIZE_DEBUG "-g2")
|
||||
|
||||
set(QT_CFLAGS_SSE2 -O2 -msimd128 -msse -msse2)
|
||||
|
||||
set(QT_CFLAGS_OPTIMIZE_DEBUG "-O2 -g") # -Og is not supported
|
||||
set(QT_CFLAGS_SSE2 "-O2 -msimd128 -msse -msse2")
|
||||
endif()
|
||||
|
@ -29,84 +29,14 @@ list(APPEND CMAKE_MODULE_PATH "${_qt_import_prefix}")
|
||||
list(APPEND CMAKE_MODULE_PATH "${_qt_import_prefix}/3rdparty/extra-cmake-modules/find-modules")
|
||||
list(APPEND CMAKE_MODULE_PATH "${_qt_import_prefix}/3rdparty/kwin")
|
||||
|
||||
if(APPLE AND (NOT CMAKE_SYSTEM_NAME OR CMAKE_SYSTEM_NAME STREQUAL "Darwin"))
|
||||
# Add module directory to pick up custom Info.plist template for macOS
|
||||
list(APPEND CMAKE_MODULE_PATH "${_qt_import_prefix}/macos")
|
||||
elseif(APPLE AND CMAKE_SYSTEM_NAME STREQUAL "iOS")
|
||||
# Add module directory to pick up custom Info.plist template for iOS
|
||||
set(__qt_internal_cmake_ios_support_files_path "${_qt_import_prefix}/ios")
|
||||
list(APPEND CMAKE_MODULE_PATH "${__qt_internal_cmake_ios_support_files_path}")
|
||||
if(APPLE)
|
||||
if(NOT CMAKE_SYSTEM_NAME OR CMAKE_SYSTEM_NAME STREQUAL "Darwin")
|
||||
set(__qt_internal_cmake_apple_support_files_path "${_qt_import_prefix}/macos")
|
||||
elseif(CMAKE_SYSTEM_NAME STREQUAL "iOS")
|
||||
set(__qt_internal_cmake_apple_support_files_path "${_qt_import_prefix}/ios")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
set(QT_ADDITIONAL_PACKAGES_PREFIX_PATH "" CACHE STRING
|
||||
"Additional directories where find(Qt6 ...) components are searched")
|
||||
set(QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH "" CACHE STRING
|
||||
"Additional directories where find(Qt6 ...) host Qt components are searched")
|
||||
|
||||
# Collect additional package prefix paths to look for Qt packages, both from command line and the
|
||||
# env variable ${prefixes_var}. The result is stored in ${out_var} and is a list of paths ending
|
||||
# with "/lib/cmake".
|
||||
function(__qt_internal_collect_additional_prefix_paths out_var prefixes_var)
|
||||
if(DEFINED "${out_var}")
|
||||
return()
|
||||
endif()
|
||||
|
||||
set(additional_packages_prefix_paths "")
|
||||
|
||||
set(additional_packages_prefixes "")
|
||||
if(${prefixes_var})
|
||||
list(APPEND additional_packages_prefixes ${${prefixes_var}})
|
||||
endif()
|
||||
if(DEFINED ENV{${prefixes_var}}
|
||||
AND NOT "$ENV{${prefixes_var}}" STREQUAL "")
|
||||
set(prefixes_from_env "$ENV{${prefixes_var}}")
|
||||
if(NOT CMAKE_HOST_WIN32)
|
||||
string(REPLACE ":" ";" prefixes_from_env "${prefixes_from_env}")
|
||||
endif()
|
||||
list(APPEND additional_packages_prefixes ${prefixes_from_env})
|
||||
endif()
|
||||
|
||||
foreach(additional_path IN LISTS additional_packages_prefixes)
|
||||
file(TO_CMAKE_PATH "${additional_path}" additional_path)
|
||||
|
||||
# The prefix paths need to end with lib/cmake to ensure the packages are found when
|
||||
# cross compiling. Search for REROOT_PATH_ISSUE_MARKER in the qt.toolchain.cmake file for
|
||||
# details.
|
||||
# We must pass the values via the PATHS options because the main find_package call uses
|
||||
# NO_DEFAULT_PATH, and thus CMAKE_PREFIX_PATH values are discarded.
|
||||
# CMAKE_FIND_ROOT_PATH values are not discarded and togegher with the PATHS option, it
|
||||
# ensures packages from additional prefixes are found.
|
||||
if(NOT additional_path MATCHES "/lib/cmake$")
|
||||
string(APPEND additional_path "/lib/cmake")
|
||||
endif()
|
||||
list(APPEND additional_packages_prefix_paths "${additional_path}")
|
||||
endforeach()
|
||||
|
||||
set("${out_var}" "${additional_packages_prefix_paths}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
__qt_internal_collect_additional_prefix_paths(_qt_additional_packages_prefix_paths
|
||||
QT_ADDITIONAL_PACKAGES_PREFIX_PATH)
|
||||
__qt_internal_collect_additional_prefix_paths(_qt_additional_host_packages_prefix_paths
|
||||
QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH)
|
||||
|
||||
# Take a list of prefix paths ending with "/lib/cmake", and return a list of absolute paths with
|
||||
# "/lib/cmake" removed.
|
||||
function(__qt_internal_prefix_paths_to_roots out_var prefix_paths)
|
||||
set(result "")
|
||||
foreach(path IN LISTS prefix_paths)
|
||||
if(path MATCHES "/lib/cmake$")
|
||||
string(APPEND path "/../..")
|
||||
endif()
|
||||
get_filename_component(path "${path}" ABSOLUTE)
|
||||
list(APPEND result "${path}")
|
||||
endforeach()
|
||||
set("${out_var}" "${result}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
__qt_internal_prefix_paths_to_roots(_qt_additional_host_packages_root_paths
|
||||
"${_qt_additional_host_packages_prefix_paths}")
|
||||
|
||||
# Public helpers available to all Qt packages.
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/QtFeature.cmake")
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/QtPublicAppleHelpers.cmake")
|
||||
@ -120,6 +50,19 @@ include("${CMAKE_CURRENT_LIST_DIR}/QtPublicTestHelpers.cmake")
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/QtPublicToolHelpers.cmake")
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/QtPublicCMakeHelpers.cmake")
|
||||
|
||||
set(QT_ADDITIONAL_PACKAGES_PREFIX_PATH "" CACHE STRING
|
||||
"Additional directories where find(Qt6 ...) components are searched")
|
||||
set(QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH "" CACHE STRING
|
||||
"Additional directories where find(Qt6 ...) host Qt components are searched")
|
||||
|
||||
__qt_internal_collect_additional_prefix_paths(_qt_additional_packages_prefix_paths
|
||||
QT_ADDITIONAL_PACKAGES_PREFIX_PATH)
|
||||
__qt_internal_collect_additional_prefix_paths(_qt_additional_host_packages_prefix_paths
|
||||
QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH)
|
||||
|
||||
__qt_internal_prefix_paths_to_roots(_qt_additional_host_packages_root_paths
|
||||
"${_qt_additional_host_packages_prefix_paths}")
|
||||
|
||||
if(NOT DEFINED QT_CMAKE_EXPORT_NAMESPACE)
|
||||
set(QT_CMAKE_EXPORT_NAMESPACE @QT_CMAKE_EXPORT_NAMESPACE@)
|
||||
endif()
|
||||
|
23
cmake/QtConfigureTimeExecutableCMakeLists.txt.in
Normal file
23
cmake/QtConfigureTimeExecutableCMakeLists.txt.in
Normal file
@ -0,0 +1,23 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
project(@configure_time_target@ LANGUAGES CXX)
|
||||
|
||||
set(packages "@packages@")
|
||||
set(defines @defines@)
|
||||
set(compile_options @compile_options@)
|
||||
set(link_options @link_options@)
|
||||
set(output_directory @output_directory@)
|
||||
|
||||
foreach(package IN LISTS packages)
|
||||
find_package(${package} REQUIRED)
|
||||
endforeach()
|
||||
|
||||
add_executable(@configure_time_target@ @win32@ @macosx_bundle@ @sources@)
|
||||
set_target_properties(@configure_time_target@ PROPERTIES
|
||||
INCLUDE_DIRECTORIES "@include_directories@"
|
||||
RUNTIME_OUTPUT_DIRECTORY "${output_directory}"
|
||||
)
|
||||
|
||||
target_compile_options(@configure_time_target@ PRIVATE ${compile_options})
|
||||
target_compile_definitions(@configure_time_target@ PRIVATE ${defines})
|
||||
target_link_options(@configure_time_target@ PRIVATE ${link_options})
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# copy_if_different works incorrect in Windows if file size if bigger than 2GB.
|
||||
# See https://gitlab.kitware.com/cmake/cmake/-/issues/23052 and QTBUG-99491 for details.
|
||||
|
||||
|
@ -1,6 +1,14 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# helper to set up a qdbusxml2cpp rule
|
||||
function(qt_create_qdbusxml2cpp_command target infile)
|
||||
qt_parse_all_arguments(arg "qt_create_qdbusxml2cpp_command" "ADAPTOR;INTERFACE" "BASENAME" "FLAGS" ${ARGN})
|
||||
cmake_parse_arguments(PARSE_ARGV 2 arg
|
||||
"ADAPTOR;INTERFACE"
|
||||
"BASENAME"
|
||||
"FLAGS")
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
if((arg_ADAPTOR AND arg_INTERFACE) OR (NOT arg_ADAPTOR AND NOT arg_INTERFACE))
|
||||
message(FATAL_ERROR "qt_create_dbusxml2cpp_command needs either ADAPTOR or INTERFACE.")
|
||||
endif()
|
||||
@ -52,6 +60,7 @@ function(qt_create_qdbusxml2cpp_command target infile)
|
||||
"${header_file}:${source_file}" "${absolute_in_file_path}"
|
||||
DEPENDS "${absolute_in_file_path}" ${QT_CMAKE_EXPORT_NAMESPACE}::qdbusxml2cpp
|
||||
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
|
||||
COMMAND_EXPAND_LISTS
|
||||
VERBATIM)
|
||||
|
||||
target_sources("${target}" PRIVATE
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# Defers the connection 'dependent' -> 'dependency'
|
||||
#
|
||||
# The actual connection can be made by calling qt_internal_add_deferred_dependencies.
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# This function adds a dependency between a doc-generating target like 'generate_docs_Gui'
|
||||
# and the necessary tool target like 'qdoc'.
|
||||
#
|
||||
@ -25,7 +28,7 @@ function(qt_internal_add_docs)
|
||||
set(target ${ARGV0})
|
||||
set(doc_project ${ARGV1})
|
||||
|
||||
# If a target is not built (which can happen for tools when crosscompiling, we shouldn't try
|
||||
# If a target is not built (which can happen for tools when crosscompiling), we shouldn't try
|
||||
# to generate docs.
|
||||
if(NOT TARGET "${target}")
|
||||
return()
|
||||
@ -137,6 +140,10 @@ function(qt_internal_add_docs)
|
||||
)
|
||||
|
||||
add_dependencies(prepare_docs_${target} qattributionsscanner_${target})
|
||||
if(NOT TARGET sync_all_public_headers)
|
||||
add_custom_target(sync_all_public_headers)
|
||||
endif()
|
||||
add_dependencies(prepare_docs_${target} sync_all_public_headers)
|
||||
|
||||
# generate docs target
|
||||
set(generate_qdoc_args
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# This function creates a CMake target for a generic console or GUI binary.
|
||||
# Please consider to use a more specific version target like the one created
|
||||
# by qt_add_test or qt_add_tool below.
|
||||
@ -9,11 +12,11 @@
|
||||
# Qt::Core or Qt::Bootstrap libraries. Otherwise the Qt::Core library will be publicly
|
||||
# linked to the executable target by default.
|
||||
function(qt_internal_add_executable name)
|
||||
qt_parse_all_arguments(arg "qt_internal_add_executable"
|
||||
cmake_parse_arguments(PARSE_ARGV 1 arg
|
||||
"${__qt_internal_add_executable_optional_args}"
|
||||
"${__qt_internal_add_executable_single_args}"
|
||||
"${__qt_internal_add_executable_multi_args}"
|
||||
${ARGN})
|
||||
"${__qt_internal_add_executable_multi_args}")
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
if ("x${arg_OUTPUT_DIRECTORY}" STREQUAL "x")
|
||||
set(arg_OUTPUT_DIRECTORY "${QT_BUILD_DIR}/${INSTALL_BINDIR}")
|
||||
@ -27,6 +30,7 @@ function(qt_internal_add_executable name)
|
||||
endif()
|
||||
|
||||
_qt_internal_create_executable(${name})
|
||||
qt_internal_mark_as_internal_target(${name})
|
||||
if(ANDROID)
|
||||
_qt_internal_android_executable_finalizer(${name})
|
||||
endif()
|
||||
@ -36,11 +40,6 @@ function(qt_internal_add_executable name)
|
||||
PROPERTY EXCLUDE_FROM_ALL "$<NOT:$<CONFIG:${QT_MULTI_CONFIG_FIRST_CONFIG}>>")
|
||||
endif()
|
||||
|
||||
if(WASM)
|
||||
qt_internal_wasm_add_finalizers("${name}")
|
||||
_qt_internal_wasm_add_target_helpers("${name}")
|
||||
endif()
|
||||
|
||||
if (arg_VERSION)
|
||||
if(arg_VERSION MATCHES "[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+")
|
||||
# nothing to do
|
||||
@ -66,12 +65,12 @@ function(qt_internal_add_executable name)
|
||||
QT_DELAYED_TARGET_COPYRIGHT "${arg_TARGET_COPYRIGHT}"
|
||||
)
|
||||
else()
|
||||
if("${arg_TARGET_DESCRIPTION}" STREQUAL "")
|
||||
if(NOT arg_TARGET_DESCRIPTION)
|
||||
set(arg_TARGET_DESCRIPTION "Qt ${name}")
|
||||
endif()
|
||||
qt_set_target_info_properties(${name} ${ARGN}
|
||||
TARGET_DESCRIPTION "${arg_TARGET_DESCRIPTION}"
|
||||
TARGET_VERSION "${arg_VERSION}")
|
||||
TARGET_DESCRIPTION ${arg_TARGET_DESCRIPTION}
|
||||
TARGET_VERSION ${arg_VERSION})
|
||||
endif()
|
||||
|
||||
if (WIN32 AND NOT arg_DELAY_RC)
|
||||
@ -106,16 +105,34 @@ function(qt_internal_add_executable name)
|
||||
${arg_INCLUDE_DIRECTORIES}
|
||||
)
|
||||
|
||||
if(arg_PUBLIC_LIBRARIES)
|
||||
message(WARNING
|
||||
"qt_internal_add_executable's PUBLIC_LIBRARIES option is deprecated, and will be "
|
||||
"removed in a future Qt version. Use the LIBRARIES option instead.")
|
||||
endif()
|
||||
|
||||
if(arg_NO_UNITY_BUILD)
|
||||
set(arg_NO_UNITY_BUILD "NO_UNITY_BUILD")
|
||||
else()
|
||||
set(arg_NO_UNITY_BUILD "")
|
||||
endif()
|
||||
|
||||
qt_internal_extend_target("${name}"
|
||||
${arg_NO_UNITY_BUILD}
|
||||
SOURCES ${arg_SOURCES}
|
||||
NO_PCH_SOURCES ${arg_NO_PCH_SOURCES}
|
||||
NO_UNITY_BUILD_SOURCES ${arg_NO_UNITY_BUILD_SOURCES}
|
||||
INCLUDE_DIRECTORIES ${private_includes}
|
||||
DEFINES ${arg_DEFINES}
|
||||
LIBRARIES ${arg_LIBRARIES} Qt::PlatformCommonInternal
|
||||
PUBLIC_LIBRARIES ${extra_libraries} ${arg_PUBLIC_LIBRARIES}
|
||||
DBUS_ADAPTOR_SOURCES "${arg_DBUS_ADAPTOR_SOURCES}"
|
||||
DBUS_ADAPTOR_FLAGS "${arg_DBUS_ADAPTOR_FLAGS}"
|
||||
DBUS_INTERFACE_SOURCES "${arg_DBUS_INTERFACE_SOURCES}"
|
||||
DBUS_INTERFACE_FLAGS "${arg_DBUS_INTERFACE_FLAGS}"
|
||||
LIBRARIES
|
||||
${arg_LIBRARIES}
|
||||
${arg_PUBLIC_LIBRARIES}
|
||||
Qt::PlatformCommonInternal
|
||||
${extra_libraries}
|
||||
DBUS_ADAPTOR_SOURCES ${arg_DBUS_ADAPTOR_SOURCES}
|
||||
DBUS_ADAPTOR_FLAGS ${arg_DBUS_ADAPTOR_FLAGS}
|
||||
DBUS_INTERFACE_SOURCES ${arg_DBUS_INTERFACE_SOURCES}
|
||||
DBUS_INTERFACE_FLAGS ${arg_DBUS_INTERFACE_FLAGS}
|
||||
COMPILE_OPTIONS ${arg_COMPILE_OPTIONS}
|
||||
LINK_OPTIONS ${arg_LINK_OPTIONS}
|
||||
MOC_OPTIONS ${arg_MOC_OPTIONS}
|
||||
@ -129,7 +146,16 @@ function(qt_internal_add_executable name)
|
||||
MACOSX_BUNDLE "${arg_GUI}"
|
||||
)
|
||||
|
||||
if(WASM)
|
||||
# WASM unconditionally sets DISABLE_EXCEPTION_CATCHING=1
|
||||
qt_internal_set_exceptions_flags("${name}" FALSE)
|
||||
else()
|
||||
qt_internal_set_exceptions_flags("${name}" ${arg_EXCEPTIONS})
|
||||
endif()
|
||||
|
||||
if(WASM)
|
||||
qt_internal_wasm_add_finalizers("${name}")
|
||||
endif()
|
||||
|
||||
# Check if target needs to be excluded from all target. Also affects qt_install.
|
||||
# Set by qt_exclude_tool_directories_from_default_target.
|
||||
@ -195,8 +221,7 @@ function(qt_internal_add_executable name)
|
||||
add_dependencies("${name}" qpa_default_plugins)
|
||||
endif()
|
||||
|
||||
if(NOT BUILD_SHARED_LIBS)
|
||||
# For static builds, we need to explicitly link to plugins we want to be
|
||||
# For static plugins, we need to explicitly link to plugins we want to be
|
||||
# loaded with the executable. User projects get that automatically, but
|
||||
# for tools built as part of Qt, we can't use that mechanism because it
|
||||
# would pollute the targets we export as part of an install and lead to
|
||||
@ -283,5 +308,227 @@ Q_IMPORT_PLUGIN($<JOIN:${class_names},)\nQ_IMPORT_PLUGIN(>)
|
||||
"$<TARGET_PROPERTY:${lib},_qt_initial_repo_plugins>"
|
||||
"$<TARGET_PROPERTY:${lib},${prop_prefix}_plugins>")
|
||||
endforeach()
|
||||
|
||||
endfunction()
|
||||
|
||||
# This function compiles the target at configure time the very first time and creates the custom
|
||||
# ${target}_build that re-runs compilation at build time if necessary. The resulting executable is
|
||||
# imported under the provided target name. This function should only be used to compile tiny
|
||||
# executables with system dependencies only.
|
||||
# One-value Arguments:
|
||||
# CMAKELISTS_TEMPLATE
|
||||
# The CMakeLists.txt templated that is used to configure the project
|
||||
# for an executable. By default the predefined template from the Qt installation is used.
|
||||
# INSTALL_DIRECTORY
|
||||
# installation directory of the executable. Ignored if NO_INSTALL is set.
|
||||
# OUTPUT_NAME
|
||||
# the output name of an executable
|
||||
# CONFIG
|
||||
# the name of configuration that tool needs to be build with.
|
||||
# Multi-value Arguments:
|
||||
# PACKAGES
|
||||
# list of system packages are required to successfully build the project.
|
||||
# INCLUDES
|
||||
# list of include directories are required to successfully build the project.
|
||||
# DEFINES
|
||||
# list of definitions are required to successfully build the project.
|
||||
# COMPILE_OPTIONS
|
||||
# list of compiler options are required to successfully build the project.
|
||||
# LINK_OPTIONS
|
||||
# list of linker options are required to successfully build the project.
|
||||
# SOURCES
|
||||
# list of project sources.
|
||||
# CMAKE_FLAGS
|
||||
# specify flags of the form -DVAR:TYPE=VALUE to be passed to the cmake command-line used to
|
||||
# drive the test build.
|
||||
# Options:
|
||||
# WIN32
|
||||
# reflects the corresponding add_executable argument.
|
||||
# MACOSX_BUNDLE
|
||||
# reflects the corresponding add_executable argument.
|
||||
# NO_INSTALL
|
||||
# avoids installing the tool.
|
||||
function(qt_internal_add_configure_time_executable target)
|
||||
set(one_value_args
|
||||
CMAKELISTS_TEMPLATE
|
||||
INSTALL_DIRECTORY
|
||||
OUTPUT_NAME
|
||||
CONFIG
|
||||
)
|
||||
set(multi_value_args
|
||||
PACKAGES
|
||||
INCLUDES
|
||||
DEFINES
|
||||
COMPILE_OPTIONS
|
||||
LINK_OPTIONS
|
||||
SOURCES
|
||||
CMAKE_FLAGS
|
||||
)
|
||||
set(option_args WIN32 MACOSX_BUNDLE NO_INSTALL)
|
||||
cmake_parse_arguments(PARSE_ARGV 1 arg
|
||||
"${option_args}" "${one_value_args}" "${multi_value_args}")
|
||||
|
||||
set(target_binary_dir "${CMAKE_CURRENT_BINARY_DIR}/configure_time_bins")
|
||||
if(arg_CONFIG)
|
||||
set(CMAKE_TRY_COMPILE_CONFIGURATION "${arg_CONFIG}")
|
||||
string(TOUPPER "_${arg_CONFIG}" config_suffix)
|
||||
endif()
|
||||
|
||||
get_cmake_property(is_multi_config GENERATOR_IS_MULTI_CONFIG)
|
||||
if(is_multi_config AND CMAKE_TRY_COMPILE_CONFIGURATION)
|
||||
set(configuration_path "${CMAKE_TRY_COMPILE_CONFIGURATION}/")
|
||||
set(config_build_arg "--config" "${CMAKE_TRY_COMPILE_CONFIGURATION}")
|
||||
endif()
|
||||
|
||||
set(configure_time_target "${target}")
|
||||
if(arg_OUTPUT_NAME)
|
||||
set(configure_time_target "${arg_OUTPUT_NAME}")
|
||||
endif()
|
||||
set(target_binary "${configure_time_target}${CMAKE_EXECUTABLE_SUFFIX}")
|
||||
|
||||
set(install_dir "${INSTALL_BINDIR}")
|
||||
if(arg_INSTALL_DIRECTORY)
|
||||
set(install_dir "${arg_INSTALL_DIRECTORY}")
|
||||
endif()
|
||||
set(output_directory "${QT_BUILD_DIR}/${install_dir}")
|
||||
set(target_binary_path
|
||||
"${output_directory}/${configuration_path}${target_binary}")
|
||||
get_filename_component(target_binary_path "${target_binary_path}" ABSOLUTE)
|
||||
|
||||
if(NOT DEFINED arg_SOURCES)
|
||||
message(FATAL_ERROR "No SOURCES given to target: ${target}")
|
||||
endif()
|
||||
set(sources "${arg_SOURCES}")
|
||||
|
||||
# Timestamp file is required because CMake ignores 'add_custom_command' if we use only the
|
||||
# binary file as the OUTPUT.
|
||||
set(timestamp_file "${target_binary_dir}/${target_binary}_timestamp")
|
||||
add_custom_command(OUTPUT "${target_binary_path}" "${timestamp_file}"
|
||||
COMMAND
|
||||
${CMAKE_COMMAND} --build "${target_binary_dir}" --clean-first ${config_build_arg}
|
||||
COMMAND
|
||||
${CMAKE_COMMAND} -E touch "${timestamp_file}"
|
||||
DEPENDS
|
||||
${sources}
|
||||
COMMENT
|
||||
"Compiling ${target}"
|
||||
VERBATIM
|
||||
)
|
||||
|
||||
add_custom_target(${target}_build ALL
|
||||
DEPENDS
|
||||
"${target_binary_path}"
|
||||
"${timestamp_file}"
|
||||
)
|
||||
|
||||
set(should_build_at_configure_time TRUE)
|
||||
if(QT_INTERNAL_HAVE_CONFIGURE_TIME_${target} AND
|
||||
EXISTS "${target_binary_path}" AND EXISTS "${timestamp_file}")
|
||||
set(last_ts 0)
|
||||
foreach(source IN LISTS sources)
|
||||
file(TIMESTAMP "${source}" ts "%s")
|
||||
if(${ts} GREATER ${last_ts})
|
||||
set(last_ts ${ts})
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
file(TIMESTAMP "${target_binary_path}" ts "%s")
|
||||
if(${ts} GREATER_EQUAL ${last_ts})
|
||||
set(should_build_at_configure_time FALSE)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
set(cmake_flags_arg "")
|
||||
if(arg_CMAKE_FLAGS)
|
||||
set(cmake_flags_arg CMAKE_FLAGS "${arg_CMAKE_FLAGS}")
|
||||
endif()
|
||||
|
||||
qt_internal_get_enabled_languages_for_flag_manipulation(enabled_languages)
|
||||
foreach(lang IN LISTS enabled_languages)
|
||||
set(compiler_flags_var "CMAKE_${lang}_FLAGS")
|
||||
list(APPEND cmake_flags_arg "-D${compiler_flags_var}:STRING=${${compiler_flags_var}}")
|
||||
if(arg_CONFIG)
|
||||
set(compiler_flags_var_config "${compiler_flags_var}${config_suffix}")
|
||||
list(APPEND cmake_flags_arg
|
||||
"-D${compiler_flags_var_config}:STRING=${${compiler_flags_var_config}}")
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
qt_internal_get_target_link_types_for_flag_manipulation(target_link_types)
|
||||
foreach(linker_type IN LISTS target_link_types)
|
||||
set(linker_flags_var "CMAKE_${linker_type}_LINKER_FLAGS")
|
||||
list(APPEND cmake_flags_arg "-D${linker_flags_var}:STRING=${${linker_flags_var}}")
|
||||
if(arg_CONFIG)
|
||||
set(linker_flags_var_config "${linker_flags_var}${config_suffix}")
|
||||
list(APPEND cmake_flags_arg
|
||||
"-D${linker_flags_var_config}:STRING=${${linker_flags_var_config}}")
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
if(NOT "${QT_INTERNAL_CMAKE_FLAGS_CONFIGURE_TIME_TOOL_${target}}" STREQUAL "${cmake_flags_arg}")
|
||||
set(should_build_at_configure_time TRUE)
|
||||
endif()
|
||||
|
||||
if(should_build_at_configure_time)
|
||||
foreach(arg IN LISTS multi_value_args)
|
||||
string(TOLOWER "${arg}" template_arg_name)
|
||||
set(${template_arg_name} "")
|
||||
if(DEFINED arg_${arg})
|
||||
set(${template_arg_name} "${arg_${arg}}")
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
foreach(arg IN LISTS option_args)
|
||||
string(TOLOWER "${arg}" template_arg_name)
|
||||
set(${template_arg_name} "")
|
||||
if(arg_${arg})
|
||||
set(${template_arg_name} "${arg}")
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
file(MAKE_DIRECTORY "${target_binary_dir}")
|
||||
set(template "${QT_CMAKE_DIR}/QtConfigureTimeExecutableCMakeLists.txt.in")
|
||||
if(DEFINED arg_CMAKELISTS_TEMPLATE)
|
||||
set(template "${arg_CMAKELISTS_TEMPLATE}")
|
||||
endif()
|
||||
|
||||
configure_file("${template}" "${target_binary_dir}/CMakeLists.txt" @ONLY)
|
||||
|
||||
if(EXISTS "${target_binary_dir}/CMakeCache.txt")
|
||||
file(REMOVE "${target_binary_dir}/CMakeCache.txt")
|
||||
endif()
|
||||
|
||||
try_compile(result
|
||||
"${target_binary_dir}"
|
||||
"${target_binary_dir}"
|
||||
${target}
|
||||
${cmake_flags_arg}
|
||||
OUTPUT_VARIABLE try_compile_output
|
||||
)
|
||||
|
||||
set(QT_INTERNAL_CMAKE_FLAGS_CONFIGURE_TIME_TOOL_${target}
|
||||
"${cmake_flags_arg}" CACHE INTERNAL "")
|
||||
|
||||
file(WRITE "${timestamp_file}" "")
|
||||
set(QT_INTERNAL_HAVE_CONFIGURE_TIME_${target} ${result} CACHE INTERNAL
|
||||
"Indicates that the configure-time target ${target} was built")
|
||||
if(NOT result)
|
||||
message(FATAL_ERROR "Unable to build ${target}: ${try_compile_output}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
add_executable(${target} IMPORTED GLOBAL)
|
||||
add_executable(${QT_CMAKE_EXPORT_NAMESPACE}::${target} ALIAS ${target})
|
||||
set_target_properties(${target} PROPERTIES
|
||||
_qt_internal_configure_time_target TRUE
|
||||
IMPORTED_LOCATION "${target_binary_path}")
|
||||
|
||||
if(NOT arg_NO_INSTALL)
|
||||
set_target_properties(${target} PROPERTIES
|
||||
_qt_internal_configure_time_target_install_location
|
||||
"${install_dir}/${target_binary}"
|
||||
)
|
||||
qt_path_join(target_install_dir ${QT_INSTALL_DIR} ${install_dir})
|
||||
qt_install(PROGRAMS "${target_binary_path}" DESTINATION "${target_install_dir}")
|
||||
endif()
|
||||
endfunction()
|
||||
|
@ -1,10 +1,15 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
include(QtFeatureCommon)
|
||||
include(CheckCXXCompilerFlag)
|
||||
|
||||
function(qt_feature_module_begin)
|
||||
qt_parse_all_arguments(arg "qt_feature_module_begin"
|
||||
cmake_parse_arguments(PARSE_ARGV 0 arg
|
||||
"NO_MODULE;ONLY_EVALUATE_FEATURES"
|
||||
"LIBRARY;PRIVATE_FILE;PUBLIC_FILE" "PUBLIC_DEPENDENCIES;PRIVATE_DEPENDENCIES" ${ARGN})
|
||||
"LIBRARY;PRIVATE_FILE;PUBLIC_FILE"
|
||||
"PUBLIC_DEPENDENCIES;PRIVATE_DEPENDENCIES")
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
if(NOT arg_ONLY_EVALUATE_FEATURES)
|
||||
if ("${arg_LIBRARY}" STREQUAL "" AND (NOT ${arg_NO_MODULE}))
|
||||
@ -43,9 +48,11 @@ function(qt_feature feature)
|
||||
qt_feature_normalize_name("${feature}" feature)
|
||||
set_property(GLOBAL PROPERTY QT_FEATURE_ORIGINAL_NAME_${feature} "${original_name}")
|
||||
|
||||
qt_parse_all_arguments(arg "qt_feature"
|
||||
cmake_parse_arguments(PARSE_ARGV 1 arg
|
||||
"PRIVATE;PUBLIC"
|
||||
"LABEL;PURPOSE;SECTION;" "AUTODETECT;CONDITION;ENABLE;DISABLE;EMIT_IF" ${ARGN})
|
||||
"LABEL;PURPOSE;SECTION"
|
||||
"AUTODETECT;CONDITION;ENABLE;DISABLE;EMIT_IF")
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
set(_QT_FEATURE_DEFINITION_${feature} ${ARGN} PARENT_SCOPE)
|
||||
|
||||
@ -170,15 +177,20 @@ function(qt_evaluate_config_expression resultVar)
|
||||
set(${resultVar} ${result} PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
function(_qt_internal_get_feature_condition_keywords out_var)
|
||||
set(keywords "EQUAL" "LESS" "LESS_EQUAL" "GREATER" "GREATER_EQUAL" "STREQUAL" "STRLESS"
|
||||
"STRLESS_EQUAL" "STRGREATER" "STRGREATER_EQUAL" "VERSION_EQUAL" "VERSION_LESS"
|
||||
"VERSION_LESS_EQUAL" "VERSION_GREATER" "VERSION_GREATER_EQUAL" "MATCHES"
|
||||
"EXISTS" "COMMAND" "DEFINED" "NOT" "AND" "OR" "TARGET" "EXISTS" "IN_LIST" "(" ")")
|
||||
set(${out_var} "${keywords}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
function(_qt_internal_dump_expression_values expression_dump expression)
|
||||
set(dump "")
|
||||
set(skipNext FALSE)
|
||||
set(isTargetExpression FALSE)
|
||||
|
||||
set(keywords "EQUAL" "LESS" "LESS_EQUAL" "GREATER" "GREATER_EQUAL" "STREQUAL" "STRLESS"
|
||||
"STRLESS_EQUAL" "STRGREATER" "STRGREATER_EQUAL" "VERSION_EQUAL" "VERSION_LESS"
|
||||
"VERSION_LESS_EQUAL" "VERSION_GREATER" "VERSION_GREATER_EQUAL" "MATCHES"
|
||||
"EXISTS" "COMMAND" "DEFINED" "NOT" "AND" "OR" "TARGET" "EXISTS" "IN_LIST" "(" ")")
|
||||
_qt_internal_get_feature_condition_keywords(keywords)
|
||||
|
||||
list(LENGTH expression length)
|
||||
math(EXPR length "${length}-1")
|
||||
@ -232,19 +244,44 @@ endfunction()
|
||||
# ${computed} is also stored when reconfiguring and the condition does not align with the user
|
||||
# provided value.
|
||||
#
|
||||
function(qt_feature_check_and_save_user_provided_value resultVar feature condition computed label)
|
||||
function(qt_feature_check_and_save_user_provided_value
|
||||
resultVar feature condition condition_expression computed label)
|
||||
if (DEFINED "FEATURE_${feature}")
|
||||
# Revisit new user provided value
|
||||
set(user_value "${FEATURE_${feature}}")
|
||||
set(result "${user_value}")
|
||||
string(TOUPPER "${user_value}" user_value_upper)
|
||||
set(result "${user_value_upper}")
|
||||
|
||||
# If the build is marked as dirty and the user_value doesn't meet the new condition,
|
||||
# reset it to the computed one.
|
||||
# If ${feature} depends on another dirty feature, reset the ${feature} value to
|
||||
# ${computed}.
|
||||
get_property(dirty_build GLOBAL PROPERTY _qt_dirty_build)
|
||||
if(NOT condition AND result AND dirty_build)
|
||||
if(dirty_build)
|
||||
_qt_internal_feature_compute_feature_dependencies(deps "${feature}")
|
||||
if(deps)
|
||||
get_property(dirty_features GLOBAL PROPERTY _qt_dirty_features)
|
||||
foreach(dirty_feature ${dirty_features})
|
||||
if(dirty_feature IN_LIST deps AND NOT "${result}" STREQUAL "${computed}")
|
||||
set(result "${computed}")
|
||||
message(WARNING "Reset FEATURE_${feature} value to ${result}, because it doesn't \
|
||||
meet its condition after reconfiguration.")
|
||||
message(WARNING
|
||||
"Auto-resetting 'FEATURE_${feature}' from '${user_value_upper}' to "
|
||||
"'${computed}', "
|
||||
"because the dependent feature '${dirty_feature}' was marked dirty.")
|
||||
|
||||
# Append ${feature} as a new dirty feature.
|
||||
set_property(GLOBAL APPEND PROPERTY _qt_dirty_features "${feature}")
|
||||
break()
|
||||
endif()
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
# If the build is marked as dirty and the feature doesn't meet its condition,
|
||||
# reset its value to the computed one, which is likely OFF.
|
||||
if(NOT condition AND result)
|
||||
set(result "${computed}")
|
||||
message(WARNING "Resetting 'FEATURE_${feature}' from '${user_value_upper}' to "
|
||||
"'${computed}' because it doesn't meet its condition after reconfiguration. "
|
||||
"Condition expression is: '${condition_expression}'")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
set(bool_values OFF NO FALSE N ON YES TRUE Y)
|
||||
@ -292,6 +329,14 @@ condition:\n ${conditionString}\nCondition values dump:\n ${conditionDump}
|
||||
set(QT_KNOWN_FEATURES "${QT_KNOWN_FEATURES}" CACHE INTERNAL "" FORCE)
|
||||
endmacro()
|
||||
|
||||
macro(_qt_internal_parse_feature_definition feature)
|
||||
cmake_parse_arguments(arg
|
||||
"PRIVATE;PUBLIC"
|
||||
"LABEL;PURPOSE;SECTION;"
|
||||
"AUTODETECT;CONDITION;ENABLE;DISABLE;EMIT_IF"
|
||||
${_QT_FEATURE_DEFINITION_${feature}})
|
||||
endmacro()
|
||||
|
||||
|
||||
# The build system stores 2 CMake cache variables for each feature, to allow detecting value changes
|
||||
# during subsequent reconfigurations.
|
||||
@ -327,9 +372,7 @@ function(qt_evaluate_feature feature)
|
||||
message(FATAL_ERROR "Attempting to evaluate feature ${feature} but its definition is missing. Either the feature does not exist or a dependency to the module that defines it is missing")
|
||||
endif()
|
||||
|
||||
cmake_parse_arguments(arg
|
||||
"PRIVATE;PUBLIC"
|
||||
"LABEL;PURPOSE;SECTION;" "AUTODETECT;CONDITION;ENABLE;DISABLE;EMIT_IF" ${_QT_FEATURE_DEFINITION_${feature}})
|
||||
_qt_internal_parse_feature_definition("${feature}")
|
||||
|
||||
if("${arg_ENABLE}" STREQUAL "")
|
||||
set(arg_ENABLE OFF)
|
||||
@ -367,16 +410,7 @@ function(qt_evaluate_feature feature)
|
||||
qt_evaluate_config_expression(emit_if ${arg_EMIT_IF})
|
||||
endif()
|
||||
|
||||
# If FEATURE_ is not defined trying to use INPUT_ variable to enable/disable feature.
|
||||
if ((NOT DEFINED "FEATURE_${feature}") AND (DEFINED "INPUT_${feature}")
|
||||
AND (NOT "${INPUT_${feature}}" STREQUAL "undefined")
|
||||
AND (NOT "${INPUT_${feature}}" STREQUAL ""))
|
||||
if(INPUT_${feature})
|
||||
set(FEATURE_${feature} ON)
|
||||
else()
|
||||
set(FEATURE_${feature} OFF)
|
||||
endif()
|
||||
endif()
|
||||
qt_internal_compute_feature_value_from_possible_input("${feature}")
|
||||
|
||||
# Warn about a feature which is not emitted, but the user explicitly provided a value for it.
|
||||
if(NOT emit_if AND DEFINED FEATURE_${feature})
|
||||
@ -394,7 +428,8 @@ function(qt_evaluate_feature feature)
|
||||
# Only save the user provided value if the feature was emitted.
|
||||
if(emit_if)
|
||||
qt_feature_check_and_save_user_provided_value(
|
||||
saved_user_value "${feature}" "${condition}" "${computed}" "${arg_LABEL}")
|
||||
saved_user_value
|
||||
"${feature}" "${condition}" "${arg_CONDITION}" "${computed}" "${arg_LABEL}")
|
||||
else()
|
||||
# Make sure the feature internal value is OFF if not emitted.
|
||||
set(saved_user_value OFF)
|
||||
@ -407,9 +442,67 @@ function(qt_evaluate_feature feature)
|
||||
set(QT_FEATURE_LABEL_${feature} "${arg_LABEL}" CACHE INTERNAL "")
|
||||
endfunction()
|
||||
|
||||
# Collect feature names that ${feature} depends on, by inspecting the given expression.
|
||||
function(_qt_internal_feature_extract_feature_dependencies_from_expression out_var expression)
|
||||
list(LENGTH expression length)
|
||||
math(EXPR length "${length}-1")
|
||||
|
||||
if(length LESS 0)
|
||||
set(${out_var} "" PARENT_SCOPE)
|
||||
return()
|
||||
endif()
|
||||
|
||||
set(deps "")
|
||||
|
||||
foreach(memberIdx RANGE ${length})
|
||||
list(GET expression ${memberIdx} member)
|
||||
if(member MATCHES "^QT_FEATURE_(.+)")
|
||||
list(APPEND deps "${CMAKE_MATCH_1}")
|
||||
endif()
|
||||
endforeach()
|
||||
set(${out_var} "${deps}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
# Collect feature names that ${feature} depends on, based on feature names that appear
|
||||
# in the ${feature}'s condition expressions.
|
||||
function(_qt_internal_feature_compute_feature_dependencies out_var feature)
|
||||
# Only compute the deps once per feature.
|
||||
get_property(deps_computed GLOBAL PROPERTY _qt_feature_deps_computed_${feature})
|
||||
if(deps_computed)
|
||||
get_property(deps GLOBAL PROPERTY _qt_feature_deps_${feature})
|
||||
set(${out_var} "${deps}" PARENT_SCOPE)
|
||||
return()
|
||||
endif()
|
||||
|
||||
_qt_internal_parse_feature_definition("${feature}")
|
||||
|
||||
set(options_to_check AUTODETECT CONDITION ENABLE DISABLE EMIT_IF)
|
||||
set(deps "")
|
||||
|
||||
# Go through each option that takes condition expressions and collect the feature names.
|
||||
foreach(option ${options_to_check})
|
||||
set(option_value "${arg_${option}}")
|
||||
if(option_value)
|
||||
_qt_internal_feature_extract_feature_dependencies_from_expression(
|
||||
option_deps "${option_value}")
|
||||
if(option_deps)
|
||||
list(APPEND deps ${option_deps})
|
||||
endif()
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
set_property(GLOBAL PROPERTY _qt_feature_deps_computed_${feature} TRUE)
|
||||
set_property(GLOBAL PROPERTY _qt_feature_deps_${feature} "${deps}")
|
||||
set(${out_var} "${deps}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
function(qt_feature_config feature config_var_name)
|
||||
qt_feature_normalize_name("${feature}" feature)
|
||||
qt_parse_all_arguments(arg "qt_feature_config" "NEGATE" "NAME" "" ${ARGN})
|
||||
cmake_parse_arguments(PARSE_ARGV 2 arg
|
||||
"NEGATE"
|
||||
"NAME"
|
||||
"")
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
# Store all the config related info in a unique variable key.
|
||||
set(key_name "_QT_FEATURE_CONFIG_DEFINITION_${feature}_${config_var_name}")
|
||||
@ -469,7 +562,11 @@ endfunction()
|
||||
|
||||
function(qt_feature_definition feature name)
|
||||
qt_feature_normalize_name("${feature}" feature)
|
||||
qt_parse_all_arguments(arg "qt_feature_definition" "NEGATE" "VALUE;PREREQUISITE" "" ${ARGN})
|
||||
cmake_parse_arguments(PARSE_ARGV 2 arg
|
||||
"NEGATE"
|
||||
"VALUE;PREREQUISITE"
|
||||
"")
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
# Store all the define related info in a unique variable key.
|
||||
set(key_name "_QT_FEATURE_DEFINE_DEFINITION_${feature}_${name}")
|
||||
@ -525,7 +622,11 @@ function(qt_evaluate_feature_definition key)
|
||||
endfunction()
|
||||
|
||||
function(qt_extra_definition name value)
|
||||
qt_parse_all_arguments(arg "qt_extra_definition" "PUBLIC;PRIVATE" "" "" ${ARGN})
|
||||
cmake_parse_arguments(PARSE_ARGV 2 arg
|
||||
"PUBLIC;PRIVATE"
|
||||
""
|
||||
"")
|
||||
_qt_internal_validate_all_args_are_parsed(arg)
|
||||
|
||||
if (arg_PUBLIC)
|
||||
string(APPEND __QtFeature_public_extra "\n#define ${name} ${value}\n")
|
||||
@ -659,22 +760,6 @@ function(qt_feature_module_end)
|
||||
)
|
||||
endif()
|
||||
|
||||
# Extra header injections which have to have forwarding headers created by
|
||||
# qt_install_injections.
|
||||
# Skip creating forwarding headers if qt_feature_module_begin was called with NO_MODULE, aka
|
||||
# there is no include/<module_name> so there's no place to put the forwarding headers.
|
||||
if(__QtFeature_library)
|
||||
set(injections "")
|
||||
qt_compute_injection_forwarding_header("${__QtFeature_library}"
|
||||
SOURCE "${__QtFeature_public_file}"
|
||||
OUT_VAR injections)
|
||||
qt_compute_injection_forwarding_header("${__QtFeature_library}"
|
||||
SOURCE "${__QtFeature_private_file}" PRIVATE
|
||||
OUT_VAR injections)
|
||||
|
||||
set(${arg_OUT_VAR_PREFIX}extra_library_injections ${injections} PARENT_SCOPE)
|
||||
endif()
|
||||
|
||||
if (NOT ("${target}" STREQUAL "NO_MODULE") AND NOT arg_ONLY_EVALUATE_FEATURES)
|
||||
get_target_property(targetType "${target}" TYPE)
|
||||
if("${targetType}" STREQUAL "INTERFACE_LIBRARY")
|
||||
@ -783,6 +868,49 @@ function(qt_feature_copy_global_config_features_to_core target)
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
function(qt_internal_detect_dirty_features)
|
||||
# We need to clean up QT_FEATURE_*, but only once per configuration cycle
|
||||
get_property(qt_feature_clean GLOBAL PROPERTY _qt_feature_clean)
|
||||
if(NOT qt_feature_clean AND NOT QT_NO_FEATURE_AUTO_RESET)
|
||||
message(STATUS "Checking for feature set changes")
|
||||
set_property(GLOBAL PROPERTY _qt_feature_clean TRUE)
|
||||
foreach(feature ${QT_KNOWN_FEATURES})
|
||||
qt_internal_compute_feature_value_from_possible_input("${feature}")
|
||||
|
||||
if(DEFINED "FEATURE_${feature}" AND
|
||||
NOT "${QT_FEATURE_${feature}}" STREQUAL "${FEATURE_${feature}}")
|
||||
message(" '${feature}' was changed from ${QT_FEATURE_${feature}} "
|
||||
"to ${FEATURE_${feature}}")
|
||||
set(dirty_build TRUE)
|
||||
set_property(GLOBAL APPEND PROPERTY _qt_dirty_features "${feature}")
|
||||
|
||||
# If the user changed the value of the feature directly (e.g by editing
|
||||
# CMakeCache.txt), and not via its associated INPUT variable, unset the INPUT cache
|
||||
# variable before it is used in feature evaluation, to ensure a stale value doesn't
|
||||
# influence other feature values, especially when QT_INTERNAL_CALLED_FROM_CONFIGURE
|
||||
# is TRUE and the INPUT_foo variable is not passed.
|
||||
# e.g. first configure -no-gui, then manually toggle FEATURE_gui to ON in
|
||||
# CMakeCache.txt, then reconfigure (with the configure script) without -no-gui.
|
||||
# Without this unset(), we'd have switched FEATURE_gui to OFF again.
|
||||
if(NOT FEATURE_${feature}_computed_from_input)
|
||||
unset("INPUT_${feature}" CACHE)
|
||||
endif()
|
||||
endif()
|
||||
unset("QT_FEATURE_${feature}" CACHE)
|
||||
endforeach()
|
||||
|
||||
set(QT_KNOWN_FEATURES "" CACHE INTERNAL "" FORCE)
|
||||
|
||||
if(dirty_build)
|
||||
set_property(GLOBAL PROPERTY _qt_dirty_build TRUE)
|
||||
message(WARNING
|
||||
"Due to detected feature set changes, dependent features "
|
||||
"will be re-computed automatically. This might cause a lot of files to be rebuilt. "
|
||||
"To disable this behavior, configure with -DQT_NO_FEATURE_AUTO_RESET=ON")
|
||||
endif()
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
function(qt_config_compile_test name)
|
||||
if(DEFINED "TEST_${name}")
|
||||
return()
|
||||
@ -921,6 +1049,7 @@ function(qt_config_compile_test name)
|
||||
# fail instead of cmake abort later via CMAKE_REQUIRED_LIBRARIES.
|
||||
string(FIND "${library}" "::" cmake_target_namespace_separator)
|
||||
if(NOT cmake_target_namespace_separator EQUAL -1)
|
||||
message(STATUS "Performing Test ${arg_LABEL} - Failed because ${library} not found")
|
||||
set(HAVE_${name} FALSE)
|
||||
break()
|
||||
endif()
|
||||
@ -929,16 +1058,22 @@ function(qt_config_compile_test name)
|
||||
|
||||
if(NOT DEFINED HAVE_${name})
|
||||
set(_save_CMAKE_C_STANDARD "${CMAKE_C_STANDARD}")
|
||||
set(_save_CMAKE_C_STANDARD_REQUIRED "${CMAKE_C_STANDARD_REQUIRED}")
|
||||
set(_save_CMAKE_CXX_STANDARD "${CMAKE_CXX_STANDARD}")
|
||||
set(_save_CMAKE_CXX_STANDARD_REQUIRED "${CMAKE_CXX_STANDARD_REQUIRED}")
|
||||
set(_save_CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS}")
|
||||
set(_save_CMAKE_TRY_COMPILE_PLATFORM_VARIABLES "${CMAKE_TRY_COMPILE_PLATFORM_VARIABLES}")
|
||||
|
||||
if(arg_C_STANDARD)
|
||||
set(CMAKE_C_STANDARD "${arg_C_STANDARD}")
|
||||
set(CMAKE_C_STANDARD_REQUIRED OFF)
|
||||
endif()
|
||||
|
||||
if(arg_CXX_STANDARD)
|
||||
if(${arg_CXX_STANDARD} LESS 23 OR ${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.20")
|
||||
set(CMAKE_CXX_STANDARD "${arg_CXX_STANDARD}")
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED OFF)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
set(CMAKE_REQUIRED_FLAGS ${arg_COMPILE_OPTIONS})
|
||||
@ -969,7 +1104,9 @@ function(qt_config_compile_test name)
|
||||
set(CMAKE_REQUIRED_LIBRARIES "${_save_CMAKE_REQUIRED_LIBRARIES}")
|
||||
|
||||
set(CMAKE_C_STANDARD "${_save_CMAKE_C_STANDARD}")
|
||||
set(CMAKE_C_STANDARD_REQUIRED "${_save_CMAKE_C_STANDARD_REQUIRED}")
|
||||
set(CMAKE_CXX_STANDARD "${_save_CMAKE_CXX_STANDARD}")
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED "${_save_CMAKE_CXX_STANDARD_REQUIRED}")
|
||||
set(CMAKE_REQUIRED_FLAGS "${_save_CMAKE_REQUIRED_FLAGS}")
|
||||
set(CMAKE_TRY_COMPILE_PLATFORM_VARIABLES "${_save_CMAKE_TRY_COMPILE_PLATFORM_VARIABLES}")
|
||||
endif()
|
||||
@ -995,6 +1132,7 @@ function(qt_get_platform_try_compile_vars out_var)
|
||||
list(APPEND flags "CMAKE_CXX_FLAGS_RELEASE")
|
||||
list(APPEND flags "CMAKE_CXX_FLAGS_RELWITHDEBINFO")
|
||||
list(APPEND flags "CMAKE_OBJCOPY")
|
||||
list(APPEND flags "CMAKE_EXE_LINKER_FLAGS")
|
||||
|
||||
# Pass toolchain files.
|
||||
if(CMAKE_TOOLCHAIN_FILE)
|
||||
@ -1006,7 +1144,9 @@ function(qt_get_platform_try_compile_vars out_var)
|
||||
|
||||
# Pass language standard flags.
|
||||
list(APPEND flags "CMAKE_C_STANDARD")
|
||||
list(APPEND flags "CMAKE_C_STANDARD_REQUIRED")
|
||||
list(APPEND flags "CMAKE_CXX_STANDARD")
|
||||
list(APPEND flags "CMAKE_CXX_STANDARD_REQUIRED")
|
||||
|
||||
# Pass -stdlib=libc++ on if necessary
|
||||
if (INPUT_stdlib_libcpp OR QT_FEATURE_stdlib_libcpp)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
function(qt_feature_normalize_name name out_var)
|
||||
# Normalize the feature name to something CMake can deal with.
|
||||
if(name MATCHES "c\\+\\+")
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# This function recursively walks transitive link libraries of the given target
|
||||
# and promotes those targets to be IMPORTED_GLOBAL if they are not.
|
||||
#
|
||||
@ -13,6 +16,15 @@ function(qt_find_package_promote_targets_to_global_scope target)
|
||||
"qt_find_package_targets_dict" "promote_global")
|
||||
endfunction()
|
||||
|
||||
# As an optimization when using -developer-build, qt_find_package records which
|
||||
# packages were found during the initial configuration. Then on subsequent
|
||||
# reconfigurations it skips looking for packages that were not found on the
|
||||
# initial run.
|
||||
# For the build system to pick up a newly added qt_find_package call, you need to:
|
||||
# - Start with a clean build dir
|
||||
# - Or remove the <builddir>/CMakeCache.txt file and configure from scratch
|
||||
# - Or remove the QT_INTERNAL_PREVIOUSLY_FOUND_PACKAGES cache variable (by
|
||||
# editing CMakeCache.txt) and reconfigure.
|
||||
macro(qt_find_package)
|
||||
# Get the target names we expect to be provided by the package.
|
||||
set(find_package_options CONFIG NO_MODULE MODULE REQUIRED)
|
||||
@ -31,6 +43,20 @@ macro(qt_find_package)
|
||||
# qt_find_package(PNG PROVIDED_TARGET PNG::PNG) still needs to succeed and register the provided
|
||||
# targets. To enable the debugging behavior, set QT_DEBUG_QT_FIND_PACKAGE to 1.
|
||||
set(_qt_find_package_skip_find_package FALSE)
|
||||
|
||||
# Skip looking for packages that were not found on initial configuration, because they likely
|
||||
# won't be found again, and only waste configuration time.
|
||||
# Speeds up reconfiguration configuration for certain platforms and repos.
|
||||
# Due to this behavior being different from what general CMake projects expect, it is only
|
||||
# done for -developer-builds.
|
||||
if(QT_INTERNAL_PREVIOUSLY_FOUND_PACKAGES AND
|
||||
NOT "${ARGV0}" IN_LIST QT_INTERNAL_PREVIOUSLY_FOUND_PACKAGES
|
||||
AND "${ARGV0}" IN_LIST QT_INTERNAL_PREVIOUSLY_SEARCHED_PACKAGES)
|
||||
set(_qt_find_package_skip_find_package TRUE)
|
||||
endif()
|
||||
|
||||
set_property(GLOBAL APPEND PROPERTY _qt_previously_searched_packages "${ARGV0}")
|
||||
|
||||
if(QT_DEBUG_QT_FIND_PACKAGE AND ${ARGV0}_FOUND AND arg_PROVIDED_TARGETS)
|
||||
set(_qt_find_package_skip_find_package TRUE)
|
||||
foreach(qt_find_package_target_name ${arg_PROVIDED_TARGETS})
|
||||
@ -138,6 +164,11 @@ macro(qt_find_package)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(${ARGV0}_FOUND)
|
||||
# Record that the package was found, so that future reconfigurations can be sped up.
|
||||
set_property(GLOBAL APPEND PROPERTY _qt_previously_found_packages "${ARGV0}")
|
||||
endif()
|
||||
|
||||
if(${ARGV0}_FOUND AND arg_PROVIDED_TARGETS AND NOT _qt_find_package_skip_find_package)
|
||||
# If package was found, associate each target with its package name. This will be used
|
||||
# later when creating Config files for Qt libraries, to generate correct find_dependency()
|
||||
@ -197,6 +228,46 @@ macro(qt_find_package)
|
||||
endif()
|
||||
endmacro()
|
||||
|
||||
# Save found packages in the cache. They will be read on next reconfiguration to skip looking
|
||||
# for packages that were not previously found.
|
||||
# Only applies to -developer-builds by default.
|
||||
# Can also be opted in or opted out via QT_INTERNAL_SAVE_PREVIOUSLY_FOUND_PACKAGES.
|
||||
# Opting out will need two reconfigurations to take effect.
|
||||
function(qt_internal_save_previously_visited_packages)
|
||||
if(DEFINED QT_INTERNAL_SAVE_PREVIOUSLY_FOUND_PACKAGES)
|
||||
set(should_save "${QT_INTERNAL_SAVE_PREVIOUSLY_FOUND_PACKAGES}")
|
||||
else()
|
||||
if(FEATURE_developer_build OR QT_FEATURE_developer_build)
|
||||
set(should_save ON)
|
||||
else()
|
||||
set(should_save OFF)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(NOT should_save)
|
||||
# When the value is flipped to OFF, remove any previously saved packages.
|
||||
unset(QT_INTERNAL_PREVIOUSLY_FOUND_PACKAGES CACHE)
|
||||
unset(QT_INTERNAL_PREVIOUSLY_SEARCHED_PACKAGES CACHE)
|
||||
return()
|
||||
endif()
|
||||
|
||||
get_property(_qt_previously_found_packages GLOBAL PROPERTY _qt_previously_found_packages)
|
||||
if(_qt_previously_found_packages)
|
||||
list(REMOVE_DUPLICATES _qt_previously_found_packages)
|
||||
set(QT_INTERNAL_PREVIOUSLY_FOUND_PACKAGES "${_qt_previously_found_packages}" CACHE INTERNAL
|
||||
"List of CMake packages found during configuration using qt_find_package.")
|
||||
endif()
|
||||
|
||||
get_property(_qt_previously_searched_packages GLOBAL PROPERTY _qt_previously_searched_packages)
|
||||
if(_qt_previously_searched_packages)
|
||||
list(REMOVE_DUPLICATES _qt_previously_searched_packages)
|
||||
set(QT_INTERNAL_PREVIOUSLY_SEARCHED_PACKAGES
|
||||
"${_qt_previously_searched_packages}" CACHE INTERNAL
|
||||
"List of CMake packages searched during configuration using qt_find_package."
|
||||
)
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
# Return qmake library name for the given target, e.g. return "vulkan" for "Vulkan::Vulkan".
|
||||
function(qt_internal_map_target_to_qmake_lib target out_var)
|
||||
set(${out_var} "${QT_QMAKE_LIB_OF_TARGET_${target}}" PARENT_SCOPE)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
# Creates an imported wrapper target that links against either a Qt bundled package
|
||||
# or a system package.
|
||||
#
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user