mirror of
https://github.com/RPCS3/soundtouch.git
synced 2024-11-08 12:02:28 +01:00
a046b6971d
Signed-off-by: Olli Parviainen <oparviai at iki.fi>
42 lines
1.4 KiB
Batchfile
42 lines
1.4 KiB
Batchfile
@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
|
|
|
|
@if "%DevEnvDir%"=="" goto nodevdir
|
|
|
|
@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"
|
|
|
|
@goto end
|
|
|
|
|
|
:nodevdir
|
|
|
|
@echo off
|
|
echo ****************************************************************************
|
|
echo **
|
|
echo ** ERROR: Visual Studio path not set.
|
|
echo **
|
|
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",
|
|
echo ** then try again.
|
|
echo **
|
|
echo ****************************************************************************
|
|
|
|
:end
|