mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-28 19:25:27 +08:00
[vcpkg baseline][rest-rpc] Skip check in baseline (#13295)
This commit is contained in:
parent
aa43b9c7ae
commit
f4a2dce829
@ -1,4 +1,5 @@
|
|||||||
Source: msgpack
|
Source: msgpack
|
||||||
Version: 3.2.0-1
|
Version: 3.2.0
|
||||||
|
Port-Version: 2
|
||||||
Homepage: https://github.com/msgpack/msgpack-c
|
Homepage: https://github.com/msgpack/msgpack-c
|
||||||
Description: MessagePack is an efficient binary serialization format, which lets you exchange data among multiple languages like JSON, except that it's faster and smaller.
|
Description: MessagePack is an efficient binary serialization format, which lets you exchange data among multiple languages like JSON, except that it's faster and smaller.
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
include(vcpkg_common_functions)
|
if (EXISTS ${CURRENT_INSTALLED_DIR}/include/msgpack/pack.h)
|
||||||
|
message(FATAL_ERROR "Cannot install ${PORT} when rest-rpc is already installed, please remove rest-rpc using \"./vcpkg remove rest-rpc:${TARGET_TRIPLET}\"")
|
||||||
|
endif()
|
||||||
|
|
||||||
vcpkg_from_github(
|
vcpkg_from_github(
|
||||||
OUT_SOURCE_PATH SOURCE_PATH
|
OUT_SOURCE_PATH SOURCE_PATH
|
||||||
REPO msgpack/msgpack-c
|
REPO msgpack/msgpack-c
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
Source: rest-rpc
|
Source: rest-rpc
|
||||||
Version: 0.07
|
Version: 0.07
|
||||||
|
Port-Version: 1
|
||||||
Homepage: https://github.com/qicosmos/rest_rpc
|
Homepage: https://github.com/qicosmos/rest_rpc
|
||||||
Description: c++11, high performance, cross platform, easy to use rpc framework
|
Description: c++11, high performance, cross platform, easy to use rpc framework
|
||||||
Build-Depends: asio
|
Build-Depends: asio
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
# header-only library
|
if (EXISTS ${CURRENT_INSTALLED_DIR}/include/msgpack/pack.h)
|
||||||
|
message(FATAL_ERROR "Cannot install ${PORT} when msgpack is already installed, please remove msgpack using \"./vcpkg remove msgpack:${TARGET_TRIPLET}\"")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# header-only library
|
||||||
set(RESTRPC_VERSION V0.07)
|
set(RESTRPC_VERSION V0.07)
|
||||||
set(RESTRPC_HASH 148152776c8c4f16e404c62ab3f46618e1817c0b4b186dbcc399c859efd110ed5a207bf56e961c312f80844f696f597068e0abc00e426409d50a2889d30c6d8e)
|
set(RESTRPC_HASH 148152776c8c4f16e404c62ab3f46618e1817c0b4b186dbcc399c859efd110ed5a207bf56e961c312f80844f696f597068e0abc00e426409d50a2889d30c6d8e)
|
||||||
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/rest-rpc-${RESTRPC_VERSION})
|
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/rest-rpc-${RESTRPC_VERSION})
|
||||||
|
@ -1499,6 +1499,15 @@ reproc:arm-uwp=fail
|
|||||||
reproc:x64-uwp=fail
|
reproc:x64-uwp=fail
|
||||||
restbed:arm-uwp=fail
|
restbed:arm-uwp=fail
|
||||||
restbed:x64-uwp=fail
|
restbed:x64-uwp=fail
|
||||||
|
# file conflicts with msgpack
|
||||||
|
rest-rpc:x86-windows=skip
|
||||||
|
rest-rpc:x64-windows=skip
|
||||||
|
rest-rpc:x64-windows-static=skip
|
||||||
|
rest-rpc:x64-uwp=skip
|
||||||
|
rest-rpc:arm-uwp=skip
|
||||||
|
rest-rpc:arm64-windows=skip
|
||||||
|
rest-rpc:x64-linux=skip
|
||||||
|
rest-rpc:x64-osx=skip
|
||||||
rhash:arm64-windows=fail
|
rhash:arm64-windows=fail
|
||||||
rhash:arm-uwp=fail
|
rhash:arm-uwp=fail
|
||||||
rhash:x64-uwp=fail
|
rhash:x64-uwp=fail
|
||||||
|
Loading…
x
Reference in New Issue
Block a user