axmol/tools/tolua
yangxiao 2391558c96 add physics3d support 2015-05-08 15:49:33 +08:00
..
README.mdown Update README.md in tools/tolua 2014-05-28 09:43:48 +08:00
cocos2dx.ini Update cocos2dx_3d.ini and cocos2dx.ini for generating Lua bindings code to support CC_CONSTRUCTOR_ACCESS equal to public 2015-04-30 17:18:12 +08:00
cocos2dx_3d.ini add physics3d support 2015-05-08 15:49:33 +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_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 WebView and related test case 2015-04-17 14:08:47 +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