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.
14 lines
383 B
14 lines
383 B
7 years ago
|
# Config-Tool based dependencies can be specified in a cross file
|
||
|
|
||
|
Tools like LLVM and pcap use a config tool for dependencies, this is a script
|
||
|
or binary that is run to get configuration information (cflags, ldflags, etc)
|
||
|
from.
|
||
|
|
||
|
These binaries may now be specified in the `binaries` section of a cross file.
|
||
|
|
||
|
```dosini
|
||
|
[binaries]
|
||
|
cc = ...
|
||
|
llvm-config = '/usr/bin/llvm-config32'
|
||
|
```
|