mirror of
https://git.disroot.org/eudaimon/Simplewaita.git
synced 2026-03-10 04:21:07 +00:00
Initial remote commit
This commit is contained in:
parent
f67c6bbc33
commit
aaa9cf7d3c
595 changed files with 30274 additions and 0 deletions
30
source/gtk3/meson.build
Normal file
30
source/gtk3/meson.build
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
scss_files = files([
|
||||
'_colors-public.scss',
|
||||
'_colors.scss',
|
||||
'_common.scss',
|
||||
'_drawing.scss',
|
||||
])
|
||||
|
||||
theme_variants = [
|
||||
'dark',
|
||||
]
|
||||
|
||||
theme_deps += custom_target('Adwaita',
|
||||
input: 'gtk-contained.scss',
|
||||
output: 'gtk-contained.css',
|
||||
command: [
|
||||
sassc, sassc_opts, '@INPUT@', '@OUTPUT@',
|
||||
],
|
||||
depend_files: scss_files,
|
||||
build_by_default: true)
|
||||
|
||||
foreach variant: theme_variants
|
||||
theme_deps += custom_target('Adwaita-' + variant,
|
||||
input: 'gtk-contained-@0@.scss'.format(variant),
|
||||
output: 'gtk-contained-@0@.css'.format(variant),
|
||||
command: [
|
||||
sassc, sassc_opts, '@INPUT@', '@OUTPUT@',
|
||||
],
|
||||
depend_files: scss_files,
|
||||
build_by_default: true)
|
||||
endforeach
|
||||
Loading…
Add table
Add a link
Reference in a new issue