16 lines
217 B
Meson
16 lines
217 B
Meson
subdir('Default')
|
|
subdir('Darker')
|
|
subdir('Compact')
|
|
|
|
themes = [
|
|
'Gray',
|
|
'System',
|
|
]
|
|
|
|
foreach theme : themes
|
|
install_data(
|
|
theme / 'pika.css',
|
|
install_dir: pikadatadir / 'themes' / theme,
|
|
)
|
|
endforeach
|