mirror of https://github.com/mgba-emu/mgba.git
PSP2: Add -Wno-format to remove all of the format string warnings
This commit is contained in:
parent
c4800792ec
commit
d60e4972e9
|
@ -215,6 +215,10 @@ if(CMAKE_SYSTEM_PROCESSOR MATCHES "arm.*")
|
|||
enable_language(ASM)
|
||||
endif()
|
||||
|
||||
if(PSP2)
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-format")
|
||||
endif()
|
||||
|
||||
include(CheckFunctionExists)
|
||||
check_function_exists(strdup HAVE_STRDUP)
|
||||
check_function_exists(strndup HAVE_STRNDUP)
|
||||
|
|
Loading…
Reference in New Issue