[uwebsockets] update to 20.75.0 (#50109)
This commit is contained in:
@@ -3,7 +3,7 @@ vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO uNetworking/uWebSockets
|
||||
REF "v${VERSION}"
|
||||
SHA512 a2a46ae4f92eb31c43bd717d75003db5930462a10eb7a48b80b662f77a53af4fc24cf3209857ba01a7317784469a63386731271df4edf7ab99fe748ad709387c
|
||||
SHA512 33a5f01dc1247a86f7ccfdcbf87cb5abbbb230a2e5a13aa8128944de4742d6e2e1a3d1b84fa37945cadaca7f867e3e11ec25df9734d6732ee9000f4fb3eb4b06
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
@@ -18,6 +18,10 @@ set(UWS_NO_ZLIB 1)
|
||||
if("zlib" IN_LIST FEATURES)
|
||||
set(UWS_NO_ZLIB 0)
|
||||
endif()
|
||||
set(UWS_NO_SIMDUTF 1)
|
||||
if("simdutf" IN_LIST FEATURES)
|
||||
set(UWS_NO_SIMDUTF 0)
|
||||
endif()
|
||||
configure_file("${CURRENT_PORT_DIR}/unofficial-uwebsockets-config.cmake" "${CURRENT_PACKAGES_DIR}/share/unofficial-uwebsockets/unofficial-uwebsockets-config.cmake" @ONLY)
|
||||
|
||||
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|
||||
|
||||
@@ -6,6 +6,9 @@ endif()
|
||||
if(NOT "@UWS_NO_ZLIB@")
|
||||
find_dependency(ZLIB)
|
||||
endif()
|
||||
if(NOT "@UWS_NO_SIMDUTF@")
|
||||
find_dependency(simdutf)
|
||||
endif()
|
||||
|
||||
if(NOT TARGET unofficial::uwebsockets::uwebsockets)
|
||||
add_library(unofficial::uwebsockets::uwebsockets INTERFACE IMPORTED)
|
||||
@@ -23,4 +26,8 @@ if(NOT TARGET unofficial::uwebsockets::uwebsockets)
|
||||
else()
|
||||
target_link_libraries(unofficial::uwebsockets::uwebsockets INTERFACE ZLIB::ZLIB)
|
||||
endif()
|
||||
if(NOT "@UWS_NO_SIMDUTF@")
|
||||
target_compile_definitions(unofficial::uwebsockets::uwebsockets INTERFACE UWS_USE_SIMDUTF)
|
||||
target_link_libraries(unofficial::uwebsockets::uwebsockets INTERFACE simdutf::simdutf)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "uwebsockets",
|
||||
"version-semver": "20.74.0",
|
||||
"version-semver": "20.75.0",
|
||||
"description": "Simple, secure & standards compliant web I/O for the most demanding of applications",
|
||||
"homepage": "https://github.com/uWebSockets/uWebSockets",
|
||||
"license": "Apache-2.0",
|
||||
@@ -14,6 +14,12 @@
|
||||
"libdeflate"
|
||||
]
|
||||
},
|
||||
"simdutf": {
|
||||
"description": "Enable simdutf support",
|
||||
"dependencies": [
|
||||
"simdutf"
|
||||
]
|
||||
},
|
||||
"ssl": {
|
||||
"description": "Enable SSL support",
|
||||
"dependencies": [
|
||||
|
||||
@@ -10261,7 +10261,7 @@
|
||||
"port-version": 0
|
||||
},
|
||||
"uwebsockets": {
|
||||
"baseline": "20.74.0",
|
||||
"baseline": "20.75.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"v-hacd": {
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "475281d60c33a589428af168798c5716e19fb271",
|
||||
"version-semver": "20.75.0",
|
||||
"port-version": 0
|
||||
},
|
||||
{
|
||||
"git-tree": "710a7028c6e4c18cc7ab4779014c737ad7b094ec",
|
||||
"version-semver": "20.74.0",
|
||||
|
||||
Reference in New Issue
Block a user