summaryrefslogtreecommitdiffstats
path: root/tools/porting/src/qt3to4.pri
blob: c10c2f8b029851dd631c189cc1d80e82485e31ea (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
DEPENDPATH += $$PWD
INCLUDEPATH += $$PWD

QT += XML
HEADERS +=  $$PWD/smallobject.h             \
            $$PWD/tokenengine.h             \
            $$PWD/tokenizer.h               \
            $$PWD/rpplexer.h                \
            $$PWD/rpp.h                     \
            $$PWD/rpptreewalker.h           \
            $$PWD/rpptreeevaluator.h        \
            $$PWD/rppexpressionbuilder.h    \
            $$PWD/preprocessorcontrol.h     \
            $$PWD/replacetoken.h            \
            $$PWD/tokenreplacements.h       \
            $$PWD/textreplacement.h         \
            $$PWD/portingrules.h            \
            $$PWD/qtsimplexml.h             \
            $$PWD/projectporter.h           \
            $$PWD/proparser.h               \
            $$PWD/fileporter.h              \
            $$PWD/logger.h                  \
            $$PWD/tokens.h                  \
            $$PWD/filewriter.h              \
            $$PWD/cpplexer.h                \
            $$PWD/smallobject.h             \
            $$PWD/ast.h                     \
            $$PWD/errors.h                  \
            $$PWD/parser.h                  \
            $$PWD/translationunit.h         \
            $$PWD/treewalker.h              \
            $$PWD/semantic.h                \
            $$PWD/codemodel.h               \
            $$PWD/codemodelwalker.h         \
            $$PWD/codemodelattributes.h

SOURCES += \
           $$PWD/smallobject.cpp           \
           $$PWD/tokenengine.cpp           \
           $$PWD/tokenizer.cpp             \
           $$PWD/rpplexer.cpp              \
           $$PWD/rpp.cpp                   \
           $$PWD/rpptreewalker.cpp         \
           $$PWD/rpptreeevaluator.cpp      \
           $$PWD/rppexpressionbuilder.cpp  \
           $$PWD/preprocessorcontrol.cpp   \
           $$PWD/replacetoken.cpp          \
           $$PWD/tokenreplacements.cpp     \
           $$PWD/textreplacement.cpp       \
           $$PWD/portingrules.cpp          \
           $$PWD/qtsimplexml.cpp           \
           $$PWD/projectporter.cpp         \
           $$PWD/proparser.cpp             \
           $$PWD/fileporter.cpp            \
           $$PWD/logger.cpp                \
           $$PWD/filewriter.cpp            \
           $$PWD/cpplexer.cpp              \
           $$PWD/ast.cpp                   \
           $$PWD/errors.cpp                \
           $$PWD/parser.cpp                \
           $$PWD/translationunit.cpp       \
           $$PWD/treewalker.cpp            \
           $$PWD/semantic.cpp              \
           $$PWD/codemodel.cpp             \
           $$PWD/codemodelwalker.cpp       \
           $$PWD/codemodelattributes.cpp