summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/qmake/testdata/simple_lib/simple_lib.pro
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/tools/qmake/testdata/simple_lib/simple_lib.pro')
-rw-r--r--tests/auto/tools/qmake/testdata/simple_lib/simple_lib.pro14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/tools/qmake/testdata/simple_lib/simple_lib.pro b/tests/auto/tools/qmake/testdata/simple_lib/simple_lib.pro
new file mode 100644
index 0000000000..209bba6348
--- /dev/null
+++ b/tests/auto/tools/qmake/testdata/simple_lib/simple_lib.pro
@@ -0,0 +1,14 @@
+TEMPLATE = lib
+CONFIG += qt warn_on release staticlib
+CONFIG -= dll
+
+HEADERS = simple.h
+SOURCES = simple.cpp
+
+VERSION = 1.0.0
+INCLUDEPATH += . tmp
+MOC_DIR = tmp
+OBJECTS_DIR = tmp
+TARGET = simple_lib
+DESTDIR = ./
+