2021-05-19 10:35:18 +00:00
|
|
|
macro(qt_internal_get_add_library_option_args option_args)
|
|
|
|
set(${option_args}
|
|
|
|
SHARED
|
|
|
|
STATIC
|
|
|
|
MODULE
|
|
|
|
INTERFACE
|
2023-01-31 13:05:16 +00:00
|
|
|
NO_UNITY_BUILD
|
2021-05-19 10:35:18 +00:00
|
|
|
)
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
# Helper to create a library using the public _qt_internal_add_library function.
|
|
|
|
#
|
|
|
|
# The difference to _qt_internal_add_library is that MODULE is replaced with STATIC in a static
|
|
|
|
# Qt build.
|
|
|
|
# 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)
|
2023-01-11 14:36:18 +00:00
|
|
|
cmake_parse_arguments(PARSE_ARGV 1 arg
|
2021-05-19 10:35:18 +00:00
|
|
|
"${option_args}"
|
|
|
|
""
|
|
|
|
""
|
|
|
|
)
|
2023-01-11 14:36:18 +00:00
|
|
|
_qt_internal_validate_all_args_are_parsed(arg)
|
2021-05-19 10:35:18 +00:00
|
|
|
|
|
|
|
if(arg_SHARED)
|
|
|
|
set(arg_SHARED SHARED)
|
|
|
|
else()
|
|
|
|
set(arg_SHARED "")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(arg_MODULE)
|
|
|
|
set(arg_MODULE MODULE)
|
|
|
|
else()
|
|
|
|
set(arg_MODULE "")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(arg_STATIC)
|
|
|
|
set(arg_STATIC STATIC)
|
|
|
|
else()
|
|
|
|
set(arg_STATIC "")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(arg_INTERFACE)
|
|
|
|
set(arg_INTERFACE INTERFACE)
|
|
|
|
else()
|
|
|
|
set(arg_INTERFACE "")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(arg_MODULE AND NOT BUILD_SHARED_LIBS)
|
|
|
|
set(arg_MODULE STATIC)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
_qt_internal_add_library(${target} ${arg_STATIC} ${arg_SHARED} ${arg_MODULE} ${arg_INTERFACE})
|
2023-01-31 13:05:16 +00:00
|
|
|
|
|
|
|
if(arg_NO_UNITY_BUILD)
|
|
|
|
set_property(TARGET "${target}" PROPERTY UNITY_BUILD OFF)
|
|
|
|
endif()
|
|
|
|
|
2021-07-15 11:04:15 +00:00
|
|
|
qt_internal_mark_as_internal_library(${target})
|
2021-05-19 10:35:18 +00:00
|
|
|
endfunction()
|
|
|
|
|
2020-08-13 15:37:47 +00:00
|
|
|
# Wrapper function to create a regular cmake target and forward all the
|
2020-10-27 12:37:52 +00:00
|
|
|
# arguments collected by the conversion script.
|
2020-09-22 08:02:27 +00:00
|
|
|
function(qt_internal_add_cmake_library target)
|
2021-05-19 10:35:18 +00:00
|
|
|
qt_internal_get_add_library_option_args(option_args)
|
|
|
|
set(single_args
|
|
|
|
OUTPUT_DIRECTORY
|
|
|
|
ARCHIVE_INSTALL_DIRECTORY
|
|
|
|
INSTALL_DIRECTORY
|
|
|
|
)
|
|
|
|
set(multi_args
|
|
|
|
${__default_private_args}
|
|
|
|
${__default_public_args}
|
|
|
|
)
|
|
|
|
|
2023-01-11 14:36:18 +00:00
|
|
|
cmake_parse_arguments(PARSE_ARGV 1 arg
|
2021-05-19 10:35:18 +00:00
|
|
|
"${option_args}"
|
|
|
|
"${single_args}"
|
|
|
|
"${multi_args}"
|
2020-08-13 15:37:47 +00:00
|
|
|
)
|
2023-01-11 14:36:18 +00:00
|
|
|
_qt_internal_validate_all_args_are_parsed(arg)
|
2023-03-09 13:53:14 +00:00
|
|
|
_qt_internal_validate_no_unity_build(arg)
|
2020-08-13 15:37:47 +00:00
|
|
|
|
2021-05-19 10:35:18 +00:00
|
|
|
qt_remove_args(library_helper_args
|
|
|
|
ARGS_TO_REMOVE
|
|
|
|
${single_args}
|
|
|
|
${multi_args}
|
|
|
|
ALL_ARGS
|
|
|
|
${option_args}
|
|
|
|
${single_args}
|
|
|
|
${multi_args}
|
|
|
|
ARGS
|
|
|
|
${ARGN}
|
|
|
|
)
|
|
|
|
|
|
|
|
qt_internal_add_common_qt_library_helper(${target} ${library_helper_args})
|
2020-08-13 15:37:47 +00:00
|
|
|
|
|
|
|
qt_skip_warnings_are_errors_when_repo_unclean("${target}")
|
|
|
|
|
|
|
|
if (arg_OUTPUT_DIRECTORY)
|
|
|
|
set_target_properties(${target} PROPERTIES
|
|
|
|
ARCHIVE_OUTPUT_DIRECTORY ${arg_OUTPUT_DIRECTORY}
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY ${arg_OUTPUT_DIRECTORY}
|
|
|
|
LIBRARY_OUTPUT_DIRECTORY ${arg_OUTPUT_DIRECTORY}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2020-09-22 08:02:27 +00:00
|
|
|
qt_internal_extend_target("${target}"
|
2020-08-13 15:37:47 +00:00
|
|
|
SOURCES ${arg_SOURCES}
|
|
|
|
INCLUDE_DIRECTORIES
|
|
|
|
${arg_INCLUDE_DIRECTORIES}
|
2022-11-22 01:55:13 +00:00
|
|
|
SYSTEM_INCLUDE_DIRECTORIES
|
|
|
|
${arg_SYSTEM_INCLUDE_DIRECTORIES}
|
2020-08-13 15:37:47 +00:00
|
|
|
PUBLIC_INCLUDE_DIRECTORIES
|
|
|
|
${arg_PUBLIC_INCLUDE_DIRECTORIES}
|
|
|
|
PUBLIC_DEFINES
|
|
|
|
${arg_PUBLIC_DEFINES}
|
|
|
|
DEFINES
|
|
|
|
${arg_DEFINES}
|
|
|
|
PUBLIC_LIBRARIES ${arg_PUBLIC_LIBRARIES}
|
|
|
|
LIBRARIES ${arg_LIBRARIES} Qt::PlatformCommonInternal
|
|
|
|
COMPILE_OPTIONS ${arg_COMPILE_OPTIONS}
|
|
|
|
PUBLIC_COMPILE_OPTIONS ${arg_PUBLIC_COMPILE_OPTIONS}
|
|
|
|
LINK_OPTIONS ${arg_LINK_OPTIONS}
|
|
|
|
PUBLIC_LINK_OPTIONS ${arg_PUBLIC_LINK_OPTIONS}
|
|
|
|
MOC_OPTIONS ${arg_MOC_OPTIONS}
|
|
|
|
ENABLE_AUTOGEN_TOOLS ${arg_ENABLE_AUTOGEN_TOOLS}
|
|
|
|
DISABLE_AUTOGEN_TOOLS ${arg_DISABLE_AUTOGEN_TOOLS}
|
2023-03-09 13:53:14 +00:00
|
|
|
NO_UNITY_BUILD # Disabled by default
|
2020-08-13 15:37:47 +00:00
|
|
|
)
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
# This function replaces qmake's qt_helper_lib feature. It is intended to
|
|
|
|
# compile 3rdparty libraries as part of the build.
|
|
|
|
#
|
2020-09-22 08:02:27 +00:00
|
|
|
function(qt_internal_add_3rdparty_library target)
|
2021-05-19 10:35:18 +00:00
|
|
|
qt_internal_get_add_library_option_args(library_option_args)
|
|
|
|
set(option_args
|
|
|
|
EXCEPTIONS
|
|
|
|
INSTALL
|
|
|
|
SKIP_AUTOMOC
|
|
|
|
)
|
|
|
|
set(single_args
|
|
|
|
OUTPUT_DIRECTORY
|
|
|
|
QMAKE_LIB_NAME
|
|
|
|
)
|
|
|
|
set(multi_args
|
|
|
|
${__default_private_args}
|
|
|
|
${__default_public_args}
|
|
|
|
)
|
|
|
|
|
2023-01-11 14:36:18 +00:00
|
|
|
cmake_parse_arguments(PARSE_ARGV 1 arg
|
2021-05-19 10:35:18 +00:00
|
|
|
"${library_option_args};${option_args}"
|
|
|
|
"${single_args}"
|
|
|
|
"${multi_args}"
|
2020-08-13 15:37:47 +00:00
|
|
|
)
|
2023-01-11 14:36:18 +00:00
|
|
|
_qt_internal_validate_all_args_are_parsed(arg)
|
2023-03-09 13:53:14 +00:00
|
|
|
_qt_internal_validate_no_unity_build(arg)
|
2020-08-13 15:37:47 +00:00
|
|
|
|
2021-05-19 10:35:18 +00:00
|
|
|
qt_remove_args(library_helper_args
|
|
|
|
ARGS_TO_REMOVE
|
|
|
|
${option_args}
|
|
|
|
${single_args}
|
|
|
|
${multi_args}
|
|
|
|
ALL_ARGS
|
|
|
|
${library_option_args}
|
|
|
|
${option_args}
|
|
|
|
${single_args}
|
|
|
|
${multi_args}
|
|
|
|
ARGS
|
|
|
|
${ARGN}
|
|
|
|
)
|
|
|
|
|
|
|
|
qt_internal_add_common_qt_library_helper(${target} ${library_helper_args})
|
2020-08-13 15:37:47 +00:00
|
|
|
|
2021-05-23 13:02:36 +00:00
|
|
|
set_target_properties(${target} PROPERTIES
|
|
|
|
_qt_module_interface_name "${target}"
|
CMake: Record used package version for each target dependency
When recording which package version to look for in
QtFooModuleDependencies.cmake and other files like it,
instead of using PROJECT_VERSION, use the version of the
package that contains the dependency.
For example if we're hypothetically building the qtdeclarative repo
from the 6.4 branch, against an installed 6.2 qtbase, then
the Qt6QmlModuleDependencies.cmake file will have a
find_package(Qt6Core 6.2) call because qtdeclarative's
find_package(Qt6Core) call found a 6.2 Core when it was configured.
This allows switching the versioning scheme of specific Qt modules
that might not want to follow the general Qt versioning scheme.
The first candidate would be QtWebEngine which might want to
follow the Chromium versioning scheme, something like
Qt 6.94.0 where 94 is the Chromium major version.
Implementation notes.
We now record the package version of a target in a property
called _qt_package_version. We do it for qt modules, plugins,
3rd party libraries, tools and the Platform target.
When we try to look up which version to write into the
QtFooModuleDependencies.cmake file (or the equivalent Plugins and
Tools file), we try to find the version
from a few sources: the property mentioned above, then the
Qt6{target}_VERSION variable, and finally PROJECT_VERSION.
In the latter case, we issue a warning because technically that should
never have to happen, and it's a bug or an unforeseen case if it does.
A few more places also need adjustments:
- package versions to look for when configuring standalone
tests and generating standalone tests Config files
- handling of tools packages
- The main Qt6 package lookup in each Dependencies.cmake files
Note that there are some requirements and consequences in case a
module wants to use a different versioning scheme like 6.94.0.
Requirements.
- The root CMakeLists.txt file needs to call find_package with a
version different from the usual PROJECT_VERSION. Ideally it
should look for a few different Qt versions which are known to be
compatible, for example the last stable and LTS versions, or just
the lowest supported Qt version, e.g. 6.2.6 or whenever this change
would land in the 6.2 branch.
- If the repository has multiple modules, some of which need to
follow the Qt versioning scheme and some not,
project(VERSION x.y.z) calls need to be carefully placed in
subdirectory scopes with appropriate version numbers, so that
qt_internal_add_module / _tool / _plugin pick up the correct
version.
Consequences.
- The .so / .dylib names will contain the new version, e.g. .so.6.94
- Linux ELF symbols will contain the new versions
- syncqt private headers will now exist under a
include/QtFoo/6.94.0/QtFoo/private folder
- pri and prl files will also contain the new version numbers
- pkg-config .pc files contain the new version numbers
- It won't be possible to write
find_package(Qt6 6.94 COMPONENTS WebEngineWidgets) in user code.
One would have to write find_package(Qt6WebEngineWidgets 6.94)
otherwise CMake will try to look for Qt6Config 6.94 which won't
exist.
- Similarly, a
find_package(Qt6 6.4 COMPONENTS Widgets WebEngineWidgets) call
would always find any kind of WebEngine package that is higher than
6.4, which might be 6.94, 6.95, etc.
- In the future, if we fix Qt6Config to pass EXACT to its
subcomponent find_package calls,
a find_package(Qt6 6.5.0 EXACT COMPONENTS Widgets WebEngineWidgets)
would fail to find WebEngineWidgets, because its 6.94.0 version
will not be equal to 6.5.0. Currently we don't pass through EXACT,
so it's not an issue.
Augments 5ffc744b791a114a3180a425dd26e298f7399955
Task-number: QTBUG-103500
Change-Id: I8bdb56bfcbc7f7f6484d1e56651ffc993fd30bab
Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
2022-05-17 06:44:43 +00:00
|
|
|
_qt_package_version "${PROJECT_VERSION}"
|
2022-07-28 10:16:26 +00:00
|
|
|
_qt_package_name "${INSTALL_CMAKE_NAMESPACE}${target}"
|
|
|
|
_qt_module_is_3rdparty_library TRUE
|
|
|
|
)
|
|
|
|
|
|
|
|
set(export_properties
|
|
|
|
"_qt_module_interface_name"
|
|
|
|
"_qt_package_version"
|
|
|
|
"_qt_package_name"
|
|
|
|
"_qt_module_is_3rdparty_library"
|
2021-05-23 13:02:36 +00:00
|
|
|
)
|
CMake: Record used package version for each target dependency
When recording which package version to look for in
QtFooModuleDependencies.cmake and other files like it,
instead of using PROJECT_VERSION, use the version of the
package that contains the dependency.
For example if we're hypothetically building the qtdeclarative repo
from the 6.4 branch, against an installed 6.2 qtbase, then
the Qt6QmlModuleDependencies.cmake file will have a
find_package(Qt6Core 6.2) call because qtdeclarative's
find_package(Qt6Core) call found a 6.2 Core when it was configured.
This allows switching the versioning scheme of specific Qt modules
that might not want to follow the general Qt versioning scheme.
The first candidate would be QtWebEngine which might want to
follow the Chromium versioning scheme, something like
Qt 6.94.0 where 94 is the Chromium major version.
Implementation notes.
We now record the package version of a target in a property
called _qt_package_version. We do it for qt modules, plugins,
3rd party libraries, tools and the Platform target.
When we try to look up which version to write into the
QtFooModuleDependencies.cmake file (or the equivalent Plugins and
Tools file), we try to find the version
from a few sources: the property mentioned above, then the
Qt6{target}_VERSION variable, and finally PROJECT_VERSION.
In the latter case, we issue a warning because technically that should
never have to happen, and it's a bug or an unforeseen case if it does.
A few more places also need adjustments:
- package versions to look for when configuring standalone
tests and generating standalone tests Config files
- handling of tools packages
- The main Qt6 package lookup in each Dependencies.cmake files
Note that there are some requirements and consequences in case a
module wants to use a different versioning scheme like 6.94.0.
Requirements.
- The root CMakeLists.txt file needs to call find_package with a
version different from the usual PROJECT_VERSION. Ideally it
should look for a few different Qt versions which are known to be
compatible, for example the last stable and LTS versions, or just
the lowest supported Qt version, e.g. 6.2.6 or whenever this change
would land in the 6.2 branch.
- If the repository has multiple modules, some of which need to
follow the Qt versioning scheme and some not,
project(VERSION x.y.z) calls need to be carefully placed in
subdirectory scopes with appropriate version numbers, so that
qt_internal_add_module / _tool / _plugin pick up the correct
version.
Consequences.
- The .so / .dylib names will contain the new version, e.g. .so.6.94
- Linux ELF symbols will contain the new versions
- syncqt private headers will now exist under a
include/QtFoo/6.94.0/QtFoo/private folder
- pri and prl files will also contain the new version numbers
- pkg-config .pc files contain the new version numbers
- It won't be possible to write
find_package(Qt6 6.94 COMPONENTS WebEngineWidgets) in user code.
One would have to write find_package(Qt6WebEngineWidgets 6.94)
otherwise CMake will try to look for Qt6Config 6.94 which won't
exist.
- Similarly, a
find_package(Qt6 6.4 COMPONENTS Widgets WebEngineWidgets) call
would always find any kind of WebEngine package that is higher than
6.4, which might be 6.94, 6.95, etc.
- In the future, if we fix Qt6Config to pass EXACT to its
subcomponent find_package calls,
a find_package(Qt6 6.5.0 EXACT COMPONENTS Widgets WebEngineWidgets)
would fail to find WebEngineWidgets, because its 6.94.0 version
will not be equal to 6.5.0. Currently we don't pass through EXACT,
so it's not an issue.
Augments 5ffc744b791a114a3180a425dd26e298f7399955
Task-number: QTBUG-103500
Change-Id: I8bdb56bfcbc7f7f6484d1e56651ffc993fd30bab
Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
2022-05-17 06:44:43 +00:00
|
|
|
|
|
|
|
set_property(TARGET ${target}
|
|
|
|
APPEND PROPERTY
|
2022-07-28 10:16:26 +00:00
|
|
|
EXPORT_PROPERTIES "${export_properties}")
|
CMake: Record used package version for each target dependency
When recording which package version to look for in
QtFooModuleDependencies.cmake and other files like it,
instead of using PROJECT_VERSION, use the version of the
package that contains the dependency.
For example if we're hypothetically building the qtdeclarative repo
from the 6.4 branch, against an installed 6.2 qtbase, then
the Qt6QmlModuleDependencies.cmake file will have a
find_package(Qt6Core 6.2) call because qtdeclarative's
find_package(Qt6Core) call found a 6.2 Core when it was configured.
This allows switching the versioning scheme of specific Qt modules
that might not want to follow the general Qt versioning scheme.
The first candidate would be QtWebEngine which might want to
follow the Chromium versioning scheme, something like
Qt 6.94.0 where 94 is the Chromium major version.
Implementation notes.
We now record the package version of a target in a property
called _qt_package_version. We do it for qt modules, plugins,
3rd party libraries, tools and the Platform target.
When we try to look up which version to write into the
QtFooModuleDependencies.cmake file (or the equivalent Plugins and
Tools file), we try to find the version
from a few sources: the property mentioned above, then the
Qt6{target}_VERSION variable, and finally PROJECT_VERSION.
In the latter case, we issue a warning because technically that should
never have to happen, and it's a bug or an unforeseen case if it does.
A few more places also need adjustments:
- package versions to look for when configuring standalone
tests and generating standalone tests Config files
- handling of tools packages
- The main Qt6 package lookup in each Dependencies.cmake files
Note that there are some requirements and consequences in case a
module wants to use a different versioning scheme like 6.94.0.
Requirements.
- The root CMakeLists.txt file needs to call find_package with a
version different from the usual PROJECT_VERSION. Ideally it
should look for a few different Qt versions which are known to be
compatible, for example the last stable and LTS versions, or just
the lowest supported Qt version, e.g. 6.2.6 or whenever this change
would land in the 6.2 branch.
- If the repository has multiple modules, some of which need to
follow the Qt versioning scheme and some not,
project(VERSION x.y.z) calls need to be carefully placed in
subdirectory scopes with appropriate version numbers, so that
qt_internal_add_module / _tool / _plugin pick up the correct
version.
Consequences.
- The .so / .dylib names will contain the new version, e.g. .so.6.94
- Linux ELF symbols will contain the new versions
- syncqt private headers will now exist under a
include/QtFoo/6.94.0/QtFoo/private folder
- pri and prl files will also contain the new version numbers
- pkg-config .pc files contain the new version numbers
- It won't be possible to write
find_package(Qt6 6.94 COMPONENTS WebEngineWidgets) in user code.
One would have to write find_package(Qt6WebEngineWidgets 6.94)
otherwise CMake will try to look for Qt6Config 6.94 which won't
exist.
- Similarly, a
find_package(Qt6 6.4 COMPONENTS Widgets WebEngineWidgets) call
would always find any kind of WebEngine package that is higher than
6.4, which might be 6.94, 6.95, etc.
- In the future, if we fix Qt6Config to pass EXACT to its
subcomponent find_package calls,
a find_package(Qt6 6.5.0 EXACT COMPONENTS Widgets WebEngineWidgets)
would fail to find WebEngineWidgets, because its 6.94.0 version
will not be equal to 6.5.0. Currently we don't pass through EXACT,
so it's not an issue.
Augments 5ffc744b791a114a3180a425dd26e298f7399955
Task-number: QTBUG-103500
Change-Id: I8bdb56bfcbc7f7f6484d1e56651ffc993fd30bab
Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
2022-05-17 06:44:43 +00:00
|
|
|
|
2020-08-13 15:37:47 +00:00
|
|
|
qt_internal_add_qt_repo_known_module(${target})
|
|
|
|
qt_internal_add_target_aliases(${target})
|
|
|
|
_qt_internal_apply_strict_cpp(${target})
|
|
|
|
|
|
|
|
qt_skip_warnings_are_errors_when_repo_unclean("${target}")
|
|
|
|
|
|
|
|
set_target_properties(${target} PROPERTIES
|
|
|
|
LIBRARY_OUTPUT_DIRECTORY "${QT_BUILD_DIR}/${INSTALL_LIBDIR}"
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY "${QT_BUILD_DIR}/${INSTALL_BINDIR}"
|
|
|
|
ARCHIVE_OUTPUT_DIRECTORY "${QT_BUILD_DIR}/${INSTALL_LIBDIR}"
|
|
|
|
VERSION ${PROJECT_VERSION}
|
|
|
|
SOVERSION ${PROJECT_VERSION_MAJOR}
|
2022-02-22 15:57:00 +00:00
|
|
|
_qt_module_skip_depends_include TRUE
|
2020-08-13 15:37:47 +00:00
|
|
|
)
|
2022-02-22 15:57:00 +00:00
|
|
|
set_property(TARGET "${target}"
|
|
|
|
APPEND PROPERTY EXPORT_PROPERTIES _qt_module_is_3rdparty_library)
|
|
|
|
set_property(TARGET "${target}"
|
|
|
|
APPEND PROPERTY EXPORT_PROPERTIES _qt_module_skip_depends_include)
|
|
|
|
|
2020-08-13 15:37:47 +00:00
|
|
|
qt_handle_multi_config_output_dirs("${target}")
|
|
|
|
|
|
|
|
set_target_properties(${target} PROPERTIES
|
|
|
|
OUTPUT_NAME "${INSTALL_CMAKE_NAMESPACE}${target}"
|
|
|
|
)
|
|
|
|
|
2022-04-30 15:38:02 +00:00
|
|
|
if(NOT arg_INTERFACE)
|
|
|
|
qt_set_common_target_properties(${target})
|
|
|
|
endif()
|
|
|
|
|
2020-08-13 15:37:47 +00:00
|
|
|
if(NOT arg_SKIP_AUTOMOC)
|
|
|
|
qt_autogen_tools_initial_setup(${target})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT arg_EXCEPTIONS AND NOT arg_INTERFACE)
|
2021-01-21 10:17:58 +00:00
|
|
|
qt_internal_set_exceptions_flags("${target}" FALSE)
|
|
|
|
elseif(arg_EXCEPTIONS)
|
|
|
|
qt_internal_set_exceptions_flags("${target}" TRUE)
|
2020-08-13 15:37:47 +00:00
|
|
|
endif()
|
|
|
|
|
2020-09-22 08:02:27 +00:00
|
|
|
qt_internal_extend_target("${target}"
|
2020-08-13 15:37:47 +00:00
|
|
|
SOURCES ${arg_SOURCES}
|
|
|
|
INCLUDE_DIRECTORIES
|
|
|
|
${arg_INCLUDE_DIRECTORIES}
|
|
|
|
PUBLIC_INCLUDE_DIRECTORIES
|
|
|
|
${arg_PUBLIC_INCLUDE_DIRECTORIES}
|
|
|
|
PUBLIC_DEFINES
|
|
|
|
${arg_PUBLIC_DEFINES}
|
|
|
|
DEFINES
|
|
|
|
${arg_DEFINES}
|
|
|
|
PUBLIC_LIBRARIES ${arg_PUBLIC_LIBRARIES}
|
|
|
|
LIBRARIES ${arg_LIBRARIES} Qt::PlatformModuleInternal
|
|
|
|
COMPILE_OPTIONS ${arg_COMPILE_OPTIONS}
|
|
|
|
PUBLIC_COMPILE_OPTIONS ${arg_PUBLIC_COMPILE_OPTIONS}
|
|
|
|
LINK_OPTIONS ${arg_LINK_OPTIONS}
|
|
|
|
PUBLIC_LINK_OPTIONS ${arg_PUBLIC_LINK_OPTIONS}
|
|
|
|
MOC_OPTIONS ${arg_MOC_OPTIONS}
|
|
|
|
ENABLE_AUTOGEN_TOOLS ${arg_ENABLE_AUTOGEN_TOOLS}
|
|
|
|
DISABLE_AUTOGEN_TOOLS ${arg_DISABLE_AUTOGEN_TOOLS}
|
2023-01-31 13:05:16 +00:00
|
|
|
NO_UNITY_BUILD
|
2020-08-13 15:37:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if(NOT BUILD_SHARED_LIBS OR arg_INSTALL)
|
2020-11-19 08:49:28 +00:00
|
|
|
qt_generate_3rdparty_lib_pri_file("${target}" "${arg_QMAKE_LIB_NAME}" pri_file)
|
|
|
|
if(pri_file)
|
|
|
|
qt_install(FILES "${pri_file}" DESTINATION "${INSTALL_MKSPECSDIR}/modules")
|
|
|
|
endif()
|
|
|
|
|
2020-08-13 15:37:47 +00:00
|
|
|
set(path_suffix "${INSTALL_CMAKE_NAMESPACE}${target}")
|
|
|
|
qt_path_join(config_build_dir ${QT_CONFIG_BUILD_DIR} ${path_suffix})
|
|
|
|
qt_path_join(config_install_dir ${QT_CONFIG_INSTALL_DIR} ${path_suffix})
|
|
|
|
set(export_name "${INSTALL_CMAKE_NAMESPACE}${target}Targets")
|
|
|
|
|
2020-11-30 07:46:49 +00:00
|
|
|
qt_internal_get_min_new_policy_cmake_version(min_new_policy_version)
|
|
|
|
qt_internal_get_max_new_policy_cmake_version(max_new_policy_version)
|
2020-08-13 15:37:47 +00:00
|
|
|
configure_package_config_file(
|
|
|
|
"${QT_CMAKE_DIR}/Qt3rdPartyLibraryConfig.cmake.in"
|
|
|
|
"${config_build_dir}/${INSTALL_CMAKE_NAMESPACE}${target}Config.cmake"
|
|
|
|
INSTALL_DESTINATION "${config_install_dir}"
|
|
|
|
)
|
|
|
|
|
|
|
|
write_basic_package_version_file(
|
2021-10-22 11:38:00 +00:00
|
|
|
"${config_build_dir}/${INSTALL_CMAKE_NAMESPACE}${target}ConfigVersionImpl.cmake"
|
2020-08-13 15:37:47 +00:00
|
|
|
VERSION ${PROJECT_VERSION}
|
|
|
|
COMPATIBILITY AnyNewerVersion
|
|
|
|
)
|
2021-10-22 11:38:00 +00:00
|
|
|
qt_internal_write_qt_package_version_file(
|
|
|
|
"${INSTALL_CMAKE_NAMESPACE}${target}"
|
|
|
|
"${config_build_dir}/${INSTALL_CMAKE_NAMESPACE}${target}ConfigVersion.cmake"
|
|
|
|
)
|
2020-08-13 15:37:47 +00:00
|
|
|
|
|
|
|
qt_install(FILES
|
|
|
|
"${config_build_dir}/${INSTALL_CMAKE_NAMESPACE}${target}Config.cmake"
|
|
|
|
"${config_build_dir}/${INSTALL_CMAKE_NAMESPACE}${target}ConfigVersion.cmake"
|
2021-10-22 11:38:00 +00:00
|
|
|
"${config_build_dir}/${INSTALL_CMAKE_NAMESPACE}${target}ConfigVersionImpl.cmake"
|
2020-08-13 15:37:47 +00:00
|
|
|
DESTINATION "${config_install_dir}"
|
|
|
|
COMPONENT Devel
|
|
|
|
)
|
|
|
|
|
|
|
|
qt_install(TARGETS ${target}
|
|
|
|
EXPORT "${export_name}"
|
|
|
|
RUNTIME DESTINATION ${INSTALL_BINDIR}
|
|
|
|
LIBRARY DESTINATION ${INSTALL_LIBDIR}
|
|
|
|
ARCHIVE DESTINATION ${INSTALL_LIBDIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
qt_install(EXPORT ${export_name}
|
|
|
|
NAMESPACE "${QT_CMAKE_EXPORT_NAMESPACE}::"
|
|
|
|
DESTINATION "${config_install_dir}"
|
|
|
|
)
|
|
|
|
|
2020-09-22 20:16:20 +00:00
|
|
|
qt_internal_export_additional_targets_file(
|
|
|
|
TARGETS ${target}
|
|
|
|
EXPORT_NAME_PREFIX ${INSTALL_CMAKE_NAMESPACE}${target}
|
|
|
|
CONFIG_INSTALL_DIR "${config_install_dir}"
|
|
|
|
)
|
|
|
|
|
2020-08-13 15:37:47 +00:00
|
|
|
qt_internal_export_modern_cmake_config_targets_file(
|
|
|
|
TARGETS ${target}
|
|
|
|
EXPORT_NAME_PREFIX ${INSTALL_CMAKE_NAMESPACE}${target}
|
|
|
|
CONFIG_INSTALL_DIR "${config_install_dir}"
|
|
|
|
)
|
2020-11-02 11:40:57 +00:00
|
|
|
|
2020-11-19 08:49:28 +00:00
|
|
|
set(debug_install_dir "${INSTALL_LIBDIR}")
|
|
|
|
if (MINGW)
|
|
|
|
set(debug_install_dir "${INSTALL_BINDIR}")
|
|
|
|
endif()
|
|
|
|
qt_enable_separate_debug_info(${target} "${debug_install_dir}")
|
|
|
|
qt_internal_install_pdb_files(${target} "${INSTALL_LIBDIR}")
|
2020-11-02 11:40:57 +00:00
|
|
|
endif()
|
2022-11-22 07:22:30 +00:00
|
|
|
|
|
|
|
if(BUILD_SHARED_LIBS AND MSVC)
|
|
|
|
set_target_properties(${target} PROPERTIES
|
|
|
|
INTERPROCEDURAL_OPTIMIZATION OFF
|
|
|
|
)
|
|
|
|
endif()
|
2020-08-13 15:37:47 +00:00
|
|
|
endfunction()
|
|
|
|
|
|
|
|
function(qt_install_3rdparty_library_wrap_config_extra_file target)
|
|
|
|
if(TARGET "${target}")
|
|
|
|
set(use_bundled "ON")
|
|
|
|
else()
|
|
|
|
set(use_bundled "OFF")
|
|
|
|
endif()
|
|
|
|
|
2021-07-08 16:40:57 +00:00
|
|
|
set(QT_USE_BUNDLED_${target} "${use_bundled}" CACHE INTERNAL "")
|
|
|
|
set(extra_cmake_code "set(QT_USE_BUNDLED_${target} ${use_bundled} CACHE INTERNAL \"\")")
|
2020-08-13 15:37:47 +00:00
|
|
|
configure_file(
|
|
|
|
"${QT_CMAKE_DIR}/QtFindWrapConfigExtra.cmake.in"
|
|
|
|
"${QT_CONFIG_BUILD_DIR}/${INSTALL_CMAKE_NAMESPACE}/FindWrap${target}ConfigExtra.cmake"
|
|
|
|
@ONLY
|
|
|
|
)
|
|
|
|
|
|
|
|
qt_install(FILES
|
|
|
|
"${QT_CONFIG_BUILD_DIR}/${INSTALL_CMAKE_NAMESPACE}/FindWrap${target}ConfigExtra.cmake"
|
|
|
|
DESTINATION "${QT_CONFIG_INSTALL_DIR}/${INSTALL_CMAKE_NAMESPACE}"
|
|
|
|
COMPONENT Devel
|
|
|
|
)
|
|
|
|
endfunction()
|
2021-12-14 08:54:33 +00:00
|
|
|
|
|
|
|
# This function implements qmake's qt_helper_lib MODULE_EXT_HEADERS and MODULE_EXT_HEADERS_DIR features.
|
|
|
|
# It creates a header-only module exposing a subset or all headers of a 3rd-party library.
|
|
|
|
function(qt_internal_add_3rdparty_header_module target)
|
|
|
|
set(single_args
|
|
|
|
EXTERNAL_HEADERS_DIR
|
|
|
|
)
|
|
|
|
set(multi_args
|
|
|
|
EXTERNAL_HEADERS
|
|
|
|
)
|
2023-01-11 14:36:18 +00:00
|
|
|
cmake_parse_arguments(PARSE_ARGV 1 arg
|
2021-12-14 08:54:33 +00:00
|
|
|
"${option_args}"
|
|
|
|
"${single_args}"
|
|
|
|
"${multi_args}"
|
|
|
|
)
|
2023-01-11 14:36:18 +00:00
|
|
|
_qt_internal_validate_all_args_are_parsed(arg)
|
|
|
|
|
2021-12-14 08:54:33 +00:00
|
|
|
qt_internal_add_module(${target}
|
|
|
|
INTERNAL_MODULE
|
|
|
|
HEADER_MODULE
|
|
|
|
NO_CONFIG_HEADER_FILE
|
|
|
|
EXTERNAL_HEADERS ${arg_EXTERNAL_HEADERS}
|
|
|
|
EXTERNAL_HEADERS_DIR ${arg_EXTERNAL_HEADERS_DIR}
|
|
|
|
)
|
2022-02-22 15:57:00 +00:00
|
|
|
|
|
|
|
set_target_properties(${target} PROPERTIES
|
|
|
|
_qt_module_is_3rdparty_header_library TRUE
|
|
|
|
_qt_module_skip_depends_include TRUE
|
|
|
|
)
|
|
|
|
set_property(TARGET "${target}"
|
|
|
|
APPEND PROPERTY EXPORT_PROPERTIES _qt_module_is_3rdparty_header_library)
|
|
|
|
set_property(TARGET "${target}"
|
|
|
|
APPEND PROPERTY EXPORT_PROPERTIES _qt_module_skip_depends_include)
|
2021-12-14 08:54:33 +00:00
|
|
|
endfunction()
|