blob: b49891dc8ff4c37bd665e4e28f1de54d70c5100d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
@echo off
cl.exe /MD /O2 /Os /EHsc SendLog.cpp SLImp.cpp /link ws2_32.lib user32.lib
cl.exe /MD /O2 /Os /EHsc SendLogWin.cpp SLImp.cpp /link ws2_32.lib user32.lib
mkdir ..\..\..\%1\Debug 2>nul
copy /Y *.exe ..\..\..\%1\Debug >nul
mkdir ..\..\..\%1\Debug64 2>nul
copy /Y *.exe ..\..\..\%1\Debug64 >nul
mkdir ..\..\..\%1\Release 2>nul
copy /Y *.exe ..\..\..\%1\Release >nul
mkdir ..\..\..\%1\Release64 2>nul
copy /Y *.exe ..\..\..\%1\Release64 >nul
del *.obj;*.exe >nul
goto :eof
|