blob: f3609634de5fc380c6ed6a3ca86d8f164c0f1e58 (
plain)
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
71
72
73
|
# image files
INSTALL(
FILES
bg2.png
tile.gif
category.png
button.png
busywidget.gif
loading.mng
webkit-icon.png
autoscroll.png
background.png
DESTINATION ${DATA_INSTALL_DIR}/rekonq/pics
)
# fonts files
INSTALL(
FILES
Nunito-Regular.ttf
DESTINATION ${DATA_INSTALL_DIR}/rekonq/fonts
)
# default bookmarks
INSTALL(
FILES
defaultbookmarks.xbel
DESTINATION ${DATA_INSTALL_DIR}/rekonq
)
# .desktop file
INSTALL(
PROGRAMS rekonq.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
# htmls
INSTALL(
FILES
rekonqinfo.html
home.html
jquery-1.7.2.min.js
jquery-ui-1.8.20.custom.min.js
DESTINATION ${DATA_INSTALL_DIR}/rekonq/htmls
)
# adblock default settings
INSTALL(
FILES
adblockrc
DESTINATION ${DATA_INSTALL_DIR}/rekonq
)
# opensearch engines
INSTALL(
FILES
beolingus.xml
bing.xml
yahoo.xml
de2en.xml
dictfr.xml
facebook.xml
google.xml
kde_techbase.xml
kde_userbase.xml
youtube.xml
voila.xml
wikia.xml
wikipedia.xml
wiktionary.xml
wr_english.xml
db_opensearch.json
DESTINATION ${DATA_INSTALL_DIR}/rekonq/opensearch
)
|