aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/utils/tasktree/tasktree.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/utils/tasktree/tasktree.qbs')
-rw-r--r--tests/auto/utils/tasktree/tasktree.qbs27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/auto/utils/tasktree/tasktree.qbs b/tests/auto/utils/tasktree/tasktree.qbs
deleted file mode 100644
index ed138d9f393..00000000000
--- a/tests/auto/utils/tasktree/tasktree.qbs
+++ /dev/null
@@ -1,27 +0,0 @@
-import qbs.FileInfo
-
-Project {
- QtcAutotest {
- name: "TaskTree autotest"
-
- Depends { name: "Utils" }
- Depends { name: "app_version_header" }
-
- files: [
- "tst_tasktree.cpp",
- ]
- cpp.defines: {
- var defines = base;
- if (qbs.targetOS === "windows")
- defines.push("_CRT_SECURE_NO_WARNINGS");
- var absLibExecPath = FileInfo.joinPaths(qbs.installRoot, qbs.installPrefix,
- qtc.ide_libexec_path);
- var relLibExecPath = FileInfo.relativePath(destinationDirectory, absLibExecPath);
- defines.push('TEST_RELATIVE_LIBEXEC_PATH="' + relLibExecPath + '"');
- defines.push('TESTAPP_PATH="'
- + FileInfo.joinPaths(destinationDirectory, "testapp") + '"');
- return defines;
- }
- }
- references: "testapp/testapp.qbs"
-}