mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
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:
parent
e157e7a7a8
commit
2427aaf3bb
@ -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'.)
|
# 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)
|
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)
|
if(${MACOSX_VERSION} LESS 7)
|
||||||
message(FATAL_ERROR "Unsupported version of OS X: ${MACOSX_VERSION_RAW}")
|
message(FATAL_ERROR "Unsupported version of OS X: ${MACOSX_VERSION_RAW}")
|
||||||
return()
|
return()
|
||||||
|
@ -225,7 +225,7 @@ void WindowImplCocoa::setUpProcess(void)
|
|||||||
|
|
||||||
// Register an application delegate if there is none
|
// Register an application delegate if there is none
|
||||||
if (![[SFApplication sharedApplication] delegate])
|
if (![[SFApplication sharedApplication] delegate])
|
||||||
[NSApp setDelegate:[[[SFApplicationDelegate alloc] init] autorelease]];
|
[[NSApplication sharedApplication] setDelegate:[[SFApplicationDelegate alloc] init]];
|
||||||
|
|
||||||
// Create menus for the application (before finishing launching!)
|
// Create menus for the application (before finishing launching!)
|
||||||
[SFApplication setUpMenuBar];
|
[SFApplication setUpMenuBar];
|
||||||
|
Loading…
Reference in New Issue
Block a user