diff options
| author | codicodi <rob.ceglinski@gmail.com> | 2016-11-27 02:28:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-27 02:28:37 +0100 |
| commit | 76e1ee2cfc6c8fab2c1dd1964c6ec6aea66540c3 (patch) | |
| tree | 8837c640ce95ab6d1797c2d372ea3447d4db541a | |
| parent | cfa70c4f67a351732c9e02063a848356d1dc8758 (diff) | |
| download | vcpkg-76e1ee2cfc6c8fab2c1dd1964c6ec6aea66540c3.tar.gz vcpkg-76e1ee2cfc6c8fab2c1dd1964c6ec6aea66540c3.zip | |
Fix small logic error
| -rw-r--r-- | ports/icu/portfile.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/icu/portfile.cmake b/ports/icu/portfile.cmake index fd6bc8a5a..376c2878b 100644 --- a/ports/icu/portfile.cmake +++ b/ports/icu/portfile.cmake @@ -1,4 +1,4 @@ -if (NOT TARGET_TRIPLET STREQUAL "x86-windows" OR NOT TARGET_TRIPLET STREQUAL "x64-windows")
+if (NOT TARGET_TRIPLET STREQUAL "x86-windows" AND NOT TARGET_TRIPLET STREQUAL "x64-windows")
message(FATAL_ERROR "Error: Only x64 and x86 desktop builds are supported now.")
endif()
|
