summaryrefslogtreecommitdiff
path: root/tests/manual/proparser/test.pro
blob: 55921087c1f56d6165ebb5c1e32baece9ba4d47f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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