mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 11:49:05 +08:00
[bgfx] Add bgfx config (#28136)
This commit is contained in:
parent
af031ae388
commit
d8eaada509
85
ports/bgfx/portfile.cmake
Normal file
85
ports/bgfx/portfile.cmake
Normal file
@ -0,0 +1,85 @@
|
||||
vcpkg_download_distfile(ARCHIVE
|
||||
URLS "https://github.com/bkaradzic/bgfx.cmake/archive/refs/tags/v1.118.8384-362.tar.gz"
|
||||
FILENAME "v1.118.8384-362.tar.gz"
|
||||
SHA512 56203c40a724cd9e225d1c3142a30f8dd2e2f8cfc869a19cfa512bc69f0f62cd9460d016f1345a21bae9ef81323571d30dc588fde53f0fd0ba8628f7bbbab563
|
||||
)
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH_BX
|
||||
REPO "bkaradzic/bx"
|
||||
HEAD_REF master
|
||||
REF aed1086c48884b1b4f1c2f9af34c5198624263f6
|
||||
SHA512 63bc5c6358f6a760bd5d8d056ef6fc6de175dcf8b940d5490225f13dfdd791c6b1d6bd2087d5d48a34955649bc12cbcc92f5221188ba0df5eb5c5d00eb389e94
|
||||
)
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH_BIMG
|
||||
REPO "bkaradzic/bimg"
|
||||
HEAD_REF master
|
||||
REF 85109d7cdbe775a0ab72cf38510df525d5e8d3da
|
||||
SHA512 b3e082cd249e802e6d209ed45a552843604713a06597277b2855d1fa1c39b3d5136d5589599a85126eda218ccfee0ce6177f004cb5dccb912fe64ea7e07af2a8
|
||||
)
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH_BGFX
|
||||
REPO "bkaradzic/bgfx"
|
||||
HEAD_REF master
|
||||
REF 66de825e6f9de21890b336994141ab5dbc214dec
|
||||
SHA512 16ee1d3897dce5fcee7e658f793e078a1f3547b5d3512ebb860819d5105df99f87e4389ee1c66c1d24df04e0e589b6842cf36a52581e21732164017098f36f60
|
||||
)
|
||||
|
||||
vcpkg_check_features(
|
||||
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||
FEATURES tools BGFX_BUILD_TOOLS multithreaded BGFX_CONFIG_MULTITHREADED
|
||||
)
|
||||
|
||||
if (BGFX_BUILD_TOOLS AND TARGET_TRIPLET MATCHES "(windows|uwp)")
|
||||
# bgfx doesn't apply __declspec(dllexport) which prevents dynamic linking for tools
|
||||
set(BGFX_LIBRARY_TYPE "STATIC")
|
||||
elseif (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
|
||||
set(BGFX_LIBRARY_TYPE "SHARED")
|
||||
else ()
|
||||
set(BGFX_LIBRARY_TYPE "STATIC")
|
||||
endif ()
|
||||
|
||||
vcpkg_extract_source_archive(SOURCE_PATH
|
||||
ARCHIVE "${ARCHIVE}"
|
||||
)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
SOURCE_PATH "${SOURCE_PATH}"
|
||||
OPTIONS -DBX_DIR=${SOURCE_PATH_BX}
|
||||
-DBIMG_DIR=${SOURCE_PATH_BIMG}
|
||||
-DBGFX_DIR=${SOURCE_PATH_BGFX}
|
||||
-DBGFX_LIBRARY_TYPE=${BGFX_LIBRARY_TYPE}
|
||||
-DBX_AMALGAMATED=ON
|
||||
-DBGFX_AMALGAMATED=ON
|
||||
-DBGFX_BUILD_EXAMPLES=OFF
|
||||
-DBGFX_OPENGLES_VERSION=30
|
||||
${FEATURE_OPTIONS}
|
||||
)
|
||||
|
||||
vcpkg_cmake_install()
|
||||
vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/${PORT}")
|
||||
vcpkg_copy_pdbs()
|
||||
|
||||
if (BGFX_BUILD_TOOLS)
|
||||
vcpkg_copy_tools(
|
||||
TOOL_NAMES shaderc geometryc geometryv texturec texturev AUTO_CLEAN
|
||||
)
|
||||
endif ()
|
||||
|
||||
# Handle copyright
|
||||
file(
|
||||
INSTALL "${CURRENT_PACKAGES_DIR}/share/licences/${PORT}/LICENSE"
|
||||
DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}"
|
||||
RENAME copyright
|
||||
)
|
||||
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/share/licences"
|
||||
"${CURRENT_PACKAGES_DIR}/debug/include"
|
||||
"${CURRENT_PACKAGES_DIR}/debug/share"
|
||||
)
|
||||
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static" OR NOT VCPKG_TARGET_IS_WINDOWS)
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
||||
endif()
|
31
ports/bgfx/vcpkg.json
Normal file
31
ports/bgfx/vcpkg.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"name": "bgfx",
|
||||
"version": "1.118.8384-362",
|
||||
"maintainers": "Sandy Carter <bwrsandman@users.noreply.github.com>",
|
||||
"description": "Cross-platform, graphics API agnostic, Bring Your Own Engine/Framework style rendering library.",
|
||||
"homepage": "https://bkaradzic.github.io/bgfx/overview.html",
|
||||
"documentation": "https://bkaradzic.github.io/bgfx",
|
||||
"license": "BSD-2-Clause",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake-config",
|
||||
"host": true
|
||||
}
|
||||
],
|
||||
"default-features": [
|
||||
"multithreaded"
|
||||
],
|
||||
"features": {
|
||||
"multithreaded": {
|
||||
"description": "Encode and render on different threads"
|
||||
},
|
||||
"tools": {
|
||||
"$comment": "Use '\"host\": true' in dependencies of vcpkg.json to prevent cross compiling the tools.",
|
||||
"description": "Shader, Texture and Geometry compilers for bgfx."
|
||||
}
|
||||
}
|
||||
}
|
9
versions/b-/bgfx.json
Normal file
9
versions/b-/bgfx.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "6554186755cae40eef0b34bf0c447861d6e6dd7a",
|
||||
"version": "1.118.8384-362",
|
||||
"port-version": 0
|
||||
}
|
||||
]
|
||||
}
|
@ -484,6 +484,10 @@
|
||||
"baseline": "1.6",
|
||||
"port-version": 0
|
||||
},
|
||||
"bgfx": {
|
||||
"baseline": "1.118.8384-362",
|
||||
"port-version": 0
|
||||
},
|
||||
"bigint": {
|
||||
"baseline": "2010.04.30",
|
||||
"port-version": 7
|
||||
|
Loading…
Reference in New Issue
Block a user