1
0
Fork 0
mirror of https://github.com/hyprwm/Hyprland synced 2025-01-31 18:29:50 +01:00
Hyprland/assets/install/meson.build
2024-09-11 19:09:17 +03:00

10 lines
282 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