diff options
| -rw-r--r-- | ports/arrow/portfile.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ports/arrow/portfile.cmake b/ports/arrow/portfile.cmake index d82610e11..9bf6f999e 100644 --- a/ports/arrow/portfile.cmake +++ b/ports/arrow/portfile.cmake @@ -1,5 +1,9 @@ include(vcpkg_common_functions) +if(NOT VCPKG_TARGET_ARCHITECTURE STREQUAL "x64") + message(FATAL_ERROR "Apache Arrow only supports x64") +endif() + vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO apache/arrow |
