1
0
forked from 0ad/0ad
0ad/build/workspaces/update-workspaces.bat
Ykkrosh ec3452679c Restructuring
This was SVN commit r1453.
2004-12-05 17:59:29 +00:00

26 lines
483 B
Batchfile
Executable File

@ECHO OFF
REM Create Visual Studio Workspaces on Windows
mkdir vc6
mkdir vc7
mkdir vc2003
REM Change to the lua project name, this must correspond to the base file name
REM of the created project files
SET PROJECT=pyrogenesis
CD premake
premake --target vs6
MOVE %PROJECT%.dsw ..\vc6
MOVE %PROJECT%.dsp ..\vc6
premake --target vs7
move %PROJECT%.sln ..\vc7
move %PROJECT%.vcproj ..\vc7
premake --target vs2003
move %PROJECT%.sln ..\vc2003
move %PROJECT%.vcproj ..\vc2003
cd ..