MSVC Builds: Don't enable -utf-8 explicitly

We already require a Meson release that enables -utf-8 by default, so we don't
really need to explicitly enable it here.
This commit is contained in:
Chun-wei Fan 2023-06-19 12:48:28 +08:00
parent 26edfe6d18
commit 25835afd9c

View File

@ -252,7 +252,6 @@ if cc.get_id() == 'msvc'
test_cflags = [
'-FI@0@/build-aux/msvc/msvc_recommended_pragmas.h'.format(meson.project_source_root()),
'-D_USE_MATH_DEFINES',
'-utf-8',
'-Zc:preprocessor'
]
add_project_arguments(cc.get_supported_arguments(test_cflags), language: 'c')