Skip to content

Commit

Permalink
[ixwebsocket] Fix cmake-configure files install path (microsoft#16710)
Browse files Browse the repository at this point in the history
* [ixwebsocket] Fix cmake-configure files install path

* Update versions
  • Loading branch information
NancyLi1013 authored Mar 15, 2021
1 parent ca35082 commit be12a4d
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 24 deletions.
22 changes: 0 additions & 22 deletions ports/ixwebsocket/CONTROL

This file was deleted.

2 changes: 1 addition & 1 deletion ports/ixwebsocket/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ vcpkg_configure_cmake(
)

vcpkg_install_cmake()
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/ixwebsocket TARGET_PATH share/${port})
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/ixwebsocket)

file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)

Expand Down
63 changes: 63 additions & 0 deletions ports/ixwebsocket/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"name": "ixwebsocket",
"version-semver": "11.0.4",
"port-version": 1,
"description": "Lightweight WebSocket Client and Server + HTTP Client and Server",
"homepage": "https://github.com/machinezone/IXWebSocket",
"dependencies": [
"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"
}
]
}
}
}
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -2618,7 +2618,7 @@
},
"ixwebsocket": {
"baseline": "11.0.4",
"port-version": 0
"port-version": 1
},
"jack2": {
"baseline": "1.9.14",
Expand Down
5 changes: 5 additions & 0 deletions versions/i-/ixwebsocket.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "33b7e643eb40d7924d1210e1ce7d1a597281deb8",
"version-semver": "11.0.4",
"port-version": 1
},
{
"git-tree": "582194408bcd77d15880e2f7e7c1658c0c91310d",
"version-string": "11.0.4",
Expand Down

0 comments on commit be12a4d

Please sign in to comment.