-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitscope.pro
47 lines (36 loc) · 902 Bytes
/
gitscope.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
QT += qml quick
CONFIG += c++11
TARGET = gitscope
#CONFIG -= app_bundle
TEMPLATE = app
macos: {
INCLUDEPATH += /usr/local/include
LIBS += /usr/local/lib/libgit2.dylib
}
linux: LIBS += -lgit2
# The following define makes your compiler emit warnings if you use
# any feature of Qt which as been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
SOURCES += \
commit.cpp \
commitdao.cpp \
commitmodel.cpp \
gitmanager.cpp \
main.cpp
HEADERS += \
commit.h \
commitdao.h \
commitmodel.h \
gitmanager.h
OTHER_FILES += \
CompactLayout.qml \
main.qml \
RepositoryInputBar.qml \
SliderPanel.qml \
TableLayout.qml
RESOURCES += \
gitscope.qrc
DISTFILES += \
MainView.qml