blob: 091650b930fa26062e7acb126ca24d67affbaf0b (
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
|
# image files
INSTALL(
FILES
bg2.png bg.png tile.gif category.png button.png
busywidget.gif loading.mng
webkit-icon.png autoscroll.png
DESTINATION ${DATA_INSTALL_DIR}/rekonq/pics
)
# 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
DESTINATION ${DATA_INSTALL_DIR}/rekonq/htmls
)
# 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
)
|