Meson: format

This commit is contained in:
Mihai Fufezan 2024-09-11 19:00:47 +03:00
parent 7a8c013edc
commit e01da1fd7a
No known key found for this signature in database
8 changed files with 87 additions and 28 deletions

View file

@ -2,5 +2,9 @@ globber = run_command('sh', '-c', 'find . -type f -not -name "*.build"', check:
files = globber.stdout().strip().split('\n')
foreach file : files
install_data(file, install_dir: join_paths(get_option('datadir'), 'hypr'), install_tag: 'runtime')
install_data(
file,
install_dir: join_paths(get_option('datadir'), 'hypr'),
install_tag: 'runtime',
)
endforeach