Removed 64-bit check for Apple

We build the SDL framework for macOS, iOS, and tvOS, including 32-bit and 64-bit architectures. Since this file will actually be included in the framework you're linking, it should be fine to use.
This commit is contained in:
Sam Lantinga 2022-05-26 18:31:31 -07:00 committed by Anonymous Maarten
parent e30b9993b9
commit 7c2a6ea5f2

View file

@ -46,9 +46,3 @@ endif()
if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "")
set(PACKAGE_VERSION_UNSUITABLE TRUE)
endif()
# check that the installed version has the same 32/64bit-ness as the one which is currently searching:
if(NOT (CMAKE_SIZEOF_VOID_P STREQUAL "8"))
set(PACKAGE_VERSION "${PACKAGE_VERSION} (arm64+x64)")
set(PACKAGE_VERSION_UNSUITABLE TRUE)
endif()