Files
milsko/Koakumafile
NishiOwO e918270a9a i wonder if this works
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@426 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-10-19 17:18:24 +00:00

22 lines
626 B
Tcl
Executable File

# $Id$
# vim: syntax=tcl
proc run {project_name} {
if { "$project_name" == "MilskoDoxygen" } {
RunCommand "doxygen"
RunCommand "rm -rf /var/www/milsko-doxygen"
RunCommand "mv doxygen/html /var/www/milsko-doxygen"
} else {
foreach target {"Linux" "Win32" "Win64"} {
RunCommand "make clean"
if { "$target" == "Linux" } {
RunCommand "make -j4 VULKAN_NO_STRING_HELPER=1"
} elseif { "$target" == "Win32" } {
RunCommand "make -j4 VULKAN=0 TARGET=Windows GCC=i686-w64-mingw32-"
} elseif { "$target" == "Win64" } {
RunCommand "make -j4 VULKAN=0 TARGET=Windows GCC=x86_64-w64-mingw32-"
}
}
}
}