aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/lib_samesource/lib.qbp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/lib_samesource/lib.qbp')
-rw-r--r--tests/manual/lib_samesource/lib.qbp22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/manual/lib_samesource/lib.qbp b/tests/manual/lib_samesource/lib.qbp
new file mode 100644
index 000000000..36ecb4d19
--- /dev/null
+++ b/tests/manual/lib_samesource/lib.qbp
@@ -0,0 +1,22 @@
+import qbs.base 1.0
+
+Project {
+ Product {
+ type: "application"
+ name : "HelloWorld"
+ Depends { name: 'cpp' }
+ Group {
+ files : [ "main.cpp" ]
+ }
+ }
+
+ Product {
+ type: "staticlibrary"
+ name : "HelloWorld"
+ Depends { name: 'cpp' }
+ Group {
+ files : [ "main.cpp" ]
+ }
+ }
+}
+