axmol/tools/tolua
samuele3hu 9934d73548 issue #12046: Add Lua bindings for material systems and related test cases. 2015-05-27 15:37:59 +08:00
..
README.mdown Update README.md in tools/tolua 2014-05-28 09:43:48 +08:00
cocos2dx.ini issue #12046: Add Lua bindings for material systems and related test cases. 2015-05-27 15:37:59 +08:00
cocos2dx_3d.ini Update the Lua binding for Physics3D ,related test cases and the template project 2015-05-15 16:25:07 +08:00
cocos2dx_audioengine.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_cocosbuilder.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_cocosdenshion.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_controller.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_csloader.ini synchronize the related ActionTimeline test cases of Lua refer to the cpp-tests 2015-04-13 16:29:44 +08:00
cocos2dx_experimental.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_experimental_video.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_experimental_webview.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_extension.ini Remove useless configure for bindings-generator of Lua 2015-03-30 15:48:47 +08:00
cocos2dx_physics.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_physics3d.ini Upate cocos2dx_physics3d.ini and bindings-generator submodule 2015-05-18 16:18:04 +08:00
cocos2dx_spine.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_studio.ini Fix the bindings-generator error and add related Action Timeline test case. 2015-04-12 22:20:53 +08:00
cocos2dx_ui.ini Remove useless configure for bindings-generator of Lua 2015-03-30 15:48:47 +08:00
genbindings.py Add Lua bindings for Physics3D and related test cases 2015-05-15 09:28:03 +08:00

README.mdown

How to Use bindings-generator

On Windows:

On MAC:

  • The OSX 10.9 has a built-in python2.7 and if your os don't have python2.7 then use Homebrew to install the python and use pip install the python dependencies.
	brew install python
  • Install python dependices by pip.
    sudo easy_install pip
    sudo pip install PyYAML
	sudo pip install Cheetah
	export NDK_ROOT=/path/to/android-ndk-r9b
    ./genbindings.py

On Ubuntu Linux 12.04 64bit

  • Install python
	sudo apt-get install python2.7
  • Install python dependices by pip.
	sudo apt-get install python-pip
	sudo pip install PyYAML
	sudo pip install Cheetah
	export NDK_ROOT=/path/to/android-ndk-r9b
    ./genbindings.py