c7665b87a6
This helps prevent unlock failure on inplace upgrades between 7.3 and 7.4
28 lines
785 B
Meson
28 lines
785 B
Meson
theme_sources = files([
|
|
'gnome-shell-high-contrast.scss',
|
|
'gnome-shell.scss',
|
|
'gnome-shell-sass/_colors.scss',
|
|
'gnome-shell-sass/_common.scss',
|
|
'gnome-shell-sass/_drawing.scss',
|
|
'gnome-shell-sass/_high-contrast-colors.scss'
|
|
])
|
|
|
|
styles = [
|
|
'gnome-shell-high-contrast',
|
|
'gnome-shell'
|
|
]
|
|
|
|
theme_deps = []
|
|
|
|
foreach style: styles
|
|
theme_deps += custom_target('style-' + style,
|
|
input: '@0@.scss'.format(style),
|
|
output: '@0@.css'.format(style),
|
|
command: [
|
|
sassc, '-a', '@INPUT@', '@OUTPUT@'
|
|
],
|
|
depend_files: theme_sources)
|
|
endforeach
|
|
|
|
install_data('process-working.svg', install_dir: themedir)
|