From c43da9c421fabc03cb5f5814d5d975edd2d4a3f4 Mon Sep 17 00:00:00 2001 From: oparviai Date: Thu, 25 Dec 2008 13:04:19 +0000 Subject: [PATCH] Edited scripts for Visual Studio 2003 support --- make-win.bat | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/make-win.bat b/make-win.bat index fb53338..c2ec1da 100644 --- a/make-win.bat +++ b/make-win.bat @@ -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