blob: f94128956722a0f67b51820640abe4760a6fc0c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
install_subdir(
'hicolor',
install_dir : control_center_icondir
)
if get_option('profile') == 'development'
icondir = join_paths('hicolor', 'scalable', 'apps')
install_data(
join_paths(icondir, 'org.gnome.Settings.Devel.svg'),
install_dir: join_paths(control_center_icondir, icondir),
rename: 'org.gnome.Settings.svg'
)
endif
|