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
481 B
16 lines
481 B
6 years ago
|
## Native config files
|
||
|
|
||
|
Native files are the counterpart to cross files, and allow specifying
|
||
|
information about the build machine, both when cross compiling and when not.
|
||
|
|
||
|
Currently the native files only allow specifying the names of binaries, similar
|
||
|
to the cross file, for example:
|
||
|
|
||
|
```ini
|
||
|
[binaries]
|
||
|
llvm-config = "/opt/llvm-custom/bin/llvm-config"
|
||
|
```
|
||
|
|
||
|
Will override the llvm-config used for *native* binaries. Targets for the host
|
||
|
machine will continue to use the cross file.
|