Hyprland/assets/install/meson.build

11 lines
282 B
Meson
Raw Normal View History

globber = run_command('sh', '-c', 'find . -type f -not -name "*.build"', check: true)
files = globber.stdout().strip().split('\n')
foreach file : files
2024-09-11 18:00:47 +02:00
install_data(
file,
install_dir: join_paths(get_option('datadir'), 'hypr'),
install_tag: 'runtime',
)
endforeach