diff options
Diffstat (limited to 'tests/auto/qmake/testdata/simple_lib/simple_lib.pro')
-rw-r--r-- | tests/auto/qmake/testdata/simple_lib/simple_lib.pro | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/qmake/testdata/simple_lib/simple_lib.pro b/tests/auto/qmake/testdata/simple_lib/simple_lib.pro new file mode 100644 index 0000000..209bba6 --- /dev/null +++ b/tests/auto/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 = ./ + |