From ac619a754b274841167fa1c8f4b2355e769db19c Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Sun, 19 Oct 2025 17:13:36 +0000 Subject: [PATCH] i wonder if this works git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@425 b9cfdab3-6d41-4d17-bbe4-086880011989 --- Koakumafile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Koakumafile b/Koakumafile index 1fe09e4..cf31ade 100755 --- a/Koakumafile +++ b/Koakumafile @@ -9,7 +9,12 @@ proc run {project_name} { } else { RunCommand "make clean" if { "$project_name" == "MilskoLinux" } { - RunCommand "make -j4" + RunCommand "make -j4 VULKAN_NO_STRING_HELPER=1" + } elseif { "$project_name" == "MilskoWin32" } { + RunCommand "make -j4 VULKAN=0 TARGET=Windows GCC=i686-w64-mingw32-" + } elseif { "$project_name" == "MilskoWin64" } { + RunCommand "make -j4 VULKAN=0 TARGET=Windows GCC=x86_64-w64-mingw32-" } + } }