[REACTOS] Silence warnings in 3r-party code

This commit is contained in:
Timo Kreuzer 2021-06-29 10:03:28 +02:00
parent 5d8e834897
commit 41bc57ddf0
33 changed files with 145 additions and 31 deletions

View file

@ -14,3 +14,8 @@ list(APPEND SOURCE
add_library(ext2lib ${SOURCE})
add_pch(ext2lib Mke2fs.h SOURCE)
add_dependencies(ext2lib psdk)
if(MSVC)
# Disable warning C4267: '=': conversion from 'size_t' to '__u8', possible loss of data
target_compile_options(ext2lib PRIVATE /wd4267)
endif()