Added support for OS X 10.10

Note: this only fix the compilation process. SFML was not thoroughly
tested on this OS yet.
This commit is contained in:
Marco Antognini 2014-09-21 07:39:05 +02:00
parent e157e7a7a8
commit 2427aaf3bb
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
# detect OS X version. (use '/usr/bin/sw_vers -productVersion' to extract V from '10.V.x'.)
EXEC_PROGRAM(/usr/bin/sw_vers ARGS -productVersion OUTPUT_VARIABLE MACOSX_VERSION_RAW)
STRING(REGEX REPLACE "10\\.([0-9]).*" "\\1" MACOSX_VERSION "${MACOSX_VERSION_RAW}")
STRING(REGEX REPLACE "10\\.([0-9]+).*" "\\1" MACOSX_VERSION "${MACOSX_VERSION_RAW}")
if(${MACOSX_VERSION} LESS 7)
message(FATAL_ERROR "Unsupported version of OS X: ${MACOSX_VERSION_RAW}")
return()

View File

@ -225,7 +225,7 @@ void WindowImplCocoa::setUpProcess(void)
// Register an application delegate if there is none
if (![[SFApplication sharedApplication] delegate])
[NSApp setDelegate:[[[SFApplicationDelegate alloc] init] autorelease]];
[[NSApplication sharedApplication] setDelegate:[[SFApplicationDelegate alloc] init]];
// Create menus for the application (before finishing launching!)
[SFApplication setUpMenuBar];