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

@ -1,7 +1,9 @@
globber = run_command('sh', '-c', 'find . -name "*.cpp" | sort', check: true)
src = globber.stdout().strip().split('\n')
executable('Hyprland', src,
executable(
'Hyprland',
src,
link_args: '-rdynamic',
cpp_pch: 'pch/pch.hpp',
dependencies: [
@ -38,5 +40,5 @@ executable('Hyprland', src,
dependency('pangocairo'),
dependency('uuid'),
],
install : true
install: true,
)