From 42f6e83dfbd73d8819287caddb250afd697729ba Mon Sep 17 00:00:00 2001 From: Marco Antognini Date: Sun, 20 Apr 2014 21:45:22 +0200 Subject: [PATCH] Improved cmake warning message Related to #572 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 91a1b5984..928b4be50 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -153,7 +153,7 @@ if(SFML_OS_MACOSX) # Objective-C ARC requires a 64 bit runtime. if(NOT CMAKE_OSX_ARCHITECTURES STREQUAL "x86_64") - message(FATAL_ERROR "CMAKE_OSX_ARCHITECTURES should be 'x86_64' to support ARC") + message(FATAL_ERROR "CMAKE_OSX_ARCHITECTURES should be 'x86_64'; SFML doesn't support 32 bit on Mac OS X.") return() endif()