1
0
forked from 0ad/0ad
0ad/build/workspaces/update-workspaces.bat
Ykkrosh f2b662d12d Build: generate Atlas project files (with "update-workspaces --atlas") (for VS2003 only).
Premake: allow slight separation of files' locations on disk vs in the
project tree.
Atlas: require fewer include directories.

This was SVN commit r2956.
2005-10-17 01:11:12 +00:00

34 lines
777 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
REM Minor hack to make sure the relative paths are correct:
mkdir tmp
copy premake.lua tmp
cd tmp
REM Just copy *.sln/etc indiscriminately, because it might include both pyrogenesis.sln and sced.sln (or might not)
..\premake --target vs6 %*
move *.dsw ..\..\workspaces\vc6
move *.dsp ..\..\workspaces\vc6
..\premake --target vs7 %*
move *.sln ..\..\workspaces\vc7
move *.vcproj ..\..\workspaces\vc7
..\premake --target vs2003 %*
move *.sln ..\..\workspaces\vc2003
move *.vcproj ..\..\workspaces\vc2003
cd ..\..\workspaces