Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alexmarsev/soundtouch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroparviai <oparviai@f3a24b6a-cf45-0410-b55a-8c22e2698227>2008-12-25 16:04:19 +0300
committeroparviai <oparviai@f3a24b6a-cf45-0410-b55a-8c22e2698227>2008-12-25 16:04:19 +0300
commitf66a651e52e51a9ed634892b69dd8f8276cbd76a (patch)
treedfb3c7f855aa95bb3bff1556af6454037398d6c3 /make-win.bat
parent88ac3c03b7ed0f8a8ee84168d884fc0bec74c75b (diff)
Edited scripts for Visual Studio 2003 support
Diffstat (limited to 'make-win.bat')
-rw-r--r--make-win.bat23
1 files 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