summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Moore <DrChat@users.noreply.github.com>2018-01-21 15:43:19 -0600
committerGitHub <noreply@github.com>2018-01-21 15:43:19 -0600
commit7db4d43c1dcdae6a887115ae24bee94a416dc9a3 (patch)
tree80764a065152df348778c3b6517b5b73a270c7bb
parentd512d4127fa12a710e5d1d6d8067fe050b3445e7 (diff)
parent230bce078b3f107e4d4e5eb73811cec50609a2e4 (diff)
Merge pull request #1059 from TheCubeMaster019/master
Allow computers with non-latin native codepages to build the project.
-rw-r--r--premake5.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua
index 9d98eadee..e28db9335 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -139,6 +139,7 @@ filter("platforms:Windows")
"/wd4127", -- 'conditional expression is constant'.
"/wd4324", -- 'structure was padded due to alignment specifier'.
"/wd4189", -- 'local variable is initialized but not referenced'.
+ "/utf-8", -- 'build correctly on systems with non-Latin codepages'.
})
flags({
"NoMinimalRebuild", -- Required for /MP above.