axmol/tools/tolua
samuele3hu 9900ccba4d Add support to clang3.4 because of using the ndk-r10c 2014-12-01 11:15:56 +08:00
..
README.mdown Update README.md in tools/tolua 2014-05-28 09:43:48 +08:00
cocos2dx.ini Decrease the package size of lua_empty_test 2014-11-26 21:54:18 +08:00
cocos2dx_3d.ini skip getMeshArrayByName 2014-10-29 10:38:13 +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 Add cocos2dx_csloader.ini to generate the related lua bindings 2014-11-27 10:22:39 +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 Update lua bindings for Spine and related test case 2014-10-16 20:23:58 +08:00
cocos2dx_studio.ini Remove some useless rename functions in the cocos2dx.ini and cocos2dx_studio.ini 2014-10-20 16:14:24 +08:00
cocos2dx_ui.ini add ui::Editbox lua binding, deprecated cc.EditBox to ccui.EditBox 2014-09-12 17:07:06 +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