From b640e652b54030de26a22f57494fa71561dd4e99 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 28 Sep 2017 22:08:07 +0300 Subject: needed batch files --- plugins/NotifyAnything/SendLog/compile32.bat | 10 ++++++++++ plugins/NotifyAnything/SendLog/compile64.bat | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 plugins/NotifyAnything/SendLog/compile32.bat create mode 100644 plugins/NotifyAnything/SendLog/compile64.bat (limited to 'plugins') 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 -- cgit v1.2.3