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.
12 lines
370 B
12 lines
370 B
7 years ago
|
## install_data() supports rename
|
||
|
|
||
|
`rename` parameter is used to change names of the installed files.
|
||
|
In order to install
|
||
|
- `file1.txt` into `share/myapp/dir1/data.txt`
|
||
|
- `file2.txt` into `share/myapp/dir2/data.txt`
|
||
|
```meson
|
||
|
install_data(['file1.txt', 'file2.txt'],
|
||
|
rename : ['dir1/data.txt', 'dir2/data.txt'],
|
||
|
install_dir : 'share/myapp')
|
||
|
```
|