mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
CMake: Pass -Wno-format with MinGW
This commit is contained in:
parent
4642553bb8
commit
74dbef1552
1 changed files with 4 additions and 0 deletions
|
@ -311,6 +311,10 @@ if (EXPAT_WARNINGS_AS_ERRORS)
|
|||
add_definitions(/WX)
|
||||
else()
|
||||
set(EXTRA_COMPILE_FLAGS "${EXTRA_COMPILE_FLAGS} -Werror")
|
||||
if(MINGW)
|
||||
# To avoid "error: unknown conversion type character ‘l’ in format [-Werror=format=]"
|
||||
set(EXTRA_COMPILE_FLAGS "${EXTRA_COMPILE_FLAGS} -Wno-format")
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_COMPILE_FLAGS}")
|
||||
|
|
Loading…
Add table
Reference in a new issue