Add a 'diff' command that basically does the same as WhatsNew -u
[vng.git] / src / src.pro
blob07962b2a9e75338252059786019a639dd9645587
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
10 # Input
11 SOURCES += \
12 Vng.cpp \
13 CommandLineParser.cpp \
14 AbstractCommand.cpp \
15 ExcludeMatcher.cpp \
16 GitRunner.cpp \
17 Logger.cpp \
18 Interview.cpp \
19 InterviewCursor.cpp \
20 Configuration.cpp \
21 VngCommandLine.cpp \
22 commands/Add.cpp \
23 commands/AmendRecord.cpp \
24 commands/Branches.cpp \
25 commands/Changes.cpp \
26 commands/Diff.cpp \
27 commands/Dist.cpp \
28 commands/Initialize.cpp \
29 commands/Move.cpp \
30 commands/Push.cpp \
31 commands/Record.cpp \
32 commands/Remove.cpp \
33 commands/Revert.cpp \
34 commands/UnRecord.cpp \
35 commands/UnRevert.cpp \
36 commands/WhatsNew.cpp \
37 hunks/Hunk.cpp \
38 hunks/File.cpp \
39 hunks/ChangeSet.cpp \
40 hunks/HunksCursor.cpp \
41 patches/Commit.cpp \
42 patches/Branch.cpp \
43 patches/CommitsCursor.cpp \
44 patches/CommitsMatcher.cpp \
47 HEADERS += \
48 Vng.h \
49 CommandLineParser.h \
50 AbstractCommand.h \
51 ExcludeMatcher.h \
52 GitRunner.h \
53 Logger_p.h \
54 Logger.h \
55 Interview.h \
56 InterviewCursor.h \
57 Configuration.h \
58 VngCommandLine.h \
59 commands/Add.h \
60 commands/AmendRecord.h \
61 commands/Branches.h \
62 commands/Changes.h \
63 commands/Diff.h \
64 commands/Dist.h \
65 commands/Initialize.h \
66 commands/Move.h \
67 commands/Push.h \
68 commands/Record.h \
69 commands/Remove.h \
70 commands/Revert.h \
71 commands/UnRecord.h \
72 commands/UnRevert.h \
73 commands/WhatsNew.h \
74 hunks/Hunk.h \
75 hunks/File.h \
76 hunks/ChangeSet.h \
77 hunks/HunksCursor.h \
78 patches/Commit.h \
79 patches/Commit_p.h \
80 patches/Branch.cpp \
81 patches/CommitsCursor.h \
82 patches/CommitsMatcher.h \