Remove obsolete part of the readme
[vng.git] / src / src.pro
blobad9af71d8ce1ed8e81a9b394fcd97846d3a00196
1 TEMPLATE = app
2 CONFIG += console
3 CONFIG -= app_bundle
4 DESTDIR = ..
5 TARGET = vng
6 INCLUDEPATH += hunks patches commands
7 # this is a line we can enable for static linking
8 #LIBS += -Wl,-Bstatic -lQtCore -Wl,-Bdynamic
9 #DEFINES += QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII QT_STRICT_ITERATORS
10 DEFINES -= QT3_SUPPORT
12 # Input
13 SOURCES += \
14 Vng.cpp \
15 CommandLineParser.cpp \
16 AbstractCommand.cpp \
17 ExcludeMatcher.cpp \
18 GitRunner.cpp \
19 Logger.cpp \
20 Interview.cpp \
21 InterviewCursor.cpp \
22 Configuration.cpp \
23 VngCommandLine.cpp \
24 commands/Add.cpp \
25 commands/AmendRecord.cpp \
26 commands/Branches.cpp \
27 commands/Changes.cpp \
28 commands/Diff.cpp \
29 commands/Dist.cpp \
30 commands/Initialize.cpp \
31 commands/Move.cpp \
32 commands/Push.cpp \
33 commands/Record.cpp \
34 commands/Remove.cpp \
35 commands/Revert.cpp \
36 commands/UnRecord.cpp \
37 commands/UnRevert.cpp \
38 commands/WhatsNew.cpp \
39 hunks/Hunk.cpp \
40 hunks/File.cpp \
41 hunks/ChangeSet.cpp \
42 hunks/HunksCursor.cpp \
43 patches/Commit.cpp \
44 patches/Branch.cpp \
45 patches/CommitsCursor.cpp \
46 patches/CommitsMatcher.cpp \
49 HEADERS += \
50 Vng.h \
51 CommandLineParser.h \
52 AbstractCommand.h \
53 ExcludeMatcher.h \
54 GitRunner.h \
55 Logger_p.h \
56 Logger.h \
57 Interview.h \
58 InterviewCursor.h \
59 Configuration.h \
60 VngCommandLine.h \
61 commands/Add.h \
62 commands/AmendRecord.h \
63 commands/Branches.h \
64 commands/Changes.h \
65 commands/Diff.h \
66 commands/Dist.h \
67 commands/Initialize.h \
68 commands/Move.h \
69 commands/Push.h \
70 commands/Record.h \
71 commands/Remove.h \
72 commands/Revert.h \
73 commands/UnRecord.h \
74 commands/UnRevert.h \
75 commands/WhatsNew.h \
76 hunks/Hunk.h \
77 hunks/File.h \
78 hunks/ChangeSet.h \
79 hunks/HunksCursor.h \
80 patches/Commit.h \
81 patches/Commit_p.h \
82 patches/Branch.cpp \
83 patches/CommitsCursor.h \
84 patches/CommitsMatcher.h \