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