2023-12-07 11:41:09 +01:00
|
|
|
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
|
|
|
|
)
|
2024-04-09 10:10:33 +02:00
|
|
|
|
2024-04-19 19:39:55 +02:00
|
|
|
install_data('../hyprpm.bash', install_dir: join_paths(get_option('datadir'), 'bash-completion/completions'), install_tag: 'runtime', rename: 'hyprpm')
|
2024-04-09 10:10:33 +02:00
|
|
|
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')
|