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 /hyprpm/src | |
parent | 7a8c013edcbc59804a98fffa0436efcb268e1cda (diff) | |
download | Hyprland-e01da1fd7a50ab0baeaba074f2a14c826b05bf1c.tar.gz Hyprland-e01da1fd7a50ab0baeaba074f2a14c826b05bf1c.zip |
Meson: format
Diffstat (limited to 'hyprpm/src')
-rw-r--r-- | hyprpm/src/meson.build | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/hyprpm/src/meson.build b/hyprpm/src/meson.build index e2c512a5..2ef6c323 100644 --- a/hyprpm/src/meson.build +++ b/hyprpm/src/meson.build @@ -1,15 +1,31 @@ globber = run_command('sh', '-c', 'find . -name "*.cpp" | sort', check: true) src = globber.stdout().strip().split('\n') -executable('hyprpm', src, +executable( + 'hyprpm', + src, dependencies: [ dependency('hyprutils', version: '>= 0.1.1'), dependency('threads'), - dependency('tomlplusplus') + dependency('tomlplusplus'), ], - install : true + install: true, ) -install_data('../hyprpm.bash', install_dir: join_paths(get_option('datadir'), 'bash-completion/completions'), install_tag: 'runtime', rename: 'hyprpm') -install_data('../hyprpm.fish', install_dir: join_paths(get_option('datadir'), 'fish/vendor_completions.d'), install_tag: 'runtime') -install_data('../hyprpm.zsh', install_dir: join_paths(get_option('datadir'), 'zsh/site-functions'), install_tag: 'runtime', rename: '_hyprpm') +install_data( + '../hyprpm.bash', + install_dir: join_paths(get_option('datadir'), 'bash-completion/completions'), + install_tag: 'runtime', + rename: 'hyprpm', +) +install_data( + '../hyprpm.fish', + install_dir: join_paths(get_option('datadir'), 'fish/vendor_completions.d'), + install_tag: 'runtime', +) +install_data( + '../hyprpm.zsh', + install_dir: join_paths(get_option('datadir'), 'zsh/site-functions'), + install_tag: 'runtime', + rename: '_hyprpm', +) |