mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-20 07:27:49 +08:00
25 lines
731 B
CMake
25 lines
731 B
CMake
|
include(vcpkg_common_functions)
|
||
|
|
||
|
vcpkg_from_github(
|
||
|
OUT_SOURCE_PATH SOURCE_PATH
|
||
|
REPO machinezone/IXWebSocket
|
||
|
REF v4.0.3
|
||
|
SHA512 41cda81ef28ae2a51d77bf09158f4c07350f22b17ed4b6645a87c7defd2a901b7656de260bc785c42990ddbea0ab23ad6e099694d2712537de0ca328aee8e229
|
||
|
)
|
||
|
|
||
|
vcpkg_configure_cmake(
|
||
|
SOURCE_PATH ${SOURCE_PATH}
|
||
|
PREFER_NINJA # Disable this option if project cannot be built with Ninja
|
||
|
OPTIONS -DUSE_TLS=1
|
||
|
)
|
||
|
|
||
|
vcpkg_install_cmake()
|
||
|
|
||
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||
|
|
||
|
# Handle copyright
|
||
|
file(INSTALL ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/ixwebsocket RENAME copyright)
|
||
|
|
||
|
# Post-build test for cmake libraries
|
||
|
# vcpkg_test_cmake(PACKAGE_NAME ixwebsocket)
|