summaryrefslogtreecommitdiff
path: root/plugins/NotifyAnything/SendLog/compile64.bat
blob: 4290d114c269da4d0e31868b809c225511f374fe (plain)
1
2
3
4
5
6
7
8
9
10
@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\Release64 2>nul
copy /Y *.exe ..\..\..\%1\Release64 >nul

del *.obj;*.exe >nul
goto :eof