mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-26 10:11:27 +00:00
'properties' is too close of the meson definition and we need to duplicate the entries for 'c_link_args' and 'cpp_link_args'. By using 'extra_libs' we have a more functional definition of what we want.
17 lines
399 B
Plaintext
17 lines
399 B
Plaintext
[binaries]
|
|
pkgconfig = 'pkg-config'
|
|
c = '{toolchain.binaries[CC]}'
|
|
ar = '{toolchain.binaries[AR]}'
|
|
cpp = '{toolchain.binaries[CXX]}'
|
|
strip = '{toolchain.binaries[STRIP]}'
|
|
|
|
[properties]
|
|
c_link_args = {extra_libs!r}
|
|
cpp_link_args = {extra_libs!r}
|
|
|
|
[host_machine]
|
|
cpu_family = '{host_machine[cpu_family]}'
|
|
cpu = '{host_machine[cpu]}'
|
|
system = '{host_machine[system]}'
|
|
endian = '{host_machine[endian]}'
|