mirror of https://github.com/mgba-emu/mgba.git
SDL: Fix 2.0.5 build on macOS under some circumstances
This commit is contained in:
parent
aa9994a486
commit
8684a0b221
1
CHANGES
1
CHANGES
|
@ -12,6 +12,7 @@ Bugfixes:
|
||||||
- GB Memory: Prevent accessing empty SRAM (fixes mgba.io/i/831)
|
- GB Memory: Prevent accessing empty SRAM (fixes mgba.io/i/831)
|
||||||
Misc:
|
Misc:
|
||||||
- Qt: Don't rebuild library view if style hasn't changed
|
- Qt: Don't rebuild library view if style hasn't changed
|
||||||
|
- SDL: Fix 2.0.5 build on macOS under some circumstances
|
||||||
|
|
||||||
0.6.0: (2017-07-16)
|
0.6.0: (2017-07-16)
|
||||||
Features:
|
Features:
|
||||||
|
|
|
@ -34,7 +34,7 @@ endif()
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
list(APPEND SDL_LIBRARY imm32 version winmm)
|
list(APPEND SDL_LIBRARY imm32 version winmm)
|
||||||
elseif(APPLE)
|
elseif(APPLE)
|
||||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -framework AppKit -framework AudioUnit -framework Carbon -framework CoreAudio -framework ForceFeedback -framework IOKit")
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -framework AppKit -framework AudioUnit -framework Carbon -framework CoreAudio -framework AudioToolbox -framework ForceFeedback -framework IOKit")
|
||||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS}" PARENT_SCOPE)
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS}" PARENT_SCOPE)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue