Move Matcher to its own class+file CommitsMatcher
[vng.git] / vng.pro
blob048875ad5709a72bda37ed47f478ac53796c6bd8
1 TEMPLATE = app
2 CONFIG += console
3 CONFIG -= app_bundle
5 # Input
6 SOURCES += \
7 Vng.cpp \
8 CommandLineParser.cpp \
9 AbstractCommand.cpp \
10 GitRunner.cpp \
11 Logger.cpp \
12 Interview.cpp \
13 InterviewCursor.cpp \
14 Configuration.cpp \
15 VngCommandLine.cpp \
16 Add.cpp \
17 Branches.cpp \
18 Changes.cpp \
19 Initialize.cpp \
20 Move.cpp \
21 Push.cpp \
22 Record.cpp \
23 Remove.cpp \
24 Revert.cpp \
25 UnRecord.cpp \
26 UnRevert.cpp \
27 WhatsNew.cpp \
28 hunks/Hunk.cpp \
29 hunks/File.cpp \
30 hunks/ChangeSet.cpp \
31 hunks/HunksCursor.cpp \
32 commits/Commit.cpp \
33 commits/Branch.cpp \
34 commits/CommitsCursor.cpp \
35 commits/CommitsMatcher.cpp \
38 HEADERS += \
39 Vng.h \
40 CommandLineParser.h \
41 AbstractCommand.h \
42 GitRunner.h \
43 Logger.h \
44 Interview.h \
45 InterviewCursor.h \
46 Configuration.h \
47 VngCommandLine.h \
48 Add.h \
49 Branches.h \
50 Changes.h \
51 Initialize.h \
52 Move.h \
53 Push.h \
54 Record.h \
55 Remove.h \
56 Revert.h \
57 UnRecord.h \
58 UnRevert.h \
59 WhatsNew.h \
60 hunks/Hunk.h \
61 hunks/File.h \
62 hunks/ChangeSet.h \
63 hunks/HunksCursor.h \
64 commits/Commit.h \
65 commits/Commit_p.h \
66 commits/Branch.cpp \
67 commits/CommitsCursor.h \
68 commits/CommitsMatcher.h \