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