i wonder if this works

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@425 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-19 17:13:36 +00:00
parent ac0e0981ff
commit ac619a754b

View File

@@ -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-"
}
}
}