diff options
author | Mihai Fufezan <[email protected]> | 2024-09-11 19:00:47 +0300 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2024-09-11 19:09:17 +0300 |
commit | e01da1fd7a50ab0baeaba074f2a14c826b05bf1c (patch) | |
tree | cc16aa35e2c6364e40934ae5df868beef8584fb9 /src/meson.build | |
parent | 7a8c013edcbc59804a98fffa0436efcb268e1cda (diff) | |
download | Hyprland-e01da1fd7a50ab0baeaba074f2a14c826b05bf1c.tar.gz Hyprland-e01da1fd7a50ab0baeaba074f2a14c826b05bf1c.zip |
Meson: format
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/meson.build b/src/meson.build index 475ecc24..3821bd60 100644 --- a/src/meson.build +++ b/src/meson.build @@ -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, ) |