vcpkg/ports/socket-io-client/portfile.cmake
vipcxj 5c2221771a
[socket-io-client] Update to latest commit (#36226)
* Update socket-io-client to latest commit

* update git-tree

* update hash

* update git-tree

* add patch

* update git-tree

* update patch

* update git-tree

* Update ports/socket-io-client/fix-build.patch

Co-authored-by: Kai Pastor <dg0yt@darc.de>

* update git-tree

---------

Co-authored-by: Kai Pastor <dg0yt@darc.de>
2024-01-19 12:33:24 -08:00

33 lines
1.1 KiB
CMake

vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO socketio/socket.io-client-cpp
REF 0dc2f7afea17a0e5bfb5e9b1e6d6f26ab1455cef
SHA512 583cc0c6e392243203e4d10163a1cb5a404497472e684dfbeef7ca9634784a1fe4717f926858eea98aa0ac4356fb503abfbbeb58fcb1dd839c917e9f6ee104b1
HEAD_REF master
PATCHES
fix-build.patch
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DUSE_SUBMODULES=OFF
-DCMAKE_INSTALL_INCLUDEDIR=include
)
vcpkg_cmake_install()
vcpkg_cmake_config_fixup(PACKAGE_NAME sioclient CONFIG_PATH lib/cmake/sioclient)
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/share/sioclient/sioclientConfig.cmake"
"include(CMakeFindDependencyMacro)"
[[include(CMakeFindDependencyMacro)
find_dependency(websocketpp CONFIG)
find_dependency(asio CONFIG)
find_dependency(RapidJSON CONFIG)
find_dependency(OpenSSL)]])
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)