17 lines
		
	
	
		
			430 B
		
	
	
	
		
			Tcsh
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			430 B
		
	
	
	
		
			Tcsh
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/csh -f
 | |
| 
 | |
| # Project can be build from command line using MSBuild.exe, available
 | |
| # with the .NET framework.
 | |
| 
 | |
| set FRAMEWORK = /cygdrive/c/Windows/Microsoft.NET/Framework/v2.0.50727/
 | |
| #set FRAMEWORK = /cygdrive/c/Windows/Microsoft.NET/Framework/v3.5
 | |
| 
 | |
| # Note: can choose target using /t:Rebuild, /t:Clean, etc.
 | |
| 
 | |
| $FRAMEWORK/MSBuild.exe srilm.sln /p:Configuration=Release
 | |
| 
 | |
| $FRAMEWORK/MSBuild.exe srilm.sln /p:Configuration=Debug
 | |
| 
 | |
| 
 | |
| 
 | 
