blob: c67cec76ebc577168681406642b9a13e27332ada (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Note: OpenADK's and Meson's terminologies differ about the meaning
# of 'build', 'host' and 'target':
# - OpenADK's 'host' is Meson's 'build'
# - OpenADK's 'target' is Meson's 'host'
[binaries]
pkgconfig = '@STAGING_HOST_DIR@/usr/bin/pkg-config'
[properties]
c_args = [@HOST_CFLAGS@]
c_link_args = [@HOST_LDFLAGS@]
cpp_args = [@HOST_CXXFLAGS@]
cpp_link_args = [@HOST_LDFLAGS@]
|