mirror of
https://github.com/RPCS3/soundtouch.git
synced 2024-11-08 12:02:28 +01:00
34 lines
942 B
Batchfile
34 lines
942 B
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 File Created: 09/Sep/2003
|
|
@REM
|
|
@REM $Id$
|
|
|
|
@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 |