-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpixmate-client.pro
71 lines (56 loc) · 1.56 KB
/
pixmate-client.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = pixmate
TEMPLATE = app
CONFIG += c++11
SOURCES += src/main.cpp\
src/mainwindow.cpp \
src/screenshot.cpp \
src/regionselectiondialog.cpp \
src/screenshotdialog.cpp \
src/share.cpp \
src/messagedialog.cpp \
src/centralize.cpp \
src/gkeys.cpp
HEADERS += src/mainwindow.h \
src/screenshot.h \
src/regionselectiondialog.h \
src/screenshotdialog.h \
src/share.h \
src/messagedialog.h \
src/centralize.h \
src/gkeys.h
FORMS += ui/mainwindow.ui \
ui/screenshotdialog.ui \
ui/messagedialog.ui
DISTFILES += \
img/ic_alarm_black_24dp.ico \
img/ic_camera_black_24dp.ico \
img/ic_close_black_24dp.ico \
img/ic_cloud_upload_black_24dp.ico \
img/ic_crop_black_24dp.ico \
img/ic_desktop_windows_black_24dp.ico \
img/ic_done_black_24dp.ico \
img/ic_error_outline_black_24dp.ico
RESOURCES += \
resources.qrc
include(./lib/QHotkey/qhotkey.pri)
macx {
ICON = img/pixmate.icns
}
win32 {
ICON = img/pixmate.ico
}
unix:!macx {
isEmpty(PREFIX): PREFIX = /usr
target.files = pixmate
target.path = $$PREFIX/bin
INSTALLS = target
appicons256.files=img/256/pixmate.png
appicons256.path=$$PREFIX/share/applications/hicolor/256x256/apps
appicons128.files=img/128/pixmate.png
appicons128.path=$$PREFIX/share/applications/hicolor/128x128/apps
desktop.files = pixmate.desktop
desktop.path = $$PREFIX/share/applications
INSTALLS += appicons256 appicons128 desktop
}