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
committed by Matthias Clasen
parent 8d92e0fb6f
commit cb644a6d23

View File

@@ -251,7 +251,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')