svn path=/trunk/tao/; revision=66107
This commit is contained in:
David Hudson 2006-09-29 20:27:28 +00:00
Родитель 4cd8cab6cb
Коммит 0c547253e5
2 изменённых файлов: 32 добавлений и 0 удалений

16
cleanbuild.bat Normal file
Просмотреть файл

@ -0,0 +1,16 @@
@REM Builds the Tao Framework using both Prebuild and NAnt
@ECHO OFF
@REM Create NAnt Project Files
other\Prebuild\Prebuild.exe /target nant /file prebuild.xml
rmdir /s /q dist
@REM Build Solutions Using NAnt
NAnt.exe -t:net-2.0 -buildfile:src/Tao.DevIl/Tao.DevIl.build clean
NAnt.exe -t:net-2.0 -buildfile:src/Tao.Ode/Tao.Ode.build clean
NAnt.exe -t:net-2.0 -buildfile:src/Tao.OpenGl/Tao.OpenGl.build clean
NAnt.exe -t:net-2.0 -buildfile:src/Tao.PhysFs/Tao.PhysFs.build clean
NAnt.exe -t:net-2.0 -buildfile:src/Tao.Sdl/Tao.Sdl.build clean
NAnt.exe -t:net-2.0 -buildfile:src/Tao.Lua/Tao.Lua.build clean

16
cleanbuild.sh Normal file
Просмотреть файл

@ -0,0 +1,16 @@
#!/bin/sh
# Builds the Tao Framework using both Prebuild and NAnt
# Create NAnt Project Files
other/Prebuild/prebuild /target nant /file prebuild.xml
rm -rf dist
# Build Solutions Using NAnt
nant -t:mono-2.0 -buildfile:src/Tao.DevIl/Tao.DevIl.build clean
nant -t:mono-2.0 -buildfile:src/Tao.GlGenerator/Tao.GlGenerator.build clean
nant -t:mono-2.0 -buildfile:src/Tao.Ode/Tao.Ode.build clean
nant -t:mono-2.0 -buildfile:src/Tao.OpenGl/Tao.OpenGl.build clean
nant -t:mono-2.0 -buildfile:src/Tao.PhysFs/Tao.PhysFs.build clean
nant -t:mono-2.0 -buildfile:src/Tao.Sdl/Tao.Sdl.build clean
nant -t:mono-2.0 -buildfile:src/Tao.Lua/Tao.Lua.build clean