mirror of
https://git.disroot.org/eudaimon/Simplewaita.git
synced 2026-03-12 13:25:19 +00:00
Initial remote commit
This commit is contained in:
parent
f67c6bbc33
commit
aaa9cf7d3c
595 changed files with 30274 additions and 0 deletions
26
source/gtk4/meson.build
Normal file
26
source/gtk4/meson.build
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
default_scss_files = files([
|
||||
'_colors-public.scss',
|
||||
'_colors.scss',
|
||||
'_common.scss',
|
||||
'_drawing.scss',
|
||||
])
|
||||
|
||||
default_theme_variants = [
|
||||
'light',
|
||||
'dark',
|
||||
'hc',
|
||||
'hc-dark',
|
||||
]
|
||||
|
||||
default_theme_deps = []
|
||||
|
||||
foreach variant: default_theme_variants
|
||||
default_theme_deps += custom_target('Default theme variant: ' + variant,
|
||||
input: 'Default-@0@.scss'.format(variant),
|
||||
output: 'Default-@0@.css'.format(variant),
|
||||
command: [
|
||||
sassc, sassc_opts, '@INPUT@', '@OUTPUT@',
|
||||
],
|
||||
depend_files: default_scss_files,
|
||||
)
|
||||
endforeach
|
||||
Loading…
Add table
Add a link
Reference in a new issue