diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-10-09 14:18:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-09 14:18:53 +0200 |
commit | 21ed557ab945a30da76bc4efdf24ed9f3f4935d9 (patch) | |
tree | 0cd2a6453c7e928b76a55163b7da233d6b6b3401 /platform/uwp/detect.py | |
parent | cb9bf98bbac5aa0021a737c6003312a8d3de59b9 (diff) | |
parent | 56f3aba7b2c1c74556cfc1dd8f9b24af71c33b16 (diff) |
Merge pull request #42668 from bruvzg/msvc_utf_8
[Windows, MSVC] Correctly set source file encoding.
Diffstat (limited to 'platform/uwp/detect.py')
-rw-r--r-- | platform/uwp/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/detect.py b/platform/uwp/detect.py index 6e57dbbf64..2af7803749 100644 --- a/platform/uwp/detect.py +++ b/platform/uwp/detect.py @@ -81,7 +81,7 @@ def configure(env): vc_base_path = os.environ["VCTOOLSINSTALLDIR"] if "VCTOOLSINSTALLDIR" in os.environ else os.environ["VCINSTALLDIR"] # Force to use Unicode encoding - env.Append(MSVC_FLAGS=["/utf-8"]) + env.AppendUnique(CCFLAGS=["/utf-8"]) # ANGLE angle_root = os.getenv("ANGLE_SRC_PATH") |