mirror of https://github.com/axmolengine/axmol.git
130 lines
4.4 KiB
JSON
130 lines
4.4 KiB
JSON
{
|
|
"do_default": {
|
|
"exclude_from_template": [
|
|
"frameworks/runtime-src",
|
|
"runtime/config.json",
|
|
"runtime/version.json"
|
|
],
|
|
"project_replace_project_name": {
|
|
"src_project_name": "HelloLua",
|
|
"files": [
|
|
"config.json",
|
|
".project"
|
|
]
|
|
},
|
|
"append_dir": [
|
|
{
|
|
"from": "extensions/scripting/lua-bindings/script",
|
|
"to": "src/cocos",
|
|
"exclude": []
|
|
},
|
|
{
|
|
"from": "templates/lua-template-default/src",
|
|
"to": "src",
|
|
"exclude": []
|
|
},
|
|
{
|
|
"from": "templates/lua-template-default/res",
|
|
"to": "res",
|
|
"exclude": []
|
|
}
|
|
]
|
|
},
|
|
"do_add_native_support": {
|
|
"append_from_template": {
|
|
"from": "frameworks/runtime-src",
|
|
"to": "frameworks/runtime-src",
|
|
"exclude": [
|
|
"proj.android/bin",
|
|
"proj.android/assets",
|
|
"proj.android/libs",
|
|
"proj.win32/Debug.win32",
|
|
"proj.win32/Release.win32",
|
|
"proj.win32/HelloLua.sdf"
|
|
]
|
|
},
|
|
"append_dir": [
|
|
{
|
|
"from": "extensions/scripting/lua-bindings/manual/lua_module_register.h",
|
|
"to": "frameworks/runtime-src/Classes/"
|
|
}
|
|
],
|
|
"project_rename": {
|
|
"src_project_name": "HelloLua",
|
|
"files": [
|
|
]
|
|
},
|
|
"project_replace_project_name": {
|
|
"src_project_name": "HelloLua",
|
|
"files": [
|
|
"config.json",
|
|
".project",
|
|
"frameworks/runtime-src/proj.win32/main.cpp",
|
|
"frameworks/runtime-src/proj.android/settings.gradle",
|
|
"frameworks/runtime-src/proj.android/app/res/values/strings.xml",
|
|
"frameworks/runtime-src/proj.ios_mac/ios/main.m",
|
|
"frameworks/runtime-src/proj.ios_mac/ios/Prefix.pch",
|
|
"CMakeLists.txt"
|
|
]
|
|
},
|
|
"project_replace_package_name": {
|
|
"src_package_name": "org.cocos2dx.hellolua",
|
|
"files": [
|
|
"frameworks/runtime-src/proj.android/app/build.gradle",
|
|
"frameworks/runtime-src/proj.android/app/AndroidManifest.xml" ]
|
|
},
|
|
"project_replace_so_name": {
|
|
"src_so_name": "HelloLua",
|
|
"files": [
|
|
"frameworks/runtime-src/proj.android/app/AndroidManifest.xml"
|
|
]
|
|
},
|
|
"project_replace_mac_bundleid": {
|
|
"src_bundle_id": "org.cocos2dx.hellolua",
|
|
"files": [
|
|
"frameworks/runtime-src/proj.ios_mac/mac/Info.plist"
|
|
]
|
|
},
|
|
"project_replace_ios_bundleid": {
|
|
"src_bundle_id": "org.cocos2dx.hellolua",
|
|
"files": [
|
|
"frameworks/runtime-src/proj.ios_mac/ios/Info.plist"
|
|
]
|
|
}
|
|
},
|
|
"change_orientation": {
|
|
"modify_files": [
|
|
{
|
|
"file_path": "config.json",
|
|
"pattern": "\\\"isLandscape\\\"\\s*:.*,",
|
|
"replace_string": "\"isLandscape\": false,"
|
|
},
|
|
{
|
|
"file_path": "src/config.lua",
|
|
"pattern": "width\\s*=.*,",
|
|
"replace_string": "width = 640,"
|
|
},
|
|
{
|
|
"file_path": "src/config.lua",
|
|
"pattern": "height\\s*=.*,",
|
|
"replace_string": "height = 960,"
|
|
},
|
|
{
|
|
"file_path": "frameworks/runtime-src/proj.ios_mac/ios/Info.plist",
|
|
"pattern": "UIInterfaceOrientationLandscapeRight",
|
|
"replace_string": "UIInterfaceOrientationPortrait"
|
|
},
|
|
{
|
|
"file_path": "frameworks/runtime-src/proj.ios_mac/ios/Info.plist",
|
|
"pattern": "UIInterfaceOrientationLandscapeLeft",
|
|
"replace_string": "UIInterfaceOrientationPortraitUpsideDown"
|
|
},
|
|
{
|
|
"file_path": "frameworks/runtime-src/proj.android/app/AndroidManifest.xml",
|
|
"pattern": "android:screenOrientation=\\\".*\\\"",
|
|
"replace_string": "android:screenOrientation=\"portrait\""
|
|
}
|
|
]
|
|
}
|
|
}
|