Add the missing installation and inclusion of qt base CMake properties

The file was missing from both installation and inclusion.

Pick-to: 6.5 6.7 6.8
Change-Id: I3e904071cc28f674750aca38050fbe89d75a585d
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
Alexey Edelev 2024-07-01 16:51:26 +02:00
parent 3bfd1c4ded
commit 084911a67b

View File

@ -71,6 +71,10 @@ macro(qt_internal_include_qt_platform_android)
endif()
endmacro()
macro(qt_internal_include_qt_properties)
include(QtProperties)
endmacro()
macro(qt_internal_set_compiler_optimization_flags)
include(QtCompilerOptimization)
endmacro()
@ -192,6 +196,7 @@ function(qt_internal_get_qt_build_private_helpers out_var)
QtPrecompiledHeadersHelpers
QtPriHelpers
QtPrlHelpers
QtProperties
QtQmakeHelpers
QtResourceHelpers
QtRpathHelpers
@ -421,6 +426,8 @@ macro(qt_internal_setup_build_and_global_variables)
qt_internal_include_qt_platform_android()
qt_internal_include_qt_properties()
# Depends on qt_internal_setup_default_install_prefix
qt_internal_setup_paths_and_prefixes()