mirror of https://github.com/mgba-emu/mgba.git
CMake: Don't use libzip on embedded platforms (fixes #1527)
This commit is contained in:
parent
4e81b8e2b0
commit
2044039c7a
1
CHANGES
1
CHANGES
|
@ -76,6 +76,7 @@ Misc:
|
||||||
- OpenGL: Only resize textures when needed
|
- OpenGL: Only resize textures when needed
|
||||||
- GBA BIOS: Fix clobbered registers in CpuSet (fixes mgba.io/i/1531)
|
- GBA BIOS: Fix clobbered registers in CpuSet (fixes mgba.io/i/1531)
|
||||||
- Qt: Remove What's This icon from dialogs
|
- Qt: Remove What's This icon from dialogs
|
||||||
|
- CMake: Don't use libzip on embedded platforms (fixes mgba.io/i/1527)
|
||||||
|
|
||||||
0.7.3: (2019-09-15)
|
0.7.3: (2019-09-15)
|
||||||
Emulation fixes:
|
Emulation fixes:
|
||||||
|
|
|
@ -245,6 +245,7 @@ if(DEFINED 3DS OR DEFINED PSP2 OR DEFINED WII OR DEFINED SWITCH)
|
||||||
set(USE_DEBUGGERS OFF)
|
set(USE_DEBUGGERS OFF)
|
||||||
set(USE_SQLITE3 OFF)
|
set(USE_SQLITE3 OFF)
|
||||||
set(USE_DISCORD_RPC OFF)
|
set(USE_DISCORD_RPC OFF)
|
||||||
|
set(USE_LIBZIP OFF CACHE BOOL "")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(DEFINED 3DS)
|
if(DEFINED 3DS)
|
||||||
|
|
Loading…
Reference in New Issue