24 lines
		
	
	
		
			502 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			502 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
| rem %1 = L2Serverd_d
 | |
| rem %2 = output exe dir: m:\dev\l2\servers\l2c\_build\L2Serverd_Debug\
 | |
| rem
 | |
| rem ..\..\dist
 | |
| 
 | |
| rem echo 1 = %1
 | |
| rem echo 2 = %2
 | |
| 
 | |
| set out=..\..\out\dist_l2c
 | |
| set bin=..\..\bin
 | |
| 
 | |
| rem Copy EXE
 | |
| copy /y %2\%1.exe %2\%out%
 | |
| 
 | |
| rem Copy PDB
 | |
| copy /y %2\%1.pdb %2\%out%
 | |
| 
 | |
| rem Copy DLLs
 | |
| copy /y %2\%bin%\dbghelp.dll  %2\%out%
 | |
| copy /y %2\%bin%\libeay32.dll %2\%out%
 | |
| copy /y %2\%bin%\ssleay32.dll %2\%out%
 | |
| copy /y %2\%bin%\libmysql.dll %2\%out%
 | |
| rem copy /y %2\%bin%\*.dll %2\%out%
 | 
