summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmake/testdata/install_depends/foo.pro
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmake/testdata/install_depends/foo.pro')
-rw-r--r--tests/auto/qmake/testdata/install_depends/foo.pro23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/auto/qmake/testdata/install_depends/foo.pro b/tests/auto/qmake/testdata/install_depends/foo.pro
new file mode 100644
index 0000000000..357216bff8
--- /dev/null
+++ b/tests/auto/qmake/testdata/install_depends/foo.pro
@@ -0,0 +1,23 @@
+TEMPLATE=app
+TARGET=foo
+CONFIG -= debug_and_release_target
+
+HEADERS=test_file.h
+SOURCES=\
+ test_file.cpp\
+ main.cpp
+
+test1.files=test1
+test1.path=dist
+INSTALLS+=test1
+
+test2.files=test2
+test2.path=dist
+INSTALLS+=test2
+
+target.path=dist
+target.depends=install_test1 install_test2
+INSTALLS+=target
+
+
+