axmol/tools/tolua
minggo 825f90564c Merge pull request #9992 from samuele3hu/v3_4_issue9986
issue #9986:Add lua bindings for Component and related test cases
2015-01-14 17:05:51 +08:00
..
README.mdown Update README.md in tools/tolua 2014-05-28 09:43:48 +08:00
cocos2dx.ini issue #9820:Inconsistent :setBlendFunc(...) function binding for Sprite and LabelBMFont classes 2015-01-14 13:51:09 +08:00
cocos2dx_3d.ini issue #9820:Inconsistent :setBlendFunc(...) function binding for Sprite and LabelBMFont classes 2015-01-14 13:51:09 +08:00
cocos2dx_audioengine.ini [LUA]Add New AudioEngine on window 2014-10-17 17:53:33 +08:00
cocos2dx_cocosbuilder.ini Update lua bindings ini config files 2014-09-10 14:18:21 +08:00
cocos2dx_cocosdenshion.ini Update lua bindings ini config files 2014-09-10 14:18:21 +08:00
cocos2dx_controller.ini Update lua bindings ini config files 2014-09-10 14:18:21 +08:00
cocos2dx_csloader.ini Merge branch 'v3' of https://github.com/2youyouo2/cocos2d-x into v3 2014-12-03 16:00:32 +08:00
cocos2dx_experimental.ini Update lua bindings ini config files 2014-09-10 14:18:21 +08:00
cocos2dx_experimental_video.ini Update lua bindings ini config files 2014-09-10 14:18:21 +08:00
cocos2dx_extension.ini Update the related AssetsManagerEx files and related project configure 2014-10-16 10:28:52 +08:00
cocos2dx_physics.ini Update lua bindings ini config files 2014-09-10 14:18:21 +08:00
cocos2dx_spine.ini issue #9820:Inconsistent :setBlendFunc(...) function binding for Sprite and LabelBMFont classes 2015-01-14 13:51:09 +08:00
cocos2dx_studio.ini issue #9820:Inconsistent :setBlendFunc(...) function binding for Sprite and LabelBMFont classes 2015-01-14 13:51:09 +08:00
cocos2dx_ui.ini Merge pull request #9992 from samuele3hu/v3_4_issue9986 2015-01-14 17:05:51 +08:00
genbindings.py Add support to clang3.4 because of using the ndk-r10c 2014-12-01 11:15:56 +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