Don't allow to unrecord past the branch point
[vng.git] / vng.pro
blob2ba667f405f0b939e3a6051987ac76c89a7b99c6
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 Initialize.cpp \
18 Push.cpp \
19 Record.cpp \
20 Revert.cpp \
21 UnRecord.cpp \
22 UnRevert.cpp \
23 WhatsNew.cpp \
24 hunks/Hunk.cpp \
25 hunks/File.cpp \
26 hunks/ChangeSet.cpp \
27 hunks/HunksCursor.cpp \
28 commits/Commit.cpp \
29 commits/CommitsCursor.cpp \
32 HEADERS += \
33 Vng.h \
34 CommandLineParser.h \
35 AbstractCommand.h \
36 GitRunner.h \
37 Logger.h \
38 Interview.h \
39 InterviewCursor.h \
40 Configuration.h \
41 VngCommandLine.h \
42 Add.h \
43 Initialize.h \
44 Push.h \
45 Record.h \
46 Revert.h \
47 UnRecord.h \
48 UnRevert.h \
49 WhatsNew.h \
50 hunks/Hunk.h \
51 hunks/File.h \
52 hunks/ChangeSet.h \
53 hunks/HunksCursor.h \
54 commits/Commit.h \
55 commits/CommitsCursor.h \