The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
295 B
17 lines
295 B
2 years ago
|
project('install structured data')
|
||
|
|
||
|
install_data(
|
||
|
'dir1/file1',
|
||
|
'dir1/file2',
|
||
|
'dir1/file3',
|
||
|
'dir2/file1',
|
||
|
'dir2/file2',
|
||
|
'dir2/file3',
|
||
|
'dir3/file1',
|
||
|
'dir3/file2',
|
||
|
'dir3/file3',
|
||
|
install_dir: get_option('datadir'),
|
||
|
preserve_path: true,
|
||
|
)
|
||
|
subdir('pysrc')
|