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

go.bat - github.com/alexmarsev/soxr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/go.bat
blob: c73d4c294a54bac143a89b7c0181a2c81b16f37d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@echo off
rem SoX Resampler Library      Copyright (c) 2007-13 robs@users.sourceforge.net
rem Licence for this file: LGPL v2.1                  See LICENCE for details.

set build=%1
if x%build% == x set build=Release

rem Prevent interference from any in-tree build
del/f CMakeCache.txt

mkdir %build%
cd %build%

cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=%build% -Wno-dev ..
if errorlevel 1 goto end

nmake
if errorlevel 1 goto end

nmake test
if errorlevel 1 goto error
goto end

:error
echo FAILURE details in Testing\Temporary\LastTest.log

:end