diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2018-03-07 12:06:30 -0800 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-03-07 12:06:30 -0800 |
| commit | 41c6741b21fe246e288f754ab8dbc2d352a1633f (patch) | |
| tree | 3aafcc73acc404fecec0617cb064a92e516cb9a0 | |
| parent | a759caf15e031744e99e9718633fcc8d9a60b077 (diff) | |
| download | vcpkg-41c6741b21fe246e288f754ab8dbc2d352a1633f.tar.gz vcpkg-41c6741b21fe246e288f754ab8dbc2d352a1633f.zip | |
[c-ares] Fail fast check for uwp
| -rw-r--r-- | ports/c-ares/portfile.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ports/c-ares/portfile.cmake b/ports/c-ares/portfile.cmake index 14f948ece..4a569b567 100644 --- a/ports/c-ares/portfile.cmake +++ b/ports/c-ares/portfile.cmake @@ -1,3 +1,7 @@ +if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") + message(FATAL_ERROR "c-ares does not currently support UWP.") +endif() + include(vcpkg_common_functions) vcpkg_from_github( |
