diff options
author | David Robillard <d@drobilla.net> | 2023-09-23 17:10:59 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-23 17:10:59 -0400 |
commit | e70d162e313f5f5c30c90fc279f77a0e85cba99d (patch) | |
tree | fbfca5c60569d23a574968e48e3b1475d919a352 /icons | |
parent | e6831b0670cbb33414a541975b4a7de64841d243 (diff) | |
download | patchage-e70d162e313f5f5c30c90fc279f77a0e85cba99d.tar.gz patchage-e70d162e313f5f5c30c90fc279f77a0e85cba99d.tar.bz2 patchage-e70d162e313f5f5c30c90fc279f77a0e85cba99d.zip |
Format meson.build files with muon
The less time wasted with manual code formatting, the better.
Diffstat (limited to 'icons')
-rw-r--r-- | icons/meson.build | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/icons/meson.build b/icons/meson.build index 3348cfe..3de7d1c 100644 --- a/icons/meson.build +++ b/icons/meson.build @@ -20,15 +20,21 @@ png_icon_sizes = [ icons_dir = get_option('prefix') / get_option('datadir') / 'icons' / 'hicolor' -install_data('scalable/patchage.svg', - install_dir: icons_dir / 'scalable' / 'apps') +install_data( + 'scalable/patchage.svg', + install_dir: icons_dir / 'scalable' / 'apps', +) foreach size : svg_icon_sizes - install_data(files(size / 'patchage.svg'), - install_dir: icons_dir / size / 'apps') + install_data( + files(size / 'patchage.svg'), + install_dir: icons_dir / size / 'apps', + ) endforeach foreach size : png_icon_sizes - install_data(files(size / 'patchage.png'), - install_dir: icons_dir / size / 'apps') + install_data( + files(size / 'patchage.png'), + install_dir: icons_dir / size / 'apps', + ) endforeach |