forked from sergey-dryabzhinsky/qt-webkit-kiosk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.pro
43 lines (32 loc) · 1.13 KB
/
setup.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
#-------------------------------------------------
#
# Project created by QtCreator 2010-07-22T01:54:24
#
#-------------------------------------------------
TEMPLATE = subdirs
CONFIG += ordered warn_on
CONFIG(debug, debug|release) {
# here comes debug specific statements
message(Debug build)
} else {
# here comes release specific statements
message(Release build)
CONFIG -= debug
DEFINES += QT_NO_DEBUG_OUTPUT
}
SUBDIRS += src/qt-webkit-kiosk.pro
# INSTALL
target.path = $${PREFIX}/bin
desktop.files = resources/qt-webkit-kiosk.desktop
desktop.path = $${PREFIX}/share/applications
config.files = resources/qt-webkit-kiosk.ini
config.path = $${PREFIX}/share/qt-webkit-kiosk
sound.files = \
resources/window-clicked.wav resources/window-clicked.ogg resources/window-clicked.mp3 \
resources/link-clicked.wav resources/link-clicked.ogg resources/link-clicked.mp3
sound.path = $${PREFIX}/share/qt-webkit-kiosk
html.files = resources/default.html
html.path = $${PREFIX}/share/qt-webkit-kiosk
doc.files = doc/lgpl.html doc/README.md
doc.path = $${PREFIX}/share/doc/qt-webkit-kiosk
INSTALLS += target desktop config sound html doc