Make commandline parser work with values to options in same argument
[vng.git] / vng.pro
blob640f742aa76df24106f63fbb50b7c6e7c5bebe5c
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 \
37 HEADERS += \
38 Vng.h \
39 CommandLineParser.h \
40 AbstractCommand.h \
41 GitRunner.h \
42 Logger.h \
43 Interview.h \
44 InterviewCursor.h \
45 Configuration.h \
46 VngCommandLine.h \
47 Add.h \
48 Branches.h \
49 Changes.h \
50 Initialize.h \
51 Move.h \
52 Push.h \
53 Record.h \
54 Remove.h \
55 Revert.h \
56 UnRecord.h \
57 UnRevert.h \
58 WhatsNew.h \
59 hunks/Hunk.h \
60 hunks/File.h \
61 hunks/ChangeSet.h \
62 hunks/HunksCursor.h \
63 commits/Commit.h \
64 commits/Commit_p.h \
65 commits/Branch.cpp \
66 commits/CommitsCursor.h \