From 230bce078b3f107e4d4e5eb73811cec50609a2e4 Mon Sep 17 00:00:00 2001 From: Prism Tutaj Date: Fri, 22 Dec 2017 18:48:32 -0600 Subject: [PATCH] Allow computers with non-Latin codepages to build the project --- premake5.lua | 1 + 1 file changed, 1 insertion(+) 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.