mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 05:26:23 +00:00
meson: Specify encoding to UTF-8 when building with MSVC
Fix build on some non-US locale Windows systems Error: gstreamer/gst/gstdebugutils.c(194): error C2001 https://bugzilla.gnome.org/show_bug.cgi?id=797186
This commit is contained in:
parent
17798bca6d
commit
54e498f2d5
1 changed files with 1 additions and 0 deletions
|
@ -43,6 +43,7 @@ if cc.get_id() == 'msvc'
|
|||
'/wd4146', # unary minus on unsigned (beware INT_MIN)
|
||||
'/wd4244', # lossy type conversion (e.g. double -> int)
|
||||
'/wd4305', # truncating type conversion (e.g. double -> float)
|
||||
cc.get_supported_arguments(['/utf-8']), # set the input encoding to utf-8
|
||||
language : 'c')
|
||||
elif cc.has_link_argument('-Wl,-Bsymbolic-functions')
|
||||
# FIXME: Add an option for this if people ask for it
|
||||
|
|
Loading…
Reference in a new issue