summaryrefslogtreecommitdiff
path: root/premake5.lua
diff options
context:
space:
mode:
authorPrism Tutaj <derektutaj@gmail.com>2017-12-22 18:48:32 -0600
committerPrism Tutaj <derektutaj@gmail.com>2017-12-22 18:48:32 -0600
commit230bce078b3f107e4d4e5eb73811cec50609a2e4 (patch)
tree7b1a764cb1c91565264453c0c99d43199a7606b7 /premake5.lua
parente9fc6921d2f598fb57bcd4e19a4d755e91402e4a (diff)
Allow computers with non-Latin codepages to build the project
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua
index 593f0503d..e6eac9193 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -119,6 +119,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.