From a42da34a07187063da297b422a95dbb2d7bd064a Mon Sep 17 00:00:00 2001 From: Robert Schumacher Date: Thu, 20 Jul 2017 19:18:00 -0700 Subject: [PATCH] [libevent] Fail faster for unsupported platforms. --- ports/libevent/portfile.cmake | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ports/libevent/portfile.cmake b/ports/libevent/portfile.cmake index 1c70dd11f8..99f0bb0e1e 100644 --- a/ports/libevent/portfile.cmake +++ b/ports/libevent/portfile.cmake @@ -1,5 +1,9 @@ include(vcpkg_common_functions) +if(VCPKG_CMAKE_SYSTEM_NAME MATCHES "WindowsStore") + message(FATAL_ERROR "libevent does not currently support UWP") +endif() + vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO libevent/libevent