mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-11 09:03:36 +02:00
Update soundtouch to 1.7.1.
This commit is contained in:
@@ -1,34 +1,61 @@
|
||||
@REM
|
||||
@REM SoundTouch & SoundStretch Build script for Win32 platform
|
||||
@REM
|
||||
@REM You'll need Visual C++ 6.0 installed to compile - also execute the
|
||||
@REM "vcvars32.bat" in VC install directotry before running this one.
|
||||
@REM
|
||||
@REM Copyright (c) Olli Parviainen
|
||||
@REM File Created: 09/Sep/2003
|
||||
@REM
|
||||
@REM $Id: make-win.bat,v 1.3 2006-09-18 07:31:36 richardash1981 Exp $
|
||||
|
||||
@if "%MsDevDir%"=="" goto nodevdir
|
||||
|
||||
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
|
||||
|
||||
:nodevdir
|
||||
|
||||
@echo off
|
||||
echo *********************************************************************
|
||||
echo **
|
||||
echo ** ERROR: Visual Studio path not set.
|
||||
echo **
|
||||
echo ** Run "vcvars32.bat" from Visual Studio installation directory, e.g.
|
||||
echo ** "\Program Files\Microsoft Visual Studio\VC98\Bin", then try again.
|
||||
echo **
|
||||
echo *********************************************************************
|
||||
|
||||
:end
|
||||
@REM
|
||||
@REM SoundTouch & SoundStretch Build script for Win32 platform
|
||||
@REM
|
||||
@REM You'll need Visual C++ 6.0 installed to compile - also execute the
|
||||
@REM "vcvars32.bat" in VC install directotry before running this one.
|
||||
@REM
|
||||
@REM Copyright (c) Olli Parviainen
|
||||
@REM File Created: 09/Sep/2003
|
||||
@REM
|
||||
@REM $Id: make-win.bat 142 2012-04-04 19:55:37Z oparviai $
|
||||
|
||||
@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\SoundStretch\SoundStretch.dsw /MAKE ALL
|
||||
|
||||
goto end
|
||||
|
||||
:nomsdevdir
|
||||
|
||||
@rem **********************************
|
||||
@rem try with devenv for VS2003 support
|
||||
|
||||
@if "%DevEnvDir%"=="" goto nodevdir
|
||||
|
||||
md bin
|
||||
md lib
|
||||
devenv source\SoundTouch\SoundTouch.vcproj /upgrade
|
||||
devenv source\SoundTouch\SoundTouch.vcproj /build debug
|
||||
devenv source\SoundTouch\SoundTouch.vcproj /build release
|
||||
|
||||
devenv source\SoundStretch\SoundStretch.vcproj /upgrade
|
||||
devenv source\SoundStretch\SoundStretch.vcproj /build debug
|
||||
devenv source\SoundStretch\SoundStretch.vcproj /build release
|
||||
|
||||
devenv source\SoundTouchDll\SoundTouchDll.vcproj /upgrade
|
||||
devenv source\SoundTouchDll\SoundTouchDll.vcproj /build debug
|
||||
devenv source\SoundTouchDll\SoundTouchDll.vcproj /build release
|
||||
|
||||
@goto end
|
||||
|
||||
|
||||
:nodevdir
|
||||
|
||||
@echo off
|
||||
echo *********************************************************************
|
||||
echo **
|
||||
echo ** ERROR: Visual Studio path not set.
|
||||
echo **
|
||||
echo ** Run "vsvars32.bat" or "vcvars32.bat" from Visual Studio installation
|
||||
echo ** directory, e.g. "\Program Files\Microsoft Visual Studio\VC98\Bin",
|
||||
echo ** then try again.
|
||||
echo **
|
||||
echo *********************************************************************
|
||||
|
||||
:end
|
||||
|
Reference in New Issue
Block a user