mirror of https://github.com/mgba-emu/mgba.git
SDL: Fix potential build issues when Qt and SDL2 are in use
This commit is contained in:
parent
32d1f5bbfb
commit
cb3f029d9e
1
CHANGES
1
CHANGES
|
@ -51,6 +51,7 @@ Bugfixes:
|
|||
- ARM7: Make illegal instruction decoding consistent between ARM and Thumb
|
||||
- GBA BIOS: Initialize a variable that may be uninitialized in very rare cases
|
||||
- ARM7: Fix ARM multiply instructions when PC is a destination register
|
||||
- SDL: Fix potential build issues when Qt and SDL2 are in use
|
||||
Misc:
|
||||
- Qt: Show multiplayer numbers in window title
|
||||
- Qt: Handle saving input settings better
|
||||
|
|
|
@ -39,6 +39,7 @@ include_directories(${CMAKE_SOURCE_DIR}/src/platform/sdl ${PIXMAN-1_INCLUDE_DIR}
|
|||
|
||||
set(SDL_INCLUDE_DIR "${SDL_INCLUDE_DIR}" PARENT_SCOPE)
|
||||
set(SDL_LIBRARY "${SDL_LIBRARY}" PARENT_SCOPE)
|
||||
set(SDLMAIN_LIBRARY "${SDLMAIN_LIBRARY}" PARENT_SCOPE)
|
||||
|
||||
set(MAIN_SRC ${CMAKE_SOURCE_DIR}/src/platform/sdl/main.c)
|
||||
|
||||
|
|
Loading…
Reference in New Issue