vcpkg/ports/boost-context/b2-options.cmake.in
autoantwort 245713079f
[boost-context] fix build result on apple arm (#16482)
* [boost] fix boost context build on apple arm

* add version files
2021-03-10 14:15:19 -06:00

15 lines
240 B
CMake

if(@VCPKG_TARGET_IS_WINDOWS@)
list(APPEND B2_OPTIONS
abi=ms
binary-format=pe
)
endif()
if(@VCPKG_TARGET_IS_OSX@)
list(APPEND B2_OPTIONS
abi=sysv
binary-format=mach-o
)
endif()