Move the code to allow diffs to be fetched multithreaded
[vng.git] / vng.pro
blobfa1425cb02f7b54ad2ebbd3deb686d56f71622c1
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/Initialize.cpp \
23 commands/Move.cpp \
24 commands/Push.cpp \
25 commands/Record.cpp \
26 commands/Remove.cpp \
27 commands/Revert.cpp \
28 commands/UnRecord.cpp \
29 commands/UnRevert.cpp \
30 commands/WhatsNew.cpp \
31 hunks/Hunk.cpp \
32 hunks/File.cpp \
33 hunks/ChangeSet.cpp \
34 hunks/HunksCursor.cpp \
35 commits/Commit.cpp \
36 commits/Branch.cpp \
37 commits/CommitsCursor.cpp \
38 commits/CommitsMatcher.cpp \
41 HEADERS += \
42 Vng.h \
43 CommandLineParser.h \
44 AbstractCommand.h \
45 ExcludeMatcher.h \
46 GitRunner.h \
47 Logger_p.h \
48 Logger.h \
49 Interview.h \
50 InterviewCursor.h \
51 Configuration.h \
52 VngCommandLine.h \
53 commands/Add.h \
54 commands/Branches.h \
55 commands/Changes.h \
56 commands/Initialize.h \
57 commands/Move.h \
58 commands/Push.h \
59 commands/Record.h \
60 commands/Remove.h \
61 commands/Revert.h \
62 commands/UnRecord.h \
63 commands/UnRevert.h \
64 commands/WhatsNew.h \
65 hunks/Hunk.h \
66 hunks/File.h \
67 hunks/ChangeSet.h \
68 hunks/HunksCursor.h \
69 commits/Commit.h \
70 commits/Commit_p.h \
71 commits/Branch.cpp \
72 commits/CommitsCursor.h \
73 commits/CommitsMatcher.h \