13 lines
244 B
Meson
13 lines
244 B
Meson
|
sassc = find_program('sassc', required: true)
|
||
|
|
||
|
theme = custom_target('Theme generation',
|
||
|
input: 'main.scss',
|
||
|
output: 'style.css',
|
||
|
command: [
|
||
|
sassc,
|
||
|
[ '-a', '-M', '-t', 'compact' ],
|
||
|
'@INPUT@', '@OUTPUT@',
|
||
|
],
|
||
|
build_by_default: true,
|
||
|
)
|