axmol/tools/tojs
pandamicro f0be4f3069 Merge part of Cocos2d-x-lite (#16380)
* Update js auto binding settings with new ndk version

* Remove unnecessary property from Ref

* Merge part of Cocos2d-x-lite :
1. Improve network bindings
2. Use nullptr instead of NULL
3. Remove usage of some deprecated APIs
4. Add some defensive code and cleanup

* Fix spine track entry circle referencing issue

* cocos2d/cocos2d-x#16327: Fix global object leak issue in JSB

* Improve ScriptingCore::evalString, old implementation have been deprecated in Spidermonkey

* Update JS versions

* Add docs for web v3.13

* Improve ScriptingCore

* Manual merge cocos2d/cocos2d-x#16383 by DavidDeSimone

* Fix auto bindings configurations

* Update web ref
2016-08-19 16:28:47 +08:00
..
README.mdown Refine lua/js binding tool 2015-09-19 00:08:15 +08:00
cocos2dx.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_3d.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_3d_ext.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_audioengine.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_builder.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_experimental_video.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_experimental_webView.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_extension.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_navmesh.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_physics3d.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_spine.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_studio.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_ui.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
genbindings.py Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00

README.mdown

How to Use bindings-generator

On Windows:

On MAC:

  • The OSX 10.10 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
  • Download NDK 64bit r10c or later from Android Ndk
  • Run
	export NDK_ROOT=/path/to/android-ndk-r10c
    ./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
  • Download NDK 64bit r10c or later from Android Ndk
  • Go to "cocos2d-x/tools/tojs", Run
	export NDK_ROOT=/path/to/android-ndk-r10c
    ./genbindings.py