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