mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-10-06 01:12:40 +02:00
16 lines
273 B
Meson
16 lines
273 B
Meson
tool_presets_types = [
|
|
'Crop',
|
|
'FX',
|
|
'Paint',
|
|
'Selection',
|
|
'Sketch',
|
|
]
|
|
|
|
foreach tool_presets_type : tool_presets_types
|
|
subdir(tool_presets_type)
|
|
install_data(
|
|
tool_presets,
|
|
install_dir: gimpdatadir / 'tool-presets' / tool_presets_type,
|
|
)
|
|
endforeach
|