mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-08 10:25:59 +01:00
1016faea53
Signed-off-by: Julien Roy <julien@jroy.ca>
14 lines
676 B
Meson
14 lines
676 B
Meson
globber = run_command('sh', '-c', 'find . -name "*.cpp" | sort', check: true)
|
|
src = globber.stdout().strip().split('\n')
|
|
|
|
executable('hyprpm', src,
|
|
dependencies: [
|
|
dependency('threads'),
|
|
dependency('tomlplusplus')
|
|
],
|
|
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')
|