Initial code for new class ExcludeMatcher. Meant to allow .gitignore and co to work...
[vng.git] / vng.pro
blob193301f6384478eccfbc908a7089b7f1b6139579
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 Add.cpp \
18 Branches.cpp \
19 Changes.cpp \
20 Initialize.cpp \
21 Move.cpp \
22 Push.cpp \
23 Record.cpp \
24 Remove.cpp \
25 Revert.cpp \
26 UnRecord.cpp \
27 UnRevert.cpp \
28 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.h \
46 Interview.h \
47 InterviewCursor.h \
48 Configuration.h \
49 VngCommandLine.h \
50 Add.h \
51 Branches.h \
52 Changes.h \
53 Initialize.h \
54 Move.h \
55 Push.h \
56 Record.h \
57 Remove.h \
58 Revert.h \
59 UnRecord.h \
60 UnRevert.h \
61 WhatsNew.h \
62 hunks/Hunk.h \
63 hunks/File.h \
64 hunks/ChangeSet.h \
65 hunks/HunksCursor.h \
66 commits/Commit.h \
67 commits/Commit_p.h \
68 commits/Branch.cpp \
69 commits/CommitsCursor.h \
70 commits/CommitsMatcher.h \