For the "development" profile, lets use the Nightly variant, to visually indicate to users that they are running an unstable version of the application.
13 lines
352 B
Meson
13 lines
352 B
Meson
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
|