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.
16 lines
339 B
16 lines
339 B
project('install structured data', default_options: ['python.bytecompile=-1']) |
|
|
|
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')
|
|
|