Skip to content

Commit 0db7879

Browse files
authored
[CMAKE] msvc.cmake: Add /wd4819 for Far East Asian (reactos#8219)
"Far East Asian" Visual Studio had generated a lot of "warning C4819: File contains characters that cannot be displayed in the current code page...". JIRA issue: N/A
1 parent 06343fa commit 0db7879

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

sdk/cmake/msvc.cmake

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ if(CMAKE_C_COMPILER_ID STREQUAL "MSVC")
4040
add_compile_options(/X /Zl)
4141
endif()
4242

43+
# Erase warning C4819 for Far East Asian: The file contains characters that cannot be displayed in the current code page
44+
add_compile_options(/wd4819)
45+
4346
# Disable buffer security checks by default.
4447
add_compile_options(/GS-)
4548

0 commit comments

Comments
 (0)