diff options
author | George Hazan <ghazan@miranda.im> | 2017-09-28 21:48:36 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-09-28 21:48:36 +0300 |
commit | 05b9d27f5573ba03c27ad1c94d3c0957ae177a00 (patch) | |
tree | 4093fd906178e137c9c3ef517aafd6386aca64d3 /plugins/NotifyAnything/SendLog | |
parent | 06b43e58cb6fa1fdaab6a586dd762d94c9737ea0 (diff) |
compilation fix
Diffstat (limited to 'plugins/NotifyAnything/SendLog')
-rw-r--r-- | plugins/NotifyAnything/SendLog/compile.bat | 34 |
1 files changed, 11 insertions, 23 deletions
diff --git a/plugins/NotifyAnything/SendLog/compile.bat b/plugins/NotifyAnything/SendLog/compile.bat index f5dc4d40f0..b49891dc8f 100644 --- a/plugins/NotifyAnything/SendLog/compile.bat +++ b/plugins/NotifyAnything/SendLog/compile.bat @@ -1,31 +1,19 @@ -rem @echo off
-if not "%VS100COMNTOOLS%" == "" (
- call "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat"
- "%VS100COMNTOOLS%\..\..\vc\bin\cl.exe" /MD /O2 /Os /EHsc SendLog.cpp SLImp.cpp /link ws2_32.lib user32.lib
- "%VS100COMNTOOLS%\..\..\vc\bin\cl.exe" /MD /O2 /Os /EHsc SendLogWin.cpp SLImp.cpp /link ws2_32.lib user32.lib
- call :ProcessFiles 10
-)
+@echo off
-if not "%VS110COMNTOOLS%" == "" (
- call "%VS110COMNTOOLS%\..\..\vc\vcvarsall.bat"
- "%VS110COMNTOOLS%\..\..\vc\bin\cl.exe" /MD /O2 /Os /EHsc SendLog.cpp SLImp.cpp /link ws2_32.lib user32.lib
- "%VS110COMNTOOLS%\..\..\vc\bin\cl.exe" /MD /O2 /Os /EHsc SendLogWin.cpp SLImp.cpp /link ws2_32.lib user32.lib
- call :ProcessFiles 11
-)
-goto :eof
+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
-:ProcessFiles
-mkdir ..\..\..\bin%1\Debug 2>nul
-copy /Y *.exe ..\..\..\bin%1\Debug >nul
+mkdir ..\..\..\%1\Debug 2>nul
+copy /Y *.exe ..\..\..\%1\Debug >nul
-mkdir ..\..\..\bin%1\Debug64 2>nul
-copy /Y *.exe ..\..\..\bin%1\Debug64 >nul
+mkdir ..\..\..\%1\Debug64 2>nul
+copy /Y *.exe ..\..\..\%1\Debug64 >nul
-mkdir ..\..\..\bin%1\Release 2>nul
-copy /Y *.exe ..\..\..\bin%1\Release >nul
+mkdir ..\..\..\%1\Release 2>nul
+copy /Y *.exe ..\..\..\%1\Release >nul
-mkdir ..\..\..\bin%1\Release64 2>nul
-copy /Y *.exe ..\..\..\bin%1\Release64 >nul
+mkdir ..\..\..\%1\Release64 2>nul
+copy /Y *.exe ..\..\..\%1\Release64 >nul
del *.obj;*.exe >nul
goto :eof
|