diff options
| -rw-r--r-- | ports/redshell/portfile.cmake | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ports/redshell/portfile.cmake b/ports/redshell/portfile.cmake index 89fef684a..c394d7013 100644 --- a/ports/redshell/portfile.cmake +++ b/ports/redshell/portfile.cmake @@ -1,5 +1,13 @@ include(vcpkg_common_functions) +if(VCPKG_TARGET_ARCHITECTURE STREQUAL arm) + message(FATAL_ERROR "Error: redshell does not support the ARM architecture.") +endif() + +if (VCPKG_CMAKE_SYSTEM_NAME STREQUAL WindowsStore) + message(FATAL_ERROR "Error: redshell does not support UWP builds.") +endif() + set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/redshell) vcpkg_from_github( |
