summaryrefslogtreecommitdiffstats
path: root/platform/uwp/detect.py
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2020-10-09 13:56:20 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2020-10-09 13:56:20 +0300
commit56f3aba7b2c1c74556cfc1dd8f9b24af71c33b16 (patch)
tree0cd2a6453c7e928b76a55163b7da233d6b6b3401 /platform/uwp/detect.py
parentcb9bf98bbac5aa0021a737c6003312a8d3de59b9 (diff)
downloadredot-engine-56f3aba7b2c1c74556cfc1dd8f9b24af71c33b16.tar.gz
[Windows, MSVC] Correctly set source file encoding.
Diffstat (limited to 'platform/uwp/detect.py')
-rw-r--r--platform/uwp/detect.py2
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")