blob: ecdefe42597a5b10859f8b5bce66354aee2c6eee (
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
##### App icons
install(
FILES kmyfirewall-16.png
DESTINATION ${ICON_INSTALL_DIR}/hicolor/16x16/apps
RENAME kmyfirewall.png
)
install(
FILES kmyfirewall-22.png
DESTINATION ${ICON_INSTALL_DIR}/hicolor/22x22/apps
RENAME kmyfirewall.png
)
install(
FILES kmyfirewall-32.png
DESTINATION ${ICON_INSTALL_DIR}/hicolor/32x32/apps
RENAME kmyfirewall.png
)
install(
FILES kmyfirewall-48.png
DESTINATION ${ICON_INSTALL_DIR}/hicolor/48x48/apps
RENAME kmyfirewall.png
)
install(
FILES kmyfirewall-64.png
DESTINATION ${ICON_INSTALL_DIR}/hicolor/64x64/apps
RENAME kmyfirewall.png
)
install(
FILES kmyfirewall-16-lo.png
DESTINATION ${ICON_INSTALL_DIR}/locolor/16x16/apps
RENAME kmyfirewall.png
)
install(
FILES kmyfirewall-32-lo.png
DESTINATION ${ICON_INSTALL_DIR}/locolor/32x32/apps
RENAME kmyfirewall.png
)
install(
FILES kmyfirewall-48-lo.png
DESTINATION ${ICON_INSTALL_DIR}/locolor/48x48/apps
RENAME kmyfirewall.png
)
install(
FILES kmyfirewall.xpm
DESTINATION ${SHARE_INSTALL_PREFIX}/pixmaps
)
##### KMFMyFirewall
install(
FILES
kmf_snapshot_generic_interface.png kmf_snapshot_iptables_interface.png reject.png target.png
splash.png splash_cut.png
DESTINATION ${DATA_INSTALL_DIR}/kmyfirewall/pics
)
install(
FILES builtin-16.png
DESTINATION ${DATA_INSTALL_DIR}/kmyfirewall/icons/hicolor/16x16/actions
RENAME builtin.png
)
install(
FILES table-16.png
DESTINATION ${DATA_INSTALL_DIR}/kmyfirewall/icons/hicolor/16x16/actions
RENAME table.png
)
install(
FILES user_defined-16.png
DESTINATION ${DATA_INSTALL_DIR}/kmyfirewall/icons/hicolor/16x16/actions
RENAME user_defined.png
)
install(
FILES rule-16.png
DESTINATION ${DATA_INSTALL_DIR}/kmyfirewall/icons/hicolor/16x16/actions
RENAME rule.png
)
install(
FILES rule-22.png
DESTINATION ${DATA_INSTALL_DIR}/kmyfirewall/icons/hicolor/22x22/actions
RENAME rule.png
)
install(
FILES rule-32.png
DESTINATION ${DATA_INSTALL_DIR}/kmyfirewall/icons/hicolor/32x32/actions
RENAME rule.png
)
install(
FILES rule-48.png
DESTINATION ${DATA_INSTALL_DIR}/kmyfirewall/icons/hicolor/48x48/actions
RENAME rule.png
)
install(
FILES rule-64.png
DESTINATION ${DATA_INSTALL_DIR}/kmyfirewall/icons/hicolor/64x64/actions
RENAME rule.png
)
##### KMFSysTray
install(
FILES reject.png target.png
DESTINATION ${DATA_INSTALL_DIR}/kmfsystray/pics
)
install(
FILES builtin-16.png
DESTINATION ${DATA_INSTALL_DIR}/kmfsystray/icons/hicolor/16x16/actions
RENAME builtin.png
)
install(
FILES table-16.png
DESTINATION ${DATA_INSTALL_DIR}/kmfsystray/icons/hicolor/16x16/actions
RENAME table.png
)
install(
FILES user_defined-16.png
DESTINATION ${DATA_INSTALL_DIR}/kmfsystray/icons/hicolor/16x16/actions
RENAME user_defined.png
)
install(
FILES rule-16.png
DESTINATION ${DATA_INSTALL_DIR}/kmfsystray/icons/hicolor/16x16/actions
RENAME rule.png
)
install(
FILES rule-22.png
DESTINATION ${DATA_INSTALL_DIR}/kmfsystray/icons/hicolor/22x22/actions
RENAME rule.png
)
install(
FILES rule-32.png
DESTINATION ${DATA_INSTALL_DIR}/kmfsystray/icons/hicolor/32x32/actions
RENAME rule.png
)
install(
FILES rule-48.png
DESTINATION ${DATA_INSTALL_DIR}/kmfsystray/icons/hicolor/48x48/actions
RENAME rule.png
)
install(
FILES rule-64.png
DESTINATION ${DATA_INSTALL_DIR}/kmfsystray/icons/hicolor/64x64/actions
RENAME rule.png
)
|