diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/NotifyAnything/SendLog/compile32.bat | 10 | ||||
-rw-r--r-- | plugins/NotifyAnything/SendLog/compile64.bat | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/plugins/NotifyAnything/SendLog/compile32.bat b/plugins/NotifyAnything/SendLog/compile32.bat new file mode 100644 index 0000000000..c83c60db71 --- /dev/null +++ b/plugins/NotifyAnything/SendLog/compile32.bat @@ -0,0 +1,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\Release 2>nul +copy /Y *.exe ..\..\..\%1\Release >nul + +del *.obj;*.exe >nul +goto :eof diff --git a/plugins/NotifyAnything/SendLog/compile64.bat b/plugins/NotifyAnything/SendLog/compile64.bat new file mode 100644 index 0000000000..4290d114c2 --- /dev/null +++ b/plugins/NotifyAnything/SendLog/compile64.bat @@ -0,0 +1,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 |