mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 15:25:59 +01:00
7 lines
263 B
Meson
7 lines
263 B
Meson
|
globber = run_command('sh', '-c', 'find -type f -not -name "*.build"', check: true)
|
||
|
files = globber.stdout().strip().split('\n')
|
||
|
|
||
|
foreach file : files
|
||
|
install_data(file, install_dir: join_paths(get_option('datadir'), 'hypr'), install_tag: 'runtime')
|
||
|
endforeach
|