mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +00:00

Following the Android developer guide (https://developer.android.com/ndk/guides/other_build_systems), added HOST_TAG to the directory.
19 lines
No EOL
693 B
Text
19 lines
No EOL
693 B
Text
# Android developer (Use the NDK with other build systems)
|
|
# https://developer.android.com/ndk/guides/other_build_systems
|
|
|
|
[binaries]
|
|
cpp = 'NDK/toolchains/llvm/prebuilt/HOST_TAG/bin/aarch64-linux-androidAPI-clang++'
|
|
ar = 'NDK/toolchains/llvm/prebuilt/HOST_TAG/bin/llvm-ar'
|
|
as = 'NDK/toolchains/llvm/prebuilt/HOST_TAG/bin/llvm-as'
|
|
ranlib = 'NDK/toolchains/llvm/prebuilt/HOST_TAG/bin/llvm-ranlib'
|
|
ld = 'NDK/toolchains/llvm/prebuilt/HOST_TAG/bin/ld'
|
|
strip = 'NDK/toolchains/llvm/prebuilt/HOST_TAG/bin/llvm-strip'
|
|
|
|
[properties]
|
|
sys_root = 'NDK/toolchains/llvm/prebuilt/HOST_TAG/sysroot'
|
|
|
|
[host_machine]
|
|
system = 'android'
|
|
cpu_family = 'arm'
|
|
cpu = 'aarch64'
|
|
endian = 'little' |