summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sync.profile2
-rw-r--r--tests/auto/cmake/CMakeLists.txt13
2 files changed, 12 insertions, 3 deletions
diff --git a/sync.profile b/sync.profile
index bb6601f..7067afc 100644
--- a/sync.profile
+++ b/sync.profile
@@ -11,6 +11,6 @@
# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
#
%dependencies = (
- "qtbase" => "refs/heads/dev",
+ "qtbase" => "refs/heads/stable",
);
diff --git a/tests/auto/cmake/CMakeLists.txt b/tests/auto/cmake/CMakeLists.txt
index f381519..82dd5ef 100644
--- a/tests/auto/cmake/CMakeLists.txt
+++ b/tests/auto/cmake/CMakeLists.txt
@@ -9,7 +9,16 @@ find_package(Qt5Core REQUIRED)
include("${_Qt5CTestMacros}")
+set(qt_module_includes
+ Script QScriptEngine
+)
+
+if (NOT NO_WIDGETS)
+ list(APPEND qt_module_includes
+ ScriptTools QScriptEngineDebugger
+ )
+endif()
+
test_module_includes(
- Script QScriptEngine
- ScriptTools QScriptEngineDebugger
+ ${qt_module_includes}
)