summaryrefslogtreecommitdiff
path: root/tools/build_scripts/plugins
diff options
context:
space:
mode:
authorwatcherhd <watcherhd@gmail.com>2017-08-05 18:28:13 +0300
committerwatcherhd <watcherhd@gmail.com>2017-08-05 18:28:13 +0300
commit760c3ae475b4b39b486f72c7adb8c1f1d83b440f (patch)
treee3e08ebf880462db266321b8e1528f11d1b71cdf /tools/build_scripts/plugins
parent6b3e2962bcf7917e0593da3f5c3605e923889fe2 (diff)
build scripts for those who are willing to keep it all going
Diffstat (limited to 'tools/build_scripts/plugins')
-rw-r--r--tools/build_scripts/plugins/ListeningTo/listeningto/foo_mlt.dllbin0 -> 94720 bytes
-rw-r--r--tools/build_scripts/plugins/ListeningTo/listeningto/gen_mlt.dllbin0 -> 41472 bytes
-rw-r--r--tools/build_scripts/plugins/NotifyAnything/SendLog/compile32.bat16
-rw-r--r--tools/build_scripts/plugins/NotifyAnything/SendLog/compile64.bat16
4 files changed, 32 insertions, 0 deletions
diff --git a/tools/build_scripts/plugins/ListeningTo/listeningto/foo_mlt.dll b/tools/build_scripts/plugins/ListeningTo/listeningto/foo_mlt.dll
new file mode 100644
index 0000000000..e874f3e5ba
--- /dev/null
+++ b/tools/build_scripts/plugins/ListeningTo/listeningto/foo_mlt.dll
Binary files differ
diff --git a/tools/build_scripts/plugins/ListeningTo/listeningto/gen_mlt.dll b/tools/build_scripts/plugins/ListeningTo/listeningto/gen_mlt.dll
new file mode 100644
index 0000000000..4f06a40fb2
--- /dev/null
+++ b/tools/build_scripts/plugins/ListeningTo/listeningto/gen_mlt.dll
Binary files differ
diff --git a/tools/build_scripts/plugins/NotifyAnything/SendLog/compile32.bat b/tools/build_scripts/plugins/NotifyAnything/SendLog/compile32.bat
new file mode 100644
index 0000000000..db9e8ff67f
--- /dev/null
+++ b/tools/build_scripts/plugins/NotifyAnything/SendLog/compile32.bat
@@ -0,0 +1,16 @@
+rem @echo off
+if not "%VS100COMNTOOLS%" == "" (
+ call "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat"
+ "%VS100COMNTOOLS%\..\..\vc\bin\cl.exe" /MD /O2 /Os /EHsc /I..\..\..\include SendLog.cpp SLImp.cpp /link ws2_32.lib user32.lib
+ "%VS100COMNTOOLS%\..\..\vc\bin\cl.exe" /MD /O2 /Os /EHsc /I..\..\..\include SendLogWin.cpp SLImp.cpp /link ws2_32.lib user32.lib
+ call :ProcessFiles 10
+)
+
+goto :eof
+
+:ProcessFiles
+mkdir ..\..\..\bin%1\Release 2>nul
+copy /Y *.exe ..\..\..\bin%1\Release >nul
+
+del *.obj;*.exe >nul
+goto :eof
diff --git a/tools/build_scripts/plugins/NotifyAnything/SendLog/compile64.bat b/tools/build_scripts/plugins/NotifyAnything/SendLog/compile64.bat
new file mode 100644
index 0000000000..a217b7d094
--- /dev/null
+++ b/tools/build_scripts/plugins/NotifyAnything/SendLog/compile64.bat
@@ -0,0 +1,16 @@
+rem @echo off
+if not "%VS100COMNTOOLS%" == "" (
+ call "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat"
+ "%VS100COMNTOOLS%\..\..\vc\bin\cl.exe" /MD /O2 /Os /EHsc /I..\..\..\include SendLog.cpp SLImp.cpp /link ws2_32.lib user32.lib
+ "%VS100COMNTOOLS%\..\..\vc\bin\cl.exe" /MD /O2 /Os /EHsc /I..\..\..\include SendLogWin.cpp SLImp.cpp /link ws2_32.lib user32.lib
+ call :ProcessFiles 10
+)
+
+goto :eof
+
+:ProcessFiles
+mkdir ..\..\..\bin%1\Release64 2>nul
+copy /Y *.exe ..\..\..\bin%1\Release64 >nul
+
+del *.obj;*.exe >nul
+goto :eof