diff options
author | George Hazan <ghazan@miranda.im> | 2017-09-28 22:08:07 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-09-28 22:08:07 +0300 |
commit | b640e652b54030de26a22f57494fa71561dd4e99 (patch) | |
tree | 1df1600ca540cff03a6d1393255db3481f0cc6dc /plugins/NotifyAnything | |
parent | 05b9d27f5573ba03c27ad1c94d3c0957ae177a00 (diff) |
needed batch files
Diffstat (limited to 'plugins/NotifyAnything')
-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 |