2008-02-17 15:20:52 +01:00
|
|
|
@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
|
|
|
|
|
2008-12-25 14:04:19 +01:00
|
|
|
@if "%DevEnvDir%"=="" goto nodevdir
|
|
|
|
|
2018-05-10 22:51:44 +02:00
|
|
|
@rem devenv source\SoundStretch\SoundStretch.sln /upgrade
|
|
|
|
devenv source\SoundStretch\SoundStretch.sln /build "Debug|Win32"
|
|
|
|
devenv source\SoundStretch\SoundStretch.sln /build "Release|Win32"
|
|
|
|
devenv source\SoundStretch\SoundStretch.sln /build "Debug|x64"
|
|
|
|
devenv source\SoundStretch\SoundStretch.sln /build "Release|x64"
|
|
|
|
|
|
|
|
@rem devenv source\SoundTouchDll\SoundTouchDll.sln /upgrade
|
|
|
|
devenv source\SoundTouchDll\SoundTouchDll.sln /build "Debug|Win32"
|
|
|
|
devenv source\SoundTouchDll\SoundTouchDll.sln /build "Release|Win32"
|
|
|
|
devenv source\SoundTouchDll\SoundTouchDll.sln /build "Debug|x64"
|
|
|
|
devenv source\SoundTouchDll\SoundTouchDll.sln /build "Release|x64"
|
2010-12-12 20:17:13 +01:00
|
|
|
|
2008-12-25 14:04:19 +01:00
|
|
|
@goto end
|
|
|
|
|
|
|
|
|
2008-02-17 15:20:52 +01:00
|
|
|
:nodevdir
|
|
|
|
|
|
|
|
@echo off
|
2017-07-30 11:56:40 +02:00
|
|
|
echo ****************************************************************************
|
2008-02-17 15:20:52 +01:00
|
|
|
echo **
|
|
|
|
echo ** ERROR: Visual Studio path not set.
|
|
|
|
echo **
|
2020-02-02 17:58:46 +01:00
|
|
|
echo ** Open "tools"->"Developer Command Line" from Visual Studio IDE, or
|
|
|
|
echo ** run "vcvars32.bat" from Visual Studio installation dir, e.g.
|
|
|
|
echo ** "C:\Program Files (x86)\Microsoft Visual Studio xxx\VC\bin",
|
2012-04-04 21:55:37 +02:00
|
|
|
echo ** then try again.
|
2008-02-17 15:20:52 +01:00
|
|
|
echo **
|
2017-07-30 11:56:40 +02:00
|
|
|
echo ****************************************************************************
|
2008-02-17 15:20:52 +01:00
|
|
|
|
2008-12-25 18:03:13 +01:00
|
|
|
:end
|