Disable warnings on several third party libraries. (#5519)

This commit is contained in:
arcum42 2022-02-28 21:14:52 -08:00 committed by GitHub
parent 2c33bf8c6f
commit 11918e5846
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -248,6 +248,7 @@ if(QT_BUILD)
endif()
add_subdirectory(3rdparty/libchdr/libchdr EXCLUDE_FROM_ALL)
target_compile_options(chdr-static PRIVATE "-w")
if(USE_NATIVE_TOOLS)
add_subdirectory(tools/bin2cpp EXCLUDE_FROM_ALL)
@ -269,5 +270,7 @@ endif()
if(CUBEB_API)
add_subdirectory(3rdparty/cubeb EXCLUDE_FROM_ALL)
target_compile_options(cubeb PRIVATE "-w")
target_compile_options(speex PRIVATE "-w")
endif()