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
304 B
14 lines
304 B
9 years ago
|
# This is a setup for compiling a program that runs natively
|
||
|
# but uses a custom std lib. This test will only work on
|
||
|
# x86_64.
|
||
|
|
||
|
[target_machine]
|
||
|
system = 'linux'
|
||
|
cpu_family = 'x86_64'
|
||
|
cpu = 'x86_64'
|
||
|
endian = 'little'
|
||
|
|
||
|
[properties]
|
||
|
|
||
|
c_stdlib = ['mylibc', 'mylibc_dep'] # Subproject name, dependency name
|