Set default to utf-8 for MSVC

This commit is contained in:
RipleyTom 2020-12-05 12:55:00 +01:00 committed by Ivan
parent d1e7837422
commit 7b694ebeb4
3 changed files with 3 additions and 3 deletions

View file

@ -64,7 +64,7 @@ set(CMAKE_C_FLAGS -w)
set(LLVM_ENABLE_WARNINGS OFF CACHE BOOL "")
if(MSVC)
add_compile_options(/wd4530) # C++ exception handler used, but unwind semantics are not enabled
add_compile_options(/wd4530 /utf-8) # C++ exception handler used, but unwind semantics are not enabled
endif()
add_subdirectory(Vulkan EXCLUDE_FROM_ALL)