bainonline / teamgit

A Git UI

This URL has Read+Write access

teamgit / teamgit-mainapp.pro
100644 59 lines (58 sloc) 1.343 kb
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
48
49
50
51
52
53
54
55
56
57
58
59
TEMPLATE = app
TARGET = teamgit
QT = gui core
CONFIG += qt \
 warn_on \
 console \
 build_all \
 debug_and_release
DESTDIR = bin
OBJECTS_DIR = build
MOC_DIR = build
UI_DIR = build
FORMS = ui/mainwindow.ui \
 ui/settings.ui \
 ui/newproject.ui \
 ui/outputdialog.ui \
 ui/commitdialog.ui \
 ui/resetdialog.ui \
 ui/guifycommand.ui
HEADERS = src/mainwindowimpl.h \
 src/gitthread.h \
 src/gitprocess.h \
 src/settingsimpl.h \
 src/defs.h \
 src/settings.h \
 src/gsettings.h \
 src/newprojectimpl.h \
 src/outputdialogimpl.h \
 src/projectsmodel.h \
 src/commitdialogimpl.h \
 src/diffviewer.h \
 src/resetdialogimpl.h \
 src/guifycommanddialogimpl.h
SOURCES = src/mainwindowimpl.cpp \
 src/main.cpp \
 src/gitprocess.cpp \
 src/gitthread.cpp \
 src/settingsimpl.cpp \
 src/newprojectimpl.cpp \
 src/outputdialogimpl.cpp \
 src/projectsmodel.cpp \
 src/commitdialogimpl.cpp \
 src/diffviewer.cpp \
 src/resetdialogimpl.cpp \
 src/guifycommanddialogimpl.cpp
unix {
 SOURCES += src/kpty.cpp
 HEADERS += src/kpty_p.h src/kpty.h
}
RESOURCES += ui/icons.qrc
target.path = /usr/bin/
manpage.path = /usr/share/man/man1
manpage.files = doc/teamgit.1.gz
desktop_file.path = /usr/share/applications/
desktop_file.files = teamgit.desktop
pixmaps.path = /usr/share/pixmaps
pixmaps.files = teamgit_icon.png
INSTALLS += desktop_file pixmaps manpage target