summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmake/testdata/simple_app/simple_app.pro
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmake/testdata/simple_app/simple_app.pro')
-rw-r--r--tests/auto/qmake/testdata/simple_app/simple_app.pro13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/auto/qmake/testdata/simple_app/simple_app.pro b/tests/auto/qmake/testdata/simple_app/simple_app.pro
new file mode 100644
index 0000000000..a8c4ad613d
--- /dev/null
+++ b/tests/auto/qmake/testdata/simple_app/simple_app.pro
@@ -0,0 +1,13 @@
+TEMPLATE = app
+CONFIG += qt warn_on
+HEADERS = test_file.h
+SOURCES = test_file.cpp \
+ main.cpp
+RESOURCES = test.qrc
+TARGET = simple_app
+DESTDIR = ./
+
+infile($(QTDIR)/.qmake.cache, CONFIG, debug):CONFIG += debug
+infile($(QTDIR)/.qmake.cache, CONFIG, release):CONFIG += release
+
+