2017-05-24 20:16:27 -04:00
|
|
|
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'
|
|
|
|
])
|
|
|
|
|
2018-02-07 07:31:50 -05:00
|
|
|
styles = [
|
|
|
|
'gnome-shell-high-contrast',
|
|
|
|
'gnome-shell'
|
|
|
|
]
|
|
|
|
|
2017-05-24 20:16:27 -04:00
|
|
|
theme_deps = []
|
|
|
|
|
2018-02-20 04:24:24 -05:00
|
|
|
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
|
2017-06-08 12:04:31 -04:00
|
|
|
|
|
|
|
install_data('process-working.svg', install_dir: themedir)
|