17 lines
		
	
	
		
			430 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			430 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
|   | #!/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 | ||
|  | 
 | ||
|  | 
 | ||
|  | 
 |