Merge remote-tracking branch 'origin/wip/cmake' into dev
Conflicts: tests/manual/rhi/hellominimalcrossgfxtriangle/CMakeLists.txt Hopefully final merge from wip/cmake, and then all cmake changes should target dev directly. Change-Id: I29b04c9b0284e97334877c77a32ffdf887dbf95b
This commit is contained in:
commit
c53ee1f054
@ -2,6 +2,6 @@ find_package(PkgConfig)
|
|||||||
|
|
||||||
pkg_check_modules(Mtdev mtdev IMPORTED_TARGET)
|
pkg_check_modules(Mtdev mtdev IMPORTED_TARGET)
|
||||||
|
|
||||||
if (NOT TARGET PkgConfig::MtDev)
|
if (NOT TARGET PkgConfig::Mtdev)
|
||||||
set(Mtdev_FOUND 0)
|
set(Mtdev_FOUND 0)
|
||||||
endif()
|
endif()
|
||||||
|
26
cmake/Qt3rdPartyLibraryConfig.cmake.in
Normal file
26
cmake/Qt3rdPartyLibraryConfig.cmake.in
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
@PACKAGE_INIT@
|
||||||
|
|
||||||
|
include(CMakeFindDependencyMacro)
|
||||||
|
|
||||||
|
get_filename_component(_import_prefix "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||||
|
get_filename_component(_import_prefix "${_import_prefix}" REALPATH)
|
||||||
|
|
||||||
|
# Extra cmake code begin
|
||||||
|
@extra_cmake_code@
|
||||||
|
# Extra cmake code end
|
||||||
|
|
||||||
|
# Find required dependencies, if any.
|
||||||
|
if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/@INSTALL_CMAKE_NAMESPACE@@target@Dependencies.cmake")
|
||||||
|
include("${CMAKE_CURRENT_LIST_DIR}/@INSTALL_CMAKE_NAMESPACE@@target@Dependencies.cmake")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (NOT QT_NO_CREATE_TARGETS)
|
||||||
|
include("${CMAKE_CURRENT_LIST_DIR}/@INSTALL_CMAKE_NAMESPACE@@target@Targets.cmake")
|
||||||
|
if(NOT QT_NO_CREATE_VERSIONLESS_TARGETS)
|
||||||
|
include("${CMAKE_CURRENT_LIST_DIR}/@INSTALL_CMAKE_NAMESPACE@@target@VersionlessTargets.cmake")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
foreach(extra_cmake_include @extra_cmake_includes@)
|
||||||
|
include("${CMAKE_CURRENT_LIST_DIR}/${extra_cmake_include}")
|
||||||
|
endforeach()
|
@ -1024,7 +1024,14 @@ function(qt_register_target_dependencies target public_libs private_libs)
|
|||||||
set(target_deps "")
|
set(target_deps "")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
foreach(lib IN LISTS public_libs private_libs)
|
# Only process private dependencies if target is a static library
|
||||||
|
get_target_property(target_type ${target} TYPE)
|
||||||
|
set(lib_list ${public_libs})
|
||||||
|
if (target_type STREQUAL "STATIC_LIBRARY")
|
||||||
|
list(APPEND lib_list ${private_libs})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
foreach(lib IN LISTS lib_list)
|
||||||
if ("${lib}" MATCHES "^Qt::(.*)")
|
if ("${lib}" MATCHES "^Qt::(.*)")
|
||||||
set(lib "${CMAKE_MATCH_1}")
|
set(lib "${CMAKE_MATCH_1}")
|
||||||
if (lib STREQUAL Platform
|
if (lib STREQUAL Platform
|
||||||
@ -2929,6 +2936,142 @@ function(qt_add_cmake_library target)
|
|||||||
|
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
|
#
|
||||||
|
# This function replaces qmake's qt_helper_lib feature. It is intended to
|
||||||
|
# compile 3rdparty libraries as part of the build.
|
||||||
|
#
|
||||||
|
function(qt_add_3rdparty_library target)
|
||||||
|
# Process arguments:
|
||||||
|
qt_parse_all_arguments(arg "qt_add_3rdparty_library"
|
||||||
|
"SHARED;MODULE;STATIC;INTERFACE;EXCEPTIONS"
|
||||||
|
"OUTPUT_DIRECTORY"
|
||||||
|
"${__default_private_args};${__default_public_args}"
|
||||||
|
${ARGN}
|
||||||
|
)
|
||||||
|
|
||||||
|
### Define Targets:
|
||||||
|
if(${arg_INTERFACE})
|
||||||
|
add_library("${target}" INTERFACE)
|
||||||
|
elseif(${arg_STATIC} OR (${arg_MODULE} AND NOT BUILD_SHARED_LIBS))
|
||||||
|
add_library("${target}" STATIC)
|
||||||
|
elseif(${arg_SHARED})
|
||||||
|
add_library("${target}" SHARED)
|
||||||
|
elseif(${arg_MODULE})
|
||||||
|
add_library("${target}" MODULE)
|
||||||
|
set_property(TARGET ${name} PROPERTY C_VISIBILITY_PRESET default)
|
||||||
|
set_property(TARGET ${name} PROPERTY CXX_VISIBILITY_PRESET default)
|
||||||
|
|
||||||
|
if(APPLE)
|
||||||
|
# CMake defaults to using .so extensions for loadable modules, aka plugins,
|
||||||
|
# but Qt plugins are actually suffixed with .dylib.
|
||||||
|
set_property(TARGET "${target}" PROPERTY SUFFIX ".dylib")
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
add_library("${target}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (NOT arg_ARCHIVE_INSTALL_DIRECTORY AND arg_INSTALL_DIRECTORY)
|
||||||
|
set(arg_ARCHIVE_INSTALL_DIRECTORY "${arg_INSTALL_DIRECTORY}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
qt_internal_add_qt_repo_known_module(${target})
|
||||||
|
qt_internal_add_target_aliases(${target})
|
||||||
|
|
||||||
|
if (ANDROID)
|
||||||
|
qt_android_apply_arch_suffix("${target}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
qt_skip_warnings_are_errors_when_repo_unclean("${target}")
|
||||||
|
|
||||||
|
if(NOT arg_HEADER_MODULE)
|
||||||
|
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}
|
||||||
|
QT_MODULE_IS_3RDPARTY_LIBRARY TRUE
|
||||||
|
)
|
||||||
|
qt_handle_multi_config_output_dirs("${target}")
|
||||||
|
|
||||||
|
set_target_properties(${target} PROPERTIES
|
||||||
|
OUTPUT_NAME "${INSTALL_CMAKE_NAMESPACE}${target}"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT arg_INTERFACE)
|
||||||
|
# This property is used for super builds with static libraries. We use
|
||||||
|
# it in QtPlugins.cmake.in to avoid "polluting" the dependency chain
|
||||||
|
# for the target in it's project directory.
|
||||||
|
# E.g: When we process find_package(Qt6 ... Gui) in QtDeclarative, the
|
||||||
|
# rules in QtPugins.cmake add all the known Gui plugins as interface
|
||||||
|
# dependencies. This in turn causes circular dependencies on every
|
||||||
|
# plugin which links against Gui. Plugin A -> GUI -> Plugin A ....
|
||||||
|
set_target_properties(${target} PROPERTIES QT_BUILD_PROJECT_NAME ${PROJECT_NAME})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT arg_EXCEPTIONS AND NOT arg_INTERFACE)
|
||||||
|
qt_internal_set_no_exceptions_flags("${target}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
qt_extend_target("${target}"
|
||||||
|
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}
|
||||||
|
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}
|
||||||
|
${install_arguments}
|
||||||
|
)
|
||||||
|
|
||||||
|
if(NOT BUILD_SHARED_LIBS OR arg_SHARED)
|
||||||
|
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")
|
||||||
|
|
||||||
|
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(
|
||||||
|
"${config_build_dir}/${INSTALL_CMAKE_NAMESPACE}${target}ConfigVersion.cmake"
|
||||||
|
VERSION ${PROJECT_VERSION}
|
||||||
|
COMPATIBILITY AnyNewerVersion
|
||||||
|
)
|
||||||
|
|
||||||
|
qt_install(TARGETS ${target}
|
||||||
|
EXPORT "${export_name}"
|
||||||
|
DESTINATION "${config_install_dir}"
|
||||||
|
)
|
||||||
|
|
||||||
|
qt_install(EXPORT ${export_name}
|
||||||
|
NAMESPACE "${QT_CMAKE_EXPORT_NAMESPACE}::"
|
||||||
|
DESTINATION "${config_install_dir}"
|
||||||
|
)
|
||||||
|
|
||||||
|
qt_internal_export_modern_cmake_config_targets_file(
|
||||||
|
TARGETS ${target}
|
||||||
|
EXPORT_NAME_PREFIX ${INSTALL_CMAKE_NAMESPACE}${target}
|
||||||
|
CONFIG_INSTALL_DIR "${config_install_dir}"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
endfunction()
|
||||||
|
|
||||||
function(qt_get_tool_cmake_configuration out_var)
|
function(qt_get_tool_cmake_configuration out_var)
|
||||||
qt_get_main_cmake_configuration("${out_var}")
|
qt_get_main_cmake_configuration("${out_var}")
|
||||||
string(TOUPPER "${${out_var}}" upper_config)
|
string(TOUPPER "${${out_var}}" upper_config)
|
||||||
@ -3343,14 +3486,14 @@ function(qt_add_docs)
|
|||||||
|
|
||||||
get_filename_component(doc_target "${doc_project}" NAME_WLE)
|
get_filename_component(doc_target "${doc_project}" NAME_WLE)
|
||||||
if (QT_WILL_INSTALL)
|
if (QT_WILL_INSTALL)
|
||||||
set(qdoc_output_dir "${CMAKE_BINARY_DIR}/doc/${doc_target}")
|
set(qdoc_output_dir "${CMAKE_BINARY_DIR}/${INSTALL_DOCDIR}/${doc_target}")
|
||||||
set(index_dir "${CMAKE_BINARY_DIR}/doc")
|
set(index_dir "${CMAKE_BINARY_DIR}/${INSTALL_DOCDIR}")
|
||||||
elseif (QT_SUPERBUILD)
|
elseif (QT_SUPERBUILD)
|
||||||
set(qdoc_output_dir "${CMAKE_INSTALL_PREFIX}/qtbase/doc/${doc_target}")
|
set(qdoc_output_dir "${CMAKE_INSTALL_PREFIX}/qtbase/${INSTALL_DOCDIR}/${doc_target}")
|
||||||
set(index_dir "${CMAKE_INSTALL_PREFIX}/qtbase/doc")
|
set(index_dir "${CMAKE_INSTALL_PREFIX}/qtbase/${INSTALL_DOCDIR}")
|
||||||
else()
|
else()
|
||||||
set(qdoc_output_dir "${CMAKE_INSTALL_PREFIX}/doc/${doc_target}")
|
set(qdoc_output_dir "${CMAKE_INSTALL_PREFIX}/${INSTALL_DOCDIR}/${doc_target}")
|
||||||
set(index_dir "${CMAKE_INSTALL_PREFIX}/doc")
|
set(index_dir "${CMAKE_INSTALL_PREFIX}/${INSTALL_DOCDIR}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# qtattributionsscanner
|
# qtattributionsscanner
|
||||||
@ -3365,7 +3508,7 @@ function(qt_add_docs)
|
|||||||
# prepare docs target
|
# prepare docs target
|
||||||
set(prepare_qdoc_args
|
set(prepare_qdoc_args
|
||||||
-outputdir "${qdoc_output_dir}"
|
-outputdir "${qdoc_output_dir}"
|
||||||
-installdir "${QT_INSTALL_DIR}/doc"
|
-installdir "${QT_INSTALL_DIR}/${INSTALL_DOCDIR}"
|
||||||
"${target_source_dir}/${doc_project}"
|
"${target_source_dir}/${doc_project}"
|
||||||
-prepare
|
-prepare
|
||||||
-indexdir "${index_dir}"
|
-indexdir "${index_dir}"
|
||||||
@ -3374,9 +3517,9 @@ function(qt_add_docs)
|
|||||||
)
|
)
|
||||||
|
|
||||||
if (QT_SUPERBUILD AND NOT QT_WILL_INSTALL)
|
if (QT_SUPERBUILD AND NOT QT_WILL_INSTALL)
|
||||||
set(qt_install_docs_env "${CMAKE_INSTALL_PREFIX}/qtbase/doc")
|
set(qt_install_docs_env "${CMAKE_INSTALL_PREFIX}/qtbase/${INSTALL_DOCDIR}")
|
||||||
else()
|
else()
|
||||||
set(qt_install_docs_env "${CMAKE_INSTALL_PREFIX}/doc")
|
set(qt_install_docs_env "${CMAKE_INSTALL_PREFIX}/${INSTALL_DOCDIR}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(qdoc_env_args
|
set(qdoc_env_args
|
||||||
@ -3450,7 +3593,7 @@ function(qt_add_docs)
|
|||||||
COMMAND ${CMAKE_COMMAND} -E copy_directory
|
COMMAND ${CMAKE_COMMAND} -E copy_directory
|
||||||
"${qdoc_output_dir}"
|
"${qdoc_output_dir}"
|
||||||
"${CMAKE_INSTALL_PREFIX}/${INSTALL_DOCDIR}/${doc_target}"
|
"${CMAKE_INSTALL_PREFIX}/${INSTALL_DOCDIR}/${doc_target}"
|
||||||
COMMENT "Installing html docs for target {$target}"
|
COMMENT "Installing html docs for target ${target}"
|
||||||
)
|
)
|
||||||
|
|
||||||
add_custom_target(install_qch_docs_${target}
|
add_custom_target(install_qch_docs_${target}
|
||||||
|
@ -68,9 +68,11 @@ function(qt_internal_create_module_depends_file target)
|
|||||||
set(arg_HEADER_MODULE OFF)
|
set(arg_HEADER_MODULE OFF)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT arg_HEADER_MODULE)
|
set(depends "")
|
||||||
|
if(target_type STREQUAL "STATIC_LIBRARY" AND NOT arg_HEADER_MODULE)
|
||||||
get_target_property(depends "${target}" LINK_LIBRARIES)
|
get_target_property(depends "${target}" LINK_LIBRARIES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
get_target_property(public_depends "${target}" INTERFACE_LINK_LIBRARIES)
|
get_target_property(public_depends "${target}" INTERFACE_LINK_LIBRARIES)
|
||||||
|
|
||||||
# Used for collecting Qt module dependencies that should be find_package()'d in
|
# Used for collecting Qt module dependencies that should be find_package()'d in
|
||||||
|
@ -18,14 +18,11 @@ add_qt_gui_executable(hellowindow
|
|||||||
hellowindow.cpp hellowindow.h
|
hellowindow.cpp hellowindow.h
|
||||||
main.cpp
|
main.cpp
|
||||||
)
|
)
|
||||||
target_link_libraries(hellowindow PRIVATE
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
)
|
|
||||||
|
|
||||||
target_link_libraries(hellowindow PUBLIC
|
target_link_libraries(hellowindow PUBLIC
|
||||||
Qt::Core
|
Qt::Core
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
install(TARGETS hellowindow
|
install(TARGETS hellowindow
|
||||||
|
@ -18,14 +18,11 @@ add_executable(windows
|
|||||||
main.cpp
|
main.cpp
|
||||||
window.cpp window.h
|
window.cpp window.h
|
||||||
)
|
)
|
||||||
target_link_libraries(windows PRIVATE
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
)
|
|
||||||
|
|
||||||
target_link_libraries(windows PUBLIC
|
target_link_libraries(windows PUBLIC
|
||||||
Qt::Core
|
Qt::Core
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
install(TARGETS windows
|
install(TARGETS windows
|
||||||
|
@ -737,6 +737,10 @@ function(qt6_generate_meta_types_json_file target)
|
|||||||
file(MAKE_DIRECTORY "${target_binary_dir}/meta_types")
|
file(MAKE_DIRECTORY "${target_binary_dir}/meta_types")
|
||||||
file(TOUCH ${metatypes_file})
|
file(TOUCH ${metatypes_file})
|
||||||
endif()
|
endif()
|
||||||
|
if (arg_COPY_OVER_INSTALL AND NOT EXISTS ${arg_INSTALL_DIR}/${metatypes_file_name})
|
||||||
|
file(MAKE_DIRECTORY "${arg_INSTALL_DIR}")
|
||||||
|
file(TOUCH "${arg_INSTALL_DIR}/${metatypes_file_name}")
|
||||||
|
endif()
|
||||||
add_custom_command(OUTPUT ${metatypes_file_gen} ${metatypes_file}
|
add_custom_command(OUTPUT ${metatypes_file_gen} ${metatypes_file}
|
||||||
DEPENDS ${QT_CMAKE_EXPORT_NAMESPACE}::moc ${automoc_dependencies} ${manual_dependencies}
|
DEPENDS ${QT_CMAKE_EXPORT_NAMESPACE}::moc ${automoc_dependencies} ${manual_dependencies}
|
||||||
COMMAND ${QT_CMAKE_EXPORT_NAMESPACE}::moc
|
COMMAND ${QT_CMAKE_EXPORT_NAMESPACE}::moc
|
||||||
|
@ -122,7 +122,13 @@ qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_vulkan
|
|||||||
Qt::VulkanSupportPrivate
|
Qt::VulkanSupportPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 5:.:.:windows.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
|
qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_directwrite3
|
||||||
|
DEFINES
|
||||||
|
QT_USE_DIRECTWRITE2
|
||||||
|
QT_USE_DIRECTWRITE3
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 6:.:.:windows.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
|
||||||
# PLUGIN_EXTENDS = "-"
|
# PLUGIN_EXTENDS = "-"
|
||||||
|
|
||||||
qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_opengl AND NOT QT_FEATURE_dynamicgl AND NOT QT_FEATURE_opengles2
|
qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_opengl AND NOT QT_FEATURE_dynamicgl AND NOT QT_FEATURE_opengles2
|
||||||
|
@ -123,7 +123,13 @@ qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_vulkan
|
|||||||
Qt::VulkanSupportPrivate
|
Qt::VulkanSupportPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 5:.:.:windows.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
|
qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_directwrite3
|
||||||
|
DEFINES
|
||||||
|
QT_USE_DIRECTWRITE2
|
||||||
|
QT_USE_DIRECTWRITE3
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 6:.:.:windows.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
|
||||||
# PLUGIN_EXTENDS = "-"
|
# PLUGIN_EXTENDS = "-"
|
||||||
|
|
||||||
qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_opengl AND NOT QT_FEATURE_dynamicgl AND NOT QT_FEATURE_opengles2
|
qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_opengl AND NOT QT_FEATURE_dynamicgl AND NOT QT_FEATURE_opengles2
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qpauseanimation
|
add_qt_test(tst_qpauseanimation
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qpauseanimation.cpp
|
tst_qpauseanimation.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -10,6 +10,6 @@ add_qt_test(tst_qglobalstatic
|
|||||||
tst_qglobalstatic.cpp
|
tst_qglobalstatic.cpp
|
||||||
DEFINES
|
DEFINES
|
||||||
SRCDIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}/\\\"
|
SRCDIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}/\\\"
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qhooks
|
add_qt_test(tst_qhooks
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qhooks.cpp
|
tst_qhooks.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
add_qt_test(tst_qnumeric
|
add_qt_test(tst_qnumeric
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qnumeric.cpp
|
tst_qnumeric.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qrandomgenerator
|
add_qt_test(tst_qrandomgenerator
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qrandomgenerator.cpp
|
tst_qrandomgenerator.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qtendian
|
add_qt_test(tst_qtendian
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qtendian.cpp
|
tst_qtendian.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
add_qt_test(tst_qabstractfileengine
|
add_qt_test(tst_qabstractfileengine
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qabstractfileengine.cpp
|
tst_qabstractfileengine.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qdataurl
|
add_qt_test(tst_qdataurl
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qdataurl.cpp
|
tst_qdataurl.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -16,7 +16,7 @@ list(APPEND test_data "tst_qdir.cpp")
|
|||||||
add_qt_test(tst_qdir
|
add_qt_test(tst_qdir
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qdir.cpp
|
tst_qdir.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
TESTDATA ${test_data}
|
TESTDATA ${test_data}
|
||||||
)
|
)
|
||||||
|
@ -10,7 +10,7 @@ list(APPEND test_data "entrylist")
|
|||||||
add_qt_test(tst_qdiriterator
|
add_qt_test(tst_qdiriterator
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qdiriterator.cpp
|
tst_qdiriterator.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
TESTDATA ${test_data}
|
TESTDATA ${test_data}
|
||||||
)
|
)
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
add_qt_test(tst_qfileinfo
|
add_qt_test(tst_qfileinfo
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qfileinfo.cpp
|
tst_qfileinfo.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -8,6 +8,6 @@ add_qt_test(tst_qfilesystementry
|
|||||||
SOURCES
|
SOURCES
|
||||||
${QT_SOURCE_TREE}/src/corelib/io/qfilesystementry.cpp ${QT_SOURCE_TREE}/src/corelib/io/qfilesystementry_p.h
|
${QT_SOURCE_TREE}/src/corelib/io/qfilesystementry.cpp ${QT_SOURCE_TREE}/src/corelib/io/qfilesystementry_p.h
|
||||||
tst_qfilesystementry.cpp
|
tst_qfilesystementry.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qfilesystemmetadata
|
add_qt_test(tst_qfilesystemmetadata
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qfilesystemmetadata.cpp
|
tst_qfilesystemmetadata.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qipaddress
|
add_qt_test(tst_qipaddress
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qipaddress.cpp
|
tst_qipaddress.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
add_qt_test(tst_qloggingcategory
|
add_qt_test(tst_qloggingcategory
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qloggingcategory.cpp
|
tst_qloggingcategory.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ list(APPEND test_data "qtlogging.ini")
|
|||||||
add_qt_test(tst_qloggingregistry
|
add_qt_test(tst_qloggingregistry
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qloggingregistry.cpp
|
tst_qloggingregistry.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
TESTDATA ${test_data}
|
TESTDATA ${test_data}
|
||||||
)
|
)
|
||||||
|
@ -11,9 +11,8 @@ add_qt_test(tst_qsettings
|
|||||||
QT_DISABLE_DEPRECATED_BEFORE=0
|
QT_DISABLE_DEPRECATED_BEFORE=0
|
||||||
INCLUDE_DIRECTORIES
|
INCLUDE_DIRECTORIES
|
||||||
../../kernel/qmetatype
|
../../kernel/qmetatype
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qstorageinfo
|
add_qt_test(tst_qstorageinfo
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qstorageinfo.cpp
|
tst_qstorageinfo.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -10,6 +10,6 @@ add_qt_test(tst_qtemporarydir
|
|||||||
tst_qtemporarydir.cpp
|
tst_qtemporarydir.cpp
|
||||||
INCLUDE_DIRECTORIES
|
INCLUDE_DIRECTORIES
|
||||||
../../../../shared
|
../../../../shared
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::TestPrivate
|
Qt::TestPrivate
|
||||||
)
|
)
|
||||||
|
@ -10,7 +10,7 @@ list(APPEND test_data "tst_qtemporaryfile.cpp")
|
|||||||
add_qt_test(tst_qtemporaryfile
|
add_qt_test(tst_qtemporaryfile
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qtemporaryfile.cpp
|
tst_qtemporaryfile.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::TestPrivate
|
Qt::TestPrivate
|
||||||
TESTDATA ${test_data}
|
TESTDATA ${test_data}
|
||||||
)
|
)
|
||||||
|
@ -12,7 +12,7 @@ add_qt_test(tst_qurlinternal
|
|||||||
SOURCES
|
SOURCES
|
||||||
../../codecs/utf8/utf8data.cpp
|
../../codecs/utf8/utf8data.cpp
|
||||||
tst_qurlinternal.cpp
|
tst_qurlinternal.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -9,6 +9,6 @@ add_qt_test(tst_qurlquery
|
|||||||
tst_qurlquery.cpp
|
tst_qurlquery.cpp
|
||||||
DEFINES
|
DEFINES
|
||||||
SRCDIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}/\\\"
|
SRCDIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}/\\\"
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qeventloop
|
add_qt_test(tst_qeventloop
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qeventloop.cpp
|
tst_qeventloop.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Network
|
Qt::Network
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
add_qt_test(tst_qmetaobject
|
add_qt_test(tst_qmetaobject
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qmetaobject.cpp
|
tst_qmetaobject.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qmetaobjectbuilder
|
add_qt_test(tst_qmetaobjectbuilder
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qmetaobjectbuilder.cpp
|
tst_qmetaobjectbuilder.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -15,7 +15,7 @@ add_qt_test(tst_qmetatype
|
|||||||
QT_DISABLE_DEPRECATED_BEFORE=0
|
QT_DISABLE_DEPRECATED_BEFORE=0
|
||||||
INCLUDE_DIRECTORIES
|
INCLUDE_DIRECTORIES
|
||||||
../../../other/qvariant_common
|
../../../other/qvariant_common
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
TESTDATA ${test_data}
|
TESTDATA ${test_data}
|
||||||
)
|
)
|
||||||
|
@ -15,7 +15,7 @@ add_qt_test(tst_qmetatype
|
|||||||
QT_DISABLE_DEPRECATED_BEFORE=0
|
QT_DISABLE_DEPRECATED_BEFORE=0
|
||||||
INCLUDE_DIRECTORIES
|
INCLUDE_DIRECTORIES
|
||||||
../../../other/qvariant_common
|
../../../other/qvariant_common
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
TESTDATA ${test_data}
|
TESTDATA ${test_data}
|
||||||
)
|
)
|
||||||
|
@ -13,11 +13,10 @@ add_qt_test(tst_qsocketnotifier
|
|||||||
tst_qsocketnotifier.cpp
|
tst_qsocketnotifier.cpp
|
||||||
INCLUDE_DIRECTORIES
|
INCLUDE_DIRECTORIES
|
||||||
${QT_SOURCE_TREE}/src/network
|
${QT_SOURCE_TREE}/src/network
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::NetworkPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Network
|
Qt::Network
|
||||||
|
Qt::NetworkPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 1:.:.:qsocketnotifier.pro:<TRUE>:
|
#### Keys ignored in scope 1:.:.:qsocketnotifier.pro:<TRUE>:
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
add_qt_test(tst_qtimer
|
add_qt_test(tst_qtimer
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qtimer.cpp
|
tst_qtimer.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ add_qt_test(tst_qvariant
|
|||||||
QT_DISABLE_DEPRECATED_BEFORE=0
|
QT_DISABLE_DEPRECATED_BEFORE=0
|
||||||
INCLUDE_DIRECTORIES
|
INCLUDE_DIRECTORIES
|
||||||
../../../other/qvariant_common
|
../../../other/qvariant_common
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ add_qt_test(tst_qvariant
|
|||||||
QT_DISABLE_DEPRECATED_BEFORE=0
|
QT_DISABLE_DEPRECATED_BEFORE=0
|
||||||
INCLUDE_DIRECTORIES
|
INCLUDE_DIRECTORIES
|
||||||
../../../other/qvariant_common
|
../../../other/qvariant_common
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qwineventnotifier
|
add_qt_test(tst_qwineventnotifier
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qwineventnotifier.cpp
|
tst_qwineventnotifier.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qmimetype
|
add_qt_test(tst_qmimetype
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qmimetype.cpp
|
tst_qmimetype.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -10,7 +10,7 @@ add_qt_test(tst_qfactoryloader
|
|||||||
../plugin1/plugininterface1.h
|
../plugin1/plugininterface1.h
|
||||||
../plugin2/plugininterface2.h
|
../plugin2/plugininterface2.h
|
||||||
../tst_qfactoryloader.cpp
|
../tst_qfactoryloader.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ add_qt_test(tst_qfactoryloader
|
|||||||
../plugin1/plugininterface1.h
|
../plugin1/plugininterface1.h
|
||||||
../plugin2/plugininterface2.h
|
../plugin2/plugininterface2.h
|
||||||
../tst_qfactoryloader.cpp
|
../tst_qfactoryloader.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -23,10 +23,8 @@ add_qt_test(tst_qpluginloader
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
extend_target(tst_qpluginloader CONDITION QT_FEATURE_private_tests
|
extend_target(tst_qpluginloader CONDITION QT_FEATURE_private_tests
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Core
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
extend_target(tst_qpluginloader CONDITION CMAKE_BUILD_TYPE STREQUAL Debug AND WIN32 AND debug_and_release
|
extend_target(tst_qpluginloader CONDITION CMAKE_BUILD_TYPE STREQUAL Debug AND WIN32 AND debug_and_release
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
add_qt_test(tst_json
|
add_qt_test(tst_json
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qtjson.cpp
|
tst_qtjson.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qbytedatabuffer
|
add_qt_test(tst_qbytedatabuffer
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qbytedatabuffer.cpp
|
tst_qbytedatabuffer.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qstringiterator
|
add_qt_test(tst_qstringiterator
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qstringiterator.cpp
|
tst_qstringiterator.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -9,6 +9,6 @@ add_qt_test(tst_qfuture
|
|||||||
tst_qfuture.cpp
|
tst_qfuture.cpp
|
||||||
DEFINES
|
DEFINES
|
||||||
-QT_NO_JAVA_STYLE_ITERATORS
|
-QT_NO_JAVA_STYLE_ITERATORS
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -10,6 +10,6 @@ add_qt_test(tst_qfuture
|
|||||||
DEFINES
|
DEFINES
|
||||||
# -QT_NO_JAVA_STYLE_ITERATORS # special case
|
# -QT_NO_JAVA_STYLE_ITERATORS # special case
|
||||||
QT_STRICT_ITERATORS
|
QT_STRICT_ITERATORS
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,8 +7,7 @@
|
|||||||
add_qt_test(tst_qfuturewatcher
|
add_qt_test(tst_qfuturewatcher
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qfuturewatcher.cpp
|
tst_qfuturewatcher.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Concurrent
|
Qt::Concurrent
|
||||||
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -13,8 +13,6 @@ add_qt_test(tst_qmutex
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
extend_target(tst_qmutex CONDITION WIN32
|
extend_target(tst_qmutex CONDITION WIN32
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Core
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qresultstore
|
add_qt_test(tst_qresultstore
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qresultstore.cpp
|
tst_qresultstore.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qdate
|
add_qt_test(tst_qdate
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qdate.cpp
|
tst_qdate.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
add_qt_test(tst_qdatetime
|
add_qt_test(tst_qdatetime
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qdatetime.cpp
|
tst_qdatetime.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
add_qt_test(tst_qtimezone
|
add_qt_test(tst_qtimezone
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qtimezone.cpp
|
tst_qtimezone.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qmakearray
|
add_qt_test(tst_qmakearray
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qmakearray.cpp
|
tst_qmakearray.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
add_qt_test(tst_qringbuffer
|
add_qt_test(tst_qringbuffer
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qringbuffer.cpp
|
tst_qringbuffer.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
)
|
)
|
||||||
|
@ -8,11 +8,9 @@ add_qt_test(tst_qdbusmarshall
|
|||||||
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../"
|
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../"
|
||||||
SOURCES
|
SOURCES
|
||||||
../tst_qdbusmarshall.cpp
|
../tst_qdbusmarshall.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::DBusPrivate
|
Qt::DBusPrivate
|
||||||
PUBLIC_LIBRARIES
|
|
||||||
Qt::DBus
|
|
||||||
)
|
)
|
||||||
|
|
||||||
## Scopes:
|
## Scopes:
|
||||||
|
@ -8,11 +8,9 @@ add_qt_test(tst_qdbusmarshall
|
|||||||
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../"
|
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../"
|
||||||
SOURCES
|
SOURCES
|
||||||
../tst_qdbusmarshall.cpp
|
../tst_qdbusmarshall.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::DBusPrivate
|
Qt::DBusPrivate
|
||||||
PUBLIC_LIBRARIES
|
|
||||||
Qt::DBus
|
|
||||||
)
|
)
|
||||||
|
|
||||||
## Scopes:
|
## Scopes:
|
||||||
|
@ -7,8 +7,6 @@
|
|||||||
add_qt_test(tst_qdbusmetaobject
|
add_qt_test(tst_qdbusmetaobject
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qdbusmetaobject.cpp
|
tst_qdbusmetaobject.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::DBusPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::DBus
|
Qt::DBusPrivate
|
||||||
)
|
)
|
||||||
|
@ -7,11 +7,9 @@
|
|||||||
add_qt_test(tst_qdbustype
|
add_qt_test(tst_qdbustype
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qdbustype.cpp
|
tst_qdbustype.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::DBusPrivate
|
Qt::DBusPrivate
|
||||||
PUBLIC_LIBRARIES
|
|
||||||
Qt::DBus
|
|
||||||
)
|
)
|
||||||
|
|
||||||
## Scopes:
|
## Scopes:
|
||||||
|
@ -7,10 +7,8 @@
|
|||||||
add_qt_test(tst_qdbusxmlparser
|
add_qt_test(tst_qdbusxmlparser
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qdbusxmlparser.cpp
|
tst_qdbusxmlparser.cpp
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::DBusPrivate
|
Qt::DBusPrivate
|
||||||
PUBLIC_LIBRARIES
|
|
||||||
Qt::DBus
|
|
||||||
Qt::Xml
|
Qt::Xml
|
||||||
)
|
)
|
||||||
|
@ -13,11 +13,10 @@ list(APPEND test_data ${test_data_glob})
|
|||||||
add_qt_test(tst_qimage
|
add_qt_test(tst_qimage
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qimage.cpp
|
tst_qimage.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
TESTDATA ${test_data}
|
TESTDATA ${test_data}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -17,11 +17,10 @@ list(APPEND test_data ${test_data_glob})
|
|||||||
add_qt_test(tst_qimagereader
|
add_qt_test(tst_qimagereader
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qimagereader.cpp
|
tst_qimagereader.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
Qt::Network
|
Qt::Network
|
||||||
TESTDATA ${test_data}
|
TESTDATA ${test_data}
|
||||||
)
|
)
|
||||||
|
@ -25,11 +25,10 @@ list(APPEND test_data ${test_data_glob})
|
|||||||
add_qt_test(tst_qpixmap
|
add_qt_test(tst_qpixmap
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qpixmap.cpp
|
tst_qpixmap.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
TESTDATA ${test_data}
|
TESTDATA ${test_data}
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -96,10 +95,9 @@ add_qt_resource(tst_qpixmap "qpixmap"
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
extend_target(tst_qpixmap CONDITION TARGET Qt::Widgets
|
extend_target(tst_qpixmap CONDITION TARGET Qt::Widgets
|
||||||
LIBRARIES
|
|
||||||
Qt::WidgetsPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Widgets
|
Qt::Widgets
|
||||||
|
Qt::WidgetsPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
extend_target(tst_qpixmap CONDITION WIN32 AND NOT WINRT
|
extend_target(tst_qpixmap CONDITION WIN32 AND NOT WINRT
|
||||||
|
@ -7,8 +7,7 @@
|
|||||||
add_qt_test(tst_qpixmapcache
|
add_qt_test(tst_qpixmapcache
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qpixmapcache.cpp
|
tst_qpixmapcache.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
@ -7,11 +7,10 @@
|
|||||||
add_qt_test(tst_noqteventloop
|
add_qt_test(tst_noqteventloop
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_noqteventloop.cpp
|
tst_noqteventloop.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
Qt::Network
|
Qt::Network
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qbackingstore
|
add_qt_test(tst_qbackingstore
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qbackingstore.cpp
|
tst_qbackingstore.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
@ -16,11 +16,9 @@ add_qt_test(tst_qguiapplication
|
|||||||
QT_DISABLE_DEPRECATED_BEFORE=0x050E00
|
QT_DISABLE_DEPRECATED_BEFORE=0x050E00
|
||||||
INCLUDE_DIRECTORIES
|
INCLUDE_DIRECTORIES
|
||||||
../../../corelib/kernel/qcoreapplication
|
../../../corelib/kernel/qcoreapplication
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::GuiPrivate
|
Qt::GuiPrivate
|
||||||
PUBLIC_LIBRARIES
|
|
||||||
Qt::Gui
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# Resources:
|
# Resources:
|
||||||
|
@ -16,11 +16,9 @@ add_qt_test(tst_qguiapplication
|
|||||||
QT_DISABLE_DEPRECATED_BEFORE=0x050E00
|
QT_DISABLE_DEPRECATED_BEFORE=0x050E00
|
||||||
INCLUDE_DIRECTORIES
|
INCLUDE_DIRECTORIES
|
||||||
../../../corelib/kernel/qcoreapplication
|
../../../corelib/kernel/qcoreapplication
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::GuiPrivate
|
Qt::GuiPrivate
|
||||||
PUBLIC_LIBRARIES
|
|
||||||
Qt::Gui
|
|
||||||
Threads::Threads # special case
|
Threads::Threads # special case
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qguieventloop
|
add_qt_test(tst_qguieventloop
|
||||||
SOURCES
|
SOURCES
|
||||||
../../../corelib/kernel/qeventloop/tst_qeventloop.cpp
|
../../../corelib/kernel/qeventloop/tst_qeventloop.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
Qt::Network
|
Qt::Network
|
||||||
)
|
)
|
||||||
|
@ -7,8 +7,7 @@
|
|||||||
add_qt_test(tst_qguitimer
|
add_qt_test(tst_qguitimer
|
||||||
SOURCES
|
SOURCES
|
||||||
../../../corelib/kernel/qtimer/tst_qtimer.cpp
|
../../../corelib/kernel/qtimer/tst_qtimer.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
)
|
)
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qguitimer
|
add_qt_test(tst_qguitimer
|
||||||
SOURCES
|
SOURCES
|
||||||
../../../corelib/kernel/qtimer/tst_qtimer.cpp
|
../../../corelib/kernel/qtimer/tst_qtimer.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
Threads::Threads # special case
|
Threads::Threads # special case
|
||||||
)
|
)
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qinputmethod
|
add_qt_test(tst_qinputmethod
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qinputmethod.cpp
|
tst_qinputmethod.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
@ -7,11 +7,10 @@
|
|||||||
add_qt_test(tst_qkeysequence
|
add_qt_test(tst_qkeysequence
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qkeysequence.cpp
|
tst_qkeysequence.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
# Resources:
|
# Resources:
|
||||||
|
@ -7,10 +7,9 @@
|
|||||||
add_qt_test(tst_qopenglwindow
|
add_qt_test(tst_qopenglwindow
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qopenglwindow.cpp
|
tst_qopenglwindow.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
Qt::OpenGL
|
Qt::OpenGL
|
||||||
)
|
)
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qrasterwindow
|
add_qt_test(tst_qrasterwindow
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qrasterwindow.cpp
|
tst_qrasterwindow.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qscreen
|
add_qt_test(tst_qscreen
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qscreen.cpp
|
tst_qscreen.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qsurfaceformat
|
add_qt_test(tst_qsurfaceformat
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qsurfaceformat.cpp
|
tst_qsurfaceformat.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qtouchevent
|
add_qt_test(tst_qtouchevent
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qtouchevent.cpp
|
tst_qtouchevent.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
Qt::Widgets
|
Qt::Widgets
|
||||||
)
|
)
|
||||||
|
@ -7,11 +7,10 @@
|
|||||||
add_qt_test(tst_qwindow
|
add_qt_test(tst_qwindow
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qwindow.cpp
|
tst_qwindow.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
## Scopes:
|
## Scopes:
|
||||||
|
@ -7,11 +7,10 @@
|
|||||||
add_qt_test(tst_qopengl
|
add_qt_test(tst_qopengl
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qopengl.cpp
|
tst_qopengl.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
Qt::OpenGL
|
Qt::OpenGL
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -10,10 +10,9 @@ list(APPEND test_data "buglist.json")
|
|||||||
add_qt_test(tst_qopenglconfig
|
add_qt_test(tst_qopenglconfig
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qopenglconfig.cpp
|
tst_qopenglconfig.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
TESTDATA ${test_data}
|
TESTDATA ${test_data}
|
||||||
)
|
)
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qvulkan
|
add_qt_test(tst_qvulkan
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qvulkan.cpp
|
tst_qvulkan.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
@ -7,10 +7,9 @@
|
|||||||
add_qt_test(tst_qrhi
|
add_qt_test(tst_qrhi
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qrhi.cpp
|
tst_qrhi.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
# Resources:
|
# Resources:
|
||||||
|
@ -7,10 +7,9 @@
|
|||||||
add_qt_test(tst_qshader
|
add_qt_test(tst_qshader
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qshader.cpp
|
tst_qshader.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
# Resources:
|
# Resources:
|
||||||
|
@ -16,10 +16,9 @@ add_qt_test(tst_qcssparser
|
|||||||
tst_qcssparser.cpp
|
tst_qcssparser.cpp
|
||||||
DEFINES
|
DEFINES
|
||||||
SRCDIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}\\\"
|
SRCDIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}\\\"
|
||||||
LIBRARIES
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
Qt::Xml
|
Qt::Xml
|
||||||
TESTDATA ${test_data}
|
TESTDATA ${test_data}
|
||||||
)
|
)
|
||||||
|
@ -7,11 +7,10 @@
|
|||||||
add_qt_test(tst_qfont
|
add_qt_test(tst_qfont
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qfont.cpp
|
tst_qfont.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
# Resources:
|
# Resources:
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qfontcache
|
add_qt_test(tst_qfontcache
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qfontcache.cpp
|
tst_qfontcache.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
@ -10,11 +10,10 @@ list(APPEND test_data "LED_REAL.TTF")
|
|||||||
add_qt_test(tst_qfontdatabase
|
add_qt_test(tst_qfontdatabase
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qfontdatabase.cpp
|
tst_qfontdatabase.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
TESTDATA ${test_data}
|
TESTDATA ${test_data}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,11 +7,10 @@
|
|||||||
add_qt_test(tst_qfontmetrics
|
add_qt_test(tst_qfontmetrics
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qfontmetrics.cpp
|
tst_qfontmetrics.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
# Resources:
|
# Resources:
|
||||||
|
@ -7,8 +7,7 @@
|
|||||||
add_qt_test(tst_qinputcontrol
|
add_qt_test(tst_qinputcontrol
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qinputcontrol.cpp
|
tst_qinputcontrol.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
@ -7,11 +7,10 @@
|
|||||||
add_qt_test(tst_qrawfont
|
add_qt_test(tst_qrawfont
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qrawfont.cpp
|
tst_qrawfont.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
# Resources:
|
# Resources:
|
||||||
|
@ -15,10 +15,7 @@ add_qt_test(tst_qstatictext
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
extend_target(tst_qstatictext CONDITION QT_FEATURE_private_tests
|
extend_target(tst_qstatictext CONDITION QT_FEATURE_private_tests
|
||||||
LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::GuiPrivate
|
Qt::GuiPrivate
|
||||||
PUBLIC_LIBRARIES
|
|
||||||
Qt::Core
|
|
||||||
Qt::Gui
|
|
||||||
)
|
)
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qtextblock
|
add_qt_test(tst_qtextblock
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qtextblock.cpp
|
tst_qtextblock.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qtextcursor
|
add_qt_test(tst_qtextcursor
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qtextcursor.cpp
|
tst_qtextcursor.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
@ -8,10 +8,9 @@ add_qt_test(tst_qtextdocument
|
|||||||
SOURCES
|
SOURCES
|
||||||
common.h
|
common.h
|
||||||
tst_qtextdocument.cpp
|
tst_qtextdocument.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
Qt::Xml
|
Qt::Xml
|
||||||
)
|
)
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qtextdocumentfragment
|
add_qt_test(tst_qtextdocumentfragment
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qtextdocumentfragment.cpp
|
tst_qtextdocumentfragment.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
@ -7,9 +7,8 @@
|
|||||||
add_qt_test(tst_qtextformat
|
add_qt_test(tst_qtextformat
|
||||||
SOURCES
|
SOURCES
|
||||||
tst_qtextformat.cpp
|
tst_qtextformat.cpp
|
||||||
LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
Qt::GuiPrivate
|
||||||
)
|
)
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user