aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/pch/pch.qbp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/pch/pch.qbp')
-rw-r--r--tests/manual/pch/pch.qbp13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/manual/pch/pch.qbp b/tests/manual/pch/pch.qbp
new file mode 100644
index 000000000..664d134e6
--- /dev/null
+++ b/tests/manual/pch/pch.qbp
@@ -0,0 +1,13 @@
+import qbs.base 1.0
+
+Product {
+ type: "application"
+ name: "pch"
+ files: ["stable.h",
+ "myobject.h",
+ "main.cpp",
+ "myobject.cpp"]
+ Depends { name: "cpp" }
+ cpp.precompiledHeader: "stable.h"
+}
+