]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/tools/vcpkg/ports/boost-context/b2-options.cmake.in
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / tools / vcpkg / ports / boost-context / b2-options.cmake.in
1
2 if(@VCPKG_TARGET_IS_WINDOWS@)
3 list(APPEND B2_OPTIONS
4 abi=ms
5 binary-format=pe
6 )
7 endif()
8
9 if(@VCPKG_TARGET_IS_OSX@)
10 list(APPEND B2_OPTIONS
11 abi=sysv
12 binary-format=mach-o
13 )
14 endif()
15
16 if(@VCPKG_TARGET_IS_ANDROID@)
17 if(VCPKG_TARGET_ARCHITECTURE STREQUAL "arm" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64")
18 list(APPEND B2_OPTIONS
19 abi=aapcs
20 )
21 elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "x86" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
22 list(APPEND B2_OPTIONS
23 abi=sysv
24 )
25 endif()
26 list(APPEND B2_OPTIONS
27 binary-format=elf
28 )
29 endif()