mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 13:39:08 +08:00
ce16ce0a35
Fixes #38257 Update port to version 0.20.3 - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [ ] ~~The "supports" clause reflects platforms that may be fixed by this new version.~~ - [ ] ~~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file.~~ - [ ] ~~Any patches that are no longer applied are deleted from the port's directory.~~ - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file. All features are tested successfully in the following triplet: - x86-windows - x64-windows - x64-windows-static --------- Co-authored-by: Jon <v-zhli17@microsoft.com>
62 lines
1.8 KiB
CMake
62 lines
1.8 KiB
CMake
set(PATCHES fix-for-vcpkg.patch)
|
|
|
|
if(VCPKG_TARGET_IS_UWP)
|
|
list(APPEND PATCHES uwp-warnings.patch)
|
|
endif()
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO paullouisageneau/libdatachannel
|
|
REF "v${VERSION}"
|
|
SHA512 92404a04895b2bf6054498b3726272c55ba41d67a34f5637461dd15b1da6004ca913c4448075696a7a4c904d003de888b1ab01d4239353d929df7ae0eafcfd95
|
|
HEAD_REF master
|
|
PATCHES
|
|
${PATCHES}
|
|
fix_dependency.patch
|
|
)
|
|
file(REMOVE "${SOURCE_PATH}/cmake/Modules/FindLibJuice.cmake")
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" DATACHANNEL_STATIC_LINKAGE)
|
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
FEATURES
|
|
stdcall CAPI_STDCALL
|
|
INVERTED_FEATURES
|
|
ws NO_WEBSOCKET
|
|
srtp NO_MEDIA
|
|
)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
${FEATURE_OPTIONS}
|
|
-DPREFER_SYSTEM_LIB=ON
|
|
-DNO_EXAMPLES=ON
|
|
-DNO_TESTS=ON
|
|
-DDATACHANNEL_STATIC_LINKAGE=${DATACHANNEL_STATIC_LINKAGE}
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME LibDataChannel CONFIG_PATH lib/cmake/LibDataChannel)
|
|
vcpkg_fixup_pkgconfig()
|
|
|
|
if(srtp IN_LIST FEATURES)
|
|
set(FIND_DEP_SRTP "find_dependency(libSRTP CONFIG)")
|
|
endif()
|
|
|
|
file(READ "${CURRENT_PACKAGES_DIR}/share/LibDataChannel/LibDataChannelConfig.cmake" DATACHANNEL_CONFIG)
|
|
file(WRITE "${CURRENT_PACKAGES_DIR}/share/LibDataChannel/LibDataChannelConfig.cmake" "
|
|
include(CMakeFindDependencyMacro)
|
|
find_dependency(Threads)
|
|
find_dependency(OpenSSL)
|
|
find_dependency(LibJuice)
|
|
find_dependency(plog CONFIG)
|
|
find_dependency(unofficial-usrsctp CONFIG)
|
|
${FIND_DEP_SRTP}
|
|
${DATACHANNEL_CONFIG}")
|
|
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|