aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/proparser/test.pro
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/proparser/test.pro')
-rw-r--r--tests/manual/proparser/test.pro27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/manual/proparser/test.pro b/tests/manual/proparser/test.pro
new file mode 100644
index 00000000000..55921087c1f
--- /dev/null
+++ b/tests/manual/proparser/test.pro
@@ -0,0 +1,27 @@
+#comment
+
+TEMPLATE = app
+TARGET =
+DEPENDPATH += .
+INCLUDEPATH += .
+CONFIG += console
+QT += xml
+
+win32 {
+ PROPARSERPATH = ../../some/other/test/test
+ unix:PROPARSERPATH = ../../test/test
+}
+
+# test comment
+PROPARSERPATH = ../../../src/plugins/qt4projectmanager/proparser
+INCLUDEPATH += $$PROPARSERPATH
+
+# Input
+HEADERS += $$PROPARSERPATH/proitems.h \ # test comment2
+ $$PROPARSERPATH/proxml.h \
+ $$PROPARSERPATH/proreader.h
+SOURCES += main.cpp \
+ $$PROPARSERPATH/proitems.cpp \
+# test comment 3
+ $$PROPARSERPATH/proxml.cpp \
+ $$PROPARSERPATH/proreader.cpp