early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

View File

@@ -0,0 +1,37 @@
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO machinezone/IXWebSocket
REF 2f560ff4c07e5446f2539505cb4f64f80b54ca8e #v11.4.2
SHA512 afa19cc161b9e49eafacc113583bbf68a34d83a9535c5c4f1f1cd57f943a5ad91c3117c0e2b47b2975a65f0284aec1200f6f8f5768afa7d6aebcbb823934036a
)
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
openssl USE_OPEN_SSL
mbedtls USE_MBED_TLS
sectransp USE_SECURE_TRANSPORT
)
if("sectransp" IN_LIST FEATURES AND NOT VCPKG_TARGET_IS_OSX)
message(FATAL_ERROR "sectransp is not supported on non-Apple platforms")
endif()
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
${FEATURE_OPTIONS}
-DUSE_TLS=1
MAYBE_UNUSED_VARIABLES
USE_SECURE_TRANSPORT
)
vcpkg_cmake_install()
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/ixwebsocket)
vcpkg_fixup_pkgconfig()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
# Handle copyright
file(INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)

71
externals/vcpkg/ports/ixwebsocket/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,71 @@
{
"name": "ixwebsocket",
"version-semver": "11.4.2",
"description": "Lightweight WebSocket Client and Server + HTTP Client and Server",
"homepage": "https://github.com/machinezone/IXWebSocket",
"license": "BSD-3-Clause",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
"zlib"
],
"default-features": [
"ssl"
],
"features": {
"mbedtls": {
"description": "SSL support (mbedTLS)",
"dependencies": [
"mbedtls"
]
},
"openssl": {
"description": "SSL support (OpenSSL)",
"dependencies": [
"openssl"
]
},
"sectransp": {
"description": "SSL support (sectransp)"
},
"ssl": {
"description": "Default SSL backend",
"dependencies": [
{
"name": "ixwebsocket",
"features": [
"sectransp"
],
"platform": "osx"
},
{
"name": "ixwebsocket",
"features": [
"mbedtls"
],
"platform": "windows"
},
{
"name": "ixwebsocket",
"features": [
"mbedtls"
],
"platform": "windows & uwp"
},
{
"name": "ixwebsocket",
"features": [
"openssl"
],
"platform": "!uwp & !windows & !osx"
}
]
}
}
}