diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-07-20 19:18:00 -0700 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2017-07-20 19:18:00 -0700 |
| commit | a42da34a07187063da297b422a95dbb2d7bd064a (patch) | |
| tree | 7bca180cbb527084572babcf9b19227b07568201 | |
| parent | 4a3192837eab16fc34d2e5c184d60251a5b77f8e (diff) | |
| download | vcpkg-a42da34a07187063da297b422a95dbb2d7bd064a.tar.gz vcpkg-a42da34a07187063da297b422a95dbb2d7bd064a.zip | |
[libevent] Fail faster for unsupported platforms.
| -rw-r--r-- | ports/libevent/portfile.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ports/libevent/portfile.cmake b/ports/libevent/portfile.cmake index 1c70dd11f..99f0bb0e1 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 |
