-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathteamgit-mainapp.pro
More file actions
69 lines (69 loc) · 1.56 KB
/
Copy pathteamgit-mainapp.pro
File metadata and controls
69 lines (69 loc) · 1.56 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
60
61
62
63
64
65
66
67
68
69
TEMPLATE = app
TARGET = teamgit
QT = gui core network
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 \
ui/mergedialog.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 \
src/mergedialogimpl.h \
src/bonjourrecord.h \
src/bonjourserviceregister.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 \
src/mergedialogimpl.cpp \
src/bonjourserviceregister.cpp
unix {
SOURCES += src/kpty.cpp
HEADERS += src/kpty_p.h src/kpty.h
}
!mac {
LIBS += -ldns_sd
}
CONFIG += link_pkgconfig
PKGCONFIG += source-highlight-qt4
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