mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 07:03:06 +00:00
[3RDPARTY] Suppress MSVC printf format warnings in 3rd-party code
This commit is contained in:
parent
58588b76e2
commit
ad89837c0e
10 changed files with 48 additions and 0 deletions
|
@ -7,6 +7,11 @@ include_directories(
|
|||
${REACTOS_SOURCE_DIR}/drivers/filesystems/nfs
|
||||
${REACTOS_SOURCE_DIR}/dll/np/nfs)
|
||||
|
||||
if (MSVC)
|
||||
# Disable warning C4477 (printf format warnings)
|
||||
add_compile_flags("/wd4477")
|
||||
endif()
|
||||
|
||||
list(APPEND SOURCE
|
||||
acl.c
|
||||
callback_server.c
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue