bump version
[vng.git] / src / src.pro
blob04a82bd91ac8a6a60a0e09da8fd63d8d6c9fb0d5
1 TEMPLATE = app
2 CONFIG += console
3 CONFIG -= app_bundle
4 DESTDIR = ..
5 TARGET = vng
6 INCLUDEPATH += hunks patches commands
7 # this is a line we can enable for static linking
8 #LIBS += -Wl,-Bstatic -lQtCore -Wl,-Bdynamic
9 #DEFINES += QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII QT_STRICT_ITERATORS
10 DEFINES -= QT3_SUPPORT
12 # Input
13 SOURCES += \
14 Vng.cpp \
15 CommandLineParser.cpp \
16 AbstractCommand.cpp \
17 ExcludeMatcher.cpp \
18 GitRunner.cpp \
19 Logger.cpp \
20 Interview.cpp \
21 InterviewCursor.cpp \
22 GenericCursor.cpp \
23 Configuration.cpp \
24 VngCommandLine.cpp \
25 TrackedBranch.cpp \
26 RemoteRepo.cpp \
27 commands/Add.cpp \
28 commands/AmendRecord.cpp \
29 commands/Branches.cpp \
30 commands/Changes.cpp \
31 commands/Diff.cpp \
32 commands/Dist.cpp \
33 commands/Initialize.cpp \
34 commands/Move.cpp \
35 commands/Push.cpp \
36 commands/Pull.cpp \
37 commands/Record.cpp \
38 commands/Remove.cpp \
39 commands/Revert.cpp \
40 commands/UnRecord.cpp \
41 commands/UnRevert.cpp \
42 commands/WhatsNew.cpp \
43 hunks/Hunk.cpp \
44 hunks/File.cpp \
45 hunks/ChangeSet.cpp \
46 hunks/HunksCursor.cpp \
47 patches/Commit.cpp \
48 patches/Branch.cpp \
49 patches/CommitsCursor.cpp \
50 patches/CommitsMatcher.cpp \
53 HEADERS += \
54 Vng.h \
55 CommandLineParser.h \
56 AbstractCommand.h \
57 ExcludeMatcher.h \
58 GitRunner.h \
59 Logger_p.h \
60 Logger.h \
61 Interview.h \
62 InterviewCursor.h \
63 GenericCursor.h \
64 Configuration.h \
65 VngCommandLine.h \
66 TrackedBranch.h \
67 RemoteRepo.h \
68 commands/Add.h \
69 commands/AmendRecord.h \
70 commands/Branches.h \
71 commands/Changes.h \
72 commands/Diff.h \
73 commands/Dist.h \
74 commands/Initialize.h \
75 commands/Move.h \
76 commands/Push.h \
77 commands/Pull.h \
78 commands/Record.h \
79 commands/Remove.h \
80 commands/Revert.h \
81 commands/UnRecord.h \
82 commands/UnRevert.h \
83 commands/WhatsNew.h \
84 hunks/Hunk.h \
85 hunks/File.h \
86 hunks/ChangeSet.h \
87 hunks/HunksCursor.h \
88 patches/Commit.h \
89 patches/Commit_p.h \
90 patches/Branch.cpp \
91 patches/CommitsCursor.h \
92 patches/CommitsMatcher.h \