add todo
[vng.git] / vng.pro
blob17d458f0e0ac7b8647ba119a47f828e40990fe23
1 TEMPLATE = app
2 CONFIG += console
3 CONFIG -= app_bundle
4 # this is a line we can enable for static linking
5 #LIBS += -Wl,-Bstatic -lQtCore -Wl,-Bdynamic
7 # Input
8 SOURCES += \
9 Vng.cpp \
10 CommandLineParser.cpp \
11 AbstractCommand.cpp \
12 ExcludeMatcher.cpp \
13 GitRunner.cpp \
14 Logger.cpp \
15 Interview.cpp \
16 InterviewCursor.cpp \
17 Configuration.cpp \
18 VngCommandLine.cpp \
19 commands/Add.cpp \
20 commands/Branches.cpp \
21 commands/Changes.cpp \
22 commands/Dist.cpp \
23 commands/Initialize.cpp \
24 commands/Move.cpp \
25 commands/Push.cpp \
26 commands/Record.cpp \
27 commands/Remove.cpp \
28 commands/Revert.cpp \
29 commands/UnRecord.cpp \
30 commands/UnRevert.cpp \
31 commands/WhatsNew.cpp \
32 hunks/Hunk.cpp \
33 hunks/File.cpp \
34 hunks/ChangeSet.cpp \
35 hunks/HunksCursor.cpp \
36 patches/Commit.cpp \
37 patches/Branch.cpp \
38 patches/CommitsCursor.cpp \
39 patches/CommitsMatcher.cpp \
42 HEADERS += \
43 Vng.h \
44 CommandLineParser.h \
45 AbstractCommand.h \
46 ExcludeMatcher.h \
47 GitRunner.h \
48 Logger_p.h \
49 Logger.h \
50 Interview.h \
51 InterviewCursor.h \
52 Configuration.h \
53 VngCommandLine.h \
54 commands/Add.h \
55 commands/Branches.h \
56 commands/Changes.h \
57 commands/Dist.h \
58 commands/Initialize.h \
59 commands/Move.h \
60 commands/Push.h \
61 commands/Record.h \
62 commands/Remove.h \
63 commands/Revert.h \
64 commands/UnRecord.h \
65 commands/UnRevert.h \
66 commands/WhatsNew.h \
67 hunks/Hunk.h \
68 hunks/File.h \
69 hunks/ChangeSet.h \
70 hunks/HunksCursor.h \
71 patches/Commit.h \
72 patches/Commit_p.h \
73 patches/Branch.cpp \
74 patches/CommitsCursor.h \
75 patches/CommitsMatcher.h \