Edited scripts for Visual Studio 2003 support

This commit is contained in:
oparviai 2008-12-25 13:04:19 +00:00
parent c7bbaa4dbe
commit c43da9c421

View File

@ -9,16 +9,35 @@
@REM
@REM $Id$
@if "%MsDevDir%"=="" goto nodevdir
@rem ****************************
@rem try first for VS6.0 support
@if "%MsDevDir%"=="" goto nomsdevdir
md bin
md lib
msdev source\SoundTouch\SoundTouch.dsw /MAKE ALL
msdev source\example\bpm\bpm.dsw /MAKE ALL
msdev source\example\SoundStretch\SoundStretch.dsw /MAKE "SoundStretch - Win32 Release"
goto end
:nomsdevdir
@rem **********************************
@rem try with devenv for VS2003 support
@if "%DevEnvDir%"=="" goto nodevdir
md bin
md lib
devenv source\SoundTouch\SoundTouch.vcproj /build debug
devenv source\SoundTouch\SoundTouch.vcproj /build release
devenv source\example\SoundStretch\SoundStretch.vcproj /build debug
devenv source\example\SoundStretch\SoundStretch.vcproj /build release
@goto end
:nodevdir
@echo off