mirror of
				https://github.com/cookiengineer/audacity
				synced 2025-10-31 06:03:49 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			555 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			555 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
| @echo off
 | |
| rem SoX Resampler Library      Copyright (c) 2007-16 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
 |