git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@623 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-07 18:00:59 +00:00
parent d4255fcade
commit 7fd78f175a
2 changed files with 11 additions and 2 deletions

View File

@@ -14,9 +14,9 @@ proc run {project_name} {
if { "$target" == "Linux" } {
RunCommand "./configure --enable-opengl --enable-vulkan --without-vulkan-string-helper"
} elseif { "$target" == "Win32" } {
RunCommand "./configure --enable-opengl --enable-stb-truetype --disable-freetype2 --cross CC=i686-w64-mingw32-gcc"
RunCommand "./configure --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows CC=i686-w64-mingw32-gcc"
} elseif { "$target" == "Win64" } {
RunCommand "./configure --enable-opengl --enable-stb-truetype --disable-freetype2 --cross CC=x86_64-w64-mingw32-gcc"
RunCommand "./configure --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows CC=x86_64-w64-mingw32-gcc"
}
RunCommand "make clean"
RunCommand "make -j4"