2021-11-18 20:42:59 +00:00
|
|
|
# The configure.cmake here does not get picked up automatically.
|
|
|
|
# Manually evaluate tool-related features.
|
|
|
|
include("${CMAKE_CURRENT_SOURCE_DIR}/configure.cmake")
|
|
|
|
qt_feature_evaluate_features("${CMAKE_CURRENT_SOURCE_DIR}/configure.cmake")
|
|
|
|
|
2018-10-24 13:20:27 +00:00
|
|
|
add_subdirectory(uic)
|
2018-10-30 09:29:33 +00:00
|
|
|
if (QT_FEATURE_dbus)
|
|
|
|
add_subdirectory(qdbuscpp2xml)
|
|
|
|
add_subdirectory(qdbusxml2cpp)
|
|
|
|
endif()
|
2018-10-30 12:12:23 +00:00
|
|
|
add_subdirectory(qlalr)
|
2018-10-24 13:20:27 +00:00
|
|
|
add_subdirectory(qvkgen)
|
2021-03-09 16:51:31 +00:00
|
|
|
if (QT_FEATURE_commandlineparser)
|
|
|
|
add_subdirectory(qtpaths)
|
|
|
|
endif()
|
2019-06-05 10:07:42 +00:00
|
|
|
|
2021-11-18 20:42:59 +00:00
|
|
|
if(QT_FEATURE_androiddeployqt)
|
2019-06-05 10:07:42 +00:00
|
|
|
add_subdirectory(androiddeployqt)
|
2021-04-14 06:04:14 +00:00
|
|
|
if(QT_FEATURE_gui AND QT_FEATURE_systemsemaphore)
|
2020-09-03 14:01:05 +00:00
|
|
|
add_subdirectory(androidtestrunner)
|
|
|
|
endif()
|
2019-06-05 10:07:42 +00:00
|
|
|
endif()
|
2021-11-18 13:52:19 +00:00
|
|
|
|
|
|
|
if(QT_FEATURE_macdeployqt)
|
|
|
|
add_subdirectory(macdeployqt)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(QT_FEATURE_windeployqt)
|
|
|
|
add_subdirectory(windeployqt)
|
|
|
|
endif()
|