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