1
0

Moved bindings-related to a Bindings subfolder.

Ref.: #407
This commit is contained in:
madmaxoft
2013-12-08 12:17:54 +01:00
parent 13dd1b0c94
commit 044fd237b6
42 changed files with 1259 additions and 1264 deletions

27
src/Bindings/AllToLua.bat Normal file
View File

@@ -0,0 +1,27 @@
:: AllToLua.bat
:: This scripts updates the automatically-generates Lua bindings in Bindings.cpp / Bindings.h
:: If there was a Git conflict, resolve it by resetting to HEAD; we're regenerating the files from scratch anyway
git checkout --ours Bindings.cpp
git add -u Bindings.cpp
git checkout --ours Bindings.h
git add -u Bindings.h
:: Regenerate the files:
"tolua++.exe" -L virtual_method_hooks.lua -o Bindings.cpp -H Bindings.h AllToLua.pkg
if %ALLTOLUA_WAIT%N == N pause