summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmake/testdata/subdirs/simple_dll/simple_dll.pro
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmake/testdata/subdirs/simple_dll/simple_dll.pro')
-rw-r--r--tests/auto/qmake/testdata/subdirs/simple_dll/simple_dll.pro20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/auto/qmake/testdata/subdirs/simple_dll/simple_dll.pro b/tests/auto/qmake/testdata/subdirs/simple_dll/simple_dll.pro
new file mode 100644
index 0000000000..a54a07a0e7
--- /dev/null
+++ b/tests/auto/qmake/testdata/subdirs/simple_dll/simple_dll.pro
@@ -0,0 +1,20 @@
+include($(QTDIR)/.qmake.cache)
+TEMPLATE = lib
+CONFIG += qt warn_on dll
+
+win32:DEFINES += SIMPLEDLL_MAKEDLL
+
+HEADERS = simple.h
+SOURCES = simple.cpp
+
+VERSION = 1.0.0
+INCLUDEPATH += . tmp
+MOC_DIR = tmp
+OBJECTS_DIR = tmp
+TARGET = simple_dll
+DESTDIR = ./
+
+infile($(QTDIR)/.qmake.cache, CONFIG, debug):CONFIG += debug
+infile($(QTDIR)/.qmake.cache, CONFIG, release):CONFIG += release
+
+