early-access version 2853
This commit is contained in:
29
externals/vcpkg/ports/boost-context/b2-options.cmake.in
vendored
Executable file
29
externals/vcpkg/ports/boost-context/b2-options.cmake.in
vendored
Executable file
@@ -0,0 +1,29 @@
|
||||
|
||||
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()
|
||||
|
||||
if("@VCPKG_TARGET_IS_LINUX@" STREQUAL "ON" OR "@VCPKG_TARGET_IS_ANDROID@" STREQUAL "ON")
|
||||
if(VCPKG_TARGET_ARCHITECTURE STREQUAL "arm" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64")
|
||||
list(APPEND B2_OPTIONS
|
||||
abi=aapcs
|
||||
)
|
||||
elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "x86" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
|
||||
list(APPEND B2_OPTIONS
|
||||
abi=sysv
|
||||
)
|
||||
endif()
|
||||
list(APPEND B2_OPTIONS
|
||||
binary-format=elf
|
||||
)
|
||||
endif()
|
||||
27
externals/vcpkg/ports/boost-context/portfile.cmake
vendored
Executable file
27
externals/vcpkg/ports/boost-context/portfile.cmake
vendored
Executable file
@@ -0,0 +1,27 @@
|
||||
# Automatically generated by scripts/boost/generate-ports.ps1
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO boostorg/context
|
||||
REF boost-1.79.0
|
||||
SHA512 25fc307a3ffa9b2b87199e0d7faf87ccd899c619d5043d3780e65476a0356a3edb0fcd55400bd2898f12de149952edf2fde58c79b62d993b534b81561bd174ea
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
vcpkg_replace_string("${SOURCE_PATH}/build/Jamfile.v2"
|
||||
"import ../../config/checks/config"
|
||||
"import ../config/checks/config"
|
||||
)
|
||||
file(COPY "${CURRENT_INSTALLED_DIR}/share/boost-config/checks" DESTINATION "${SOURCE_PATH}/config")
|
||||
include(${CURRENT_HOST_INSTALLED_DIR}/share/boost-build/boost-modular-build.cmake)
|
||||
configure_file(
|
||||
"${CMAKE_CURRENT_LIST_DIR}/b2-options.cmake.in"
|
||||
"${CURRENT_BUILDTREES_DIR}/vcpkg-b2-options.cmake"
|
||||
@ONLY
|
||||
)
|
||||
boost_modular_build(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
BOOST_CMAKE_FRAGMENT "${CURRENT_BUILDTREES_DIR}/vcpkg-b2-options.cmake"
|
||||
)
|
||||
include(${CURRENT_INSTALLED_DIR}/share/boost-vcpkg-helpers/boost-modular-headers.cmake)
|
||||
boost_modular_headers(SOURCE_PATH ${SOURCE_PATH})
|
||||
30
externals/vcpkg/ports/boost-context/vcpkg.json
vendored
Executable file
30
externals/vcpkg/ports/boost-context/vcpkg.json
vendored
Executable file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "boost-context",
|
||||
"version": "1.79.0",
|
||||
"description": "Boost context module",
|
||||
"homepage": "https://github.com/boostorg/context",
|
||||
"license": "BSL-1.0",
|
||||
"supports": "!uwp & !emscripten",
|
||||
"dependencies": [
|
||||
"boost-assert",
|
||||
{
|
||||
"name": "boost-build",
|
||||
"host": true
|
||||
},
|
||||
"boost-config",
|
||||
"boost-core",
|
||||
{
|
||||
"name": "boost-modular-build-helper",
|
||||
"host": true
|
||||
},
|
||||
"boost-mp11",
|
||||
"boost-pool",
|
||||
"boost-predef",
|
||||
"boost-smart-ptr",
|
||||
"boost-vcpkg-helpers",
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user