2018-11-07 14:20:47 +00:00
|
|
|
# special case begin
|
|
|
|
# Order by dependency [*], then alphabetic. [*] If bugs in part A of
|
|
|
|
# our source would break tests of part B, then test A before B.
|
2018-10-24 13:20:27 +00:00
|
|
|
|
2018-11-07 14:20:47 +00:00
|
|
|
# Build only corelib and gui tests when targeting uikit (iOS),
|
|
|
|
# because the script can't handle the SUBDIRS assignment well.
|
|
|
|
if (UIKIT)
|
|
|
|
add_subdirectory(corelib)
|
|
|
|
if (TARGET Qt::Gui)
|
|
|
|
add_subdirectory(gui)
|
|
|
|
endif()
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_subdirectory(testlib)
|
|
|
|
if (NOT CMAKE_CROSSCOMPILE AND QT_FEATURE_process)
|
|
|
|
add_subdirectory(tools)
|
|
|
|
endif()
|
2019-04-08 15:23:57 +00:00
|
|
|
add_subdirectory(corelib)
|
2018-11-07 14:20:47 +00:00
|
|
|
# add_subdirectory(cmake) ## FIXME: Does this still make sense in this form?
|
|
|
|
if (TARGET Qt::Concurrent)
|
|
|
|
add_subdirectory(concurrent)
|
|
|
|
endif()
|
|
|
|
|
2018-10-24 13:20:27 +00:00
|
|
|
if (QT_FEATURE_dbus)
|
|
|
|
set(run_dbus_tests ON)
|
|
|
|
if(NOT CMAKE_CROSSCOMPILING AND TARGET Qt::DBus)
|
|
|
|
execute_process(COMMAND dbus-send --session --type=signal / local.AutotestCheck.Hello
|
|
|
|
RESULT_VARIABLE dbus_session_test
|
|
|
|
OUTPUT_QUIET ERROR_QUIET)
|
|
|
|
if(NOT "${dbus_session_test}" STREQUAL "0")
|
|
|
|
set(run_dbus_tests OFF)
|
|
|
|
if(QT_FEATURE_dbus_linked)
|
2019-11-22 16:17:59 +00:00
|
|
|
message(WARNING
|
|
|
|
" QtDBus is enabled but session bus is not available for testing.\n"
|
|
|
|
" Please check the installation. Skipping QtDBus tests.")
|
2018-10-24 13:20:27 +00:00
|
|
|
else()
|
2019-11-22 16:17:59 +00:00
|
|
|
message(WARNING
|
|
|
|
" QtDBus is enabled with runtime support, but session bus is not available.\n"
|
|
|
|
" Skipping QtDBus tests.")
|
2018-10-24 13:20:27 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
if(run_dbus_tests)
|
2018-11-02 13:27:57 +00:00
|
|
|
add_subdirectory(dbus)
|
2018-10-24 13:20:27 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
2018-11-07 14:20:47 +00:00
|
|
|
|
2019-04-08 15:23:57 +00:00
|
|
|
if (TARGET Qt::Gui)
|
2018-11-02 13:27:57 +00:00
|
|
|
add_subdirectory(gui)
|
2018-10-24 13:20:27 +00:00
|
|
|
endif()
|
2018-10-30 13:23:48 +00:00
|
|
|
if (TARGET Qt::Network AND NOT WINRT)
|
2019-07-24 11:03:33 +00:00
|
|
|
add_subdirectory(network)
|
2018-10-24 13:20:27 +00:00
|
|
|
endif()
|
|
|
|
if (TARGET Qt::OpenGL AND NOT WINRT)
|
2018-11-02 13:27:57 +00:00
|
|
|
add_subdirectory(opengl)
|
2018-10-24 13:20:27 +00:00
|
|
|
endif()
|
2018-11-07 14:20:47 +00:00
|
|
|
if (TARGET Qt::PrintSupport)
|
|
|
|
add_subdirectory(printsupport)
|
|
|
|
endif()
|
2018-11-02 13:27:57 +00:00
|
|
|
if (TARGET Qt::Sql)
|
|
|
|
add_subdirectory(sql)
|
2018-10-24 13:20:27 +00:00
|
|
|
endif()
|
2018-10-30 13:23:48 +00:00
|
|
|
if (TARGET Qt::Widgets)
|
2018-11-02 13:27:57 +00:00
|
|
|
add_subdirectory(widgets)
|
2018-10-24 13:20:27 +00:00
|
|
|
endif()
|
2018-11-07 14:20:47 +00:00
|
|
|
if (TARGET Qt::Xml)
|
|
|
|
add_subdirectory(xml)
|
2018-10-24 13:20:27 +00:00
|
|
|
endif()
|
2018-11-02 13:27:57 +00:00
|
|
|
# add_subdirectory(installed_cmake) ## FIXME: Does this still make sense in this form?
|
2018-11-07 14:20:47 +00:00
|
|
|
add_subdirectory(other)
|
|
|
|
|
|
|
|
# special case end
|