axmol/tools/tojs
pandamicro 3c2e66e425 Merge branch 'v3.7.1' of https://github.com/cocos2d/cocos2d-x into v3
# Conflicts:
#	.travis.yml
#	build/cocos2d_js_tests.xcodeproj/project.pbxproj
#	build/cocos2d_tests.xcodeproj/project.pbxproj
#	cocos/2d/CCFont.h
#	cocos/2d/CCFontAtlas.cpp
#	cocos/2d/CCFontAtlas.h
#	cocos/2d/CCFontFreeType.cpp
#	cocos/2d/CCFontFreeType.h
#	cocos/2d/libcocos2d_8_1/libcocos2d_8_1/libcocos2d_8_1.Windows/libcocos2d_8_1.Windows.vcxproj
#	cocos/2d/libcocos2d_8_1/libcocos2d_8_1/libcocos2d_8_1.WindowsPhone/libcocos2d_8_1.WindowsPhone.vcxproj
#	cocos/2d/libcocos2d_win10/libcocos2d.vcxproj
#	cocos/cocos2d.cpp
#	cocos/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxHelper.cpp
#	cocos/scripting/js-bindings/auto/jsb_cocos2dx_studio_auto.cpp
#	templates/cpp-template-default/proj.ios_mac/HelloCpp.xcodeproj/project.pbxproj
#	templates/js-template-default/frameworks/runtime-src/proj.ios_mac/HelloJavascript.xcodeproj/project.pbxproj
#	templates/js-template-runtime/frameworks/runtime-src/proj.ios_mac/HelloJavascript.xcodeproj/project.pbxproj
#	templates/lua-template-default/frameworks/runtime-src/proj.ios_mac/HelloLua.xcodeproj/project.pbxproj
#	tests/cpp-tests/Classes/LabelTest/LabelTestNew.cpp
#	tests/cpp-tests/Classes/LabelTest/LabelTestNew.h
#	tools/bindings-generator
#	tools/simulator/frameworks/runtime-src/proj.ios_mac/simulator.xcodeproj/project.pbxproj
#	tools/travis-scripts/generate-bindings.sh
#	tools/travis-scripts/generate-cocosfiles.sh
#	tools/travis-scripts/travis_mac.yml
2015-08-02 22:28:27 +08:00
..
README.mdown Add js-bindings generator tools. 2015-04-14 11:01:07 +08:00
cocos2dx.ini Merge branch 'v3.7-release' of https://github.com/cocos2d/cocos2d-x into v3 2015-07-21 11:39:24 +08:00
cocos2dx_3d.ini Merge pull request #12899 from super626/v3 2015-08-01 18:24:05 +08:00
cocos2dx_3d_ext.ini Add js-bindings generator tools. 2015-04-14 11:01:07 +08:00
cocos2dx_audioengine.ini Fix win32 project and add winrt support 2015-07-30 23:39:52 +08:00
cocos2dx_builder.ini Update the ini files for js binding 2015-05-07 13:00:57 +08:00
cocos2dx_experimental_video.ini add videoplayer config ini and fix the url bug 2015-05-29 11:10:39 +08:00
cocos2dx_experimental_webView.ini add webiew jsb code 2015-05-12 10:30:51 +08:00
cocos2dx_extension.ini Add js-bindings generator tools. 2015-04-14 11:01:07 +08:00
cocos2dx_navmesh.ini Improve auto bindings for navmesh 2015-06-18 22:48:47 +08:00
cocos2dx_physics3d.ini add Physics3DShape support constructor 2015-07-31 18:17:35 +08:00
cocos2dx_spine.ini Update the ini files for js binding 2015-05-07 13:00:57 +08:00
cocos2dx_studio.ini Fix JS binding issues for skeleton animation 2015-07-24 20:16:01 +08:00
cocos2dx_ui.ini Refine ui bindings and JS constants 2015-07-29 13:06:49 +08:00
genbindings.py Add audio engine bindings in JSB 2015-07-23 14:43:01 +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