diff options
Diffstat (limited to 'tests/auto/qmake/testdata/simple_app/simple_app.pro')
-rw-r--r-- | tests/auto/qmake/testdata/simple_app/simple_app.pro | 12 |
1 files changed, 12 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..f496d5bb8e --- /dev/null +++ b/tests/auto/qmake/testdata/simple_app/simple_app.pro @@ -0,0 +1,12 @@ +TEMPLATE = app +CONFIG += qt warn_on +HEADERS = test_file.h +SOURCES = test_file.cpp \ + main.cpp +TARGET = simple_app +DESTDIR = ./ + +infile($(QTDIR)/.qmake.cache, CONFIG, debug):CONFIG += debug +infile($(QTDIR)/.qmake.cache, CONFIG, release):CONFIG += release + + |