Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/cpp-template-default/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

cmake_minimum_required(VERSION 3.1)

set(APP_NAME TemplateCpp)
set(APP_NAME HelloCpp)

project(${APP_NAME})

Expand Down
2 changes: 1 addition & 1 deletion templates/js-template-default/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

cmake_minimum_required(VERSION 3.1)

set(APP_NAME TemplateJS)
set(APP_NAME HelloJavascript)

project(${APP_NAME})

Expand Down
3 changes: 2 additions & 1 deletion templates/js-template-default/cocos-project-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
"frameworks/runtime-src/proj.ios_mac/ios/main.m",
"frameworks/runtime-src/proj.ios_mac/ios/Prefix.pch",
"frameworks/runtime-src/proj.ios_mac/PROJECT_NAME.xcodeproj/project.pbxproj",
"frameworks/runtime-src/Classes/AppDelegate.cpp"
"frameworks/runtime-src/Classes/AppDelegate.cpp",
"CMakeLists.txt"
]
},
"project_replace_package_name":{
Expand Down
2 changes: 1 addition & 1 deletion templates/lua-template-default/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# ****************************************************************************/
cmake_minimum_required(VERSION 3.1)

set(APP_NAME TemplateLua)
set(APP_NAME HelloLua)

project(${APP_NAME})

Expand Down
4 changes: 3 additions & 1 deletion templates/lua-template-default/cocos-project-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@
"frameworks/runtime-src/proj.ios_mac/ios/main.m",
"frameworks/runtime-src/proj.ios_mac/ios/Prefix.pch",
"frameworks/runtime-src/proj.ios_mac/mac/SimulatorApp.mm",
"frameworks/runtime-src/proj.ios_mac/PROJECT_NAME.xcodeproj/project.pbxproj" ]
"frameworks/runtime-src/proj.ios_mac/PROJECT_NAME.xcodeproj/project.pbxproj",
"CMakeLists.txt"
]
},
"project_replace_package_name": {
"src_package_name": "org.cocos2dx.hellolua",
Expand Down