2019-11-23 20:27:39 +08:00
|
|
|
cmake_minimum_required(VERSION 3.6)
|
|
|
|
|
|
|
|
set(APP_NAME lua-tests)
|
|
|
|
|
|
|
|
project(${APP_NAME})
|
|
|
|
|
|
|
|
if(NOT DEFINED BUILD_ENGINE_DONE)
|
2020-10-22 16:53:28 +08:00
|
|
|
set(cocos_re_root "$ENV{COCOS_RE_ROOT}")
|
|
|
|
if(cocos_re_root STREQUAL "")
|
|
|
|
set(cocos_re_root "$ENV{COCOS2DX_ROOT}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT (cocos_re_root STREQUAL ""))
|
|
|
|
message(STATUS "Using system env var COCOS_RE_ROOT=${cocos_re_root}")
|
2020-10-18 01:01:36 +08:00
|
|
|
set(COCOS2DX_ROOT_PATH "$ENV{COCOS2DX_ROOT}")
|
2020-10-19 23:21:40 +08:00
|
|
|
string(REPLACE "\\" "/" COCOS2DX_ROOT_PATH ${COCOS2DX_ROOT_PATH})
|
2020-10-18 01:05:36 +08:00
|
|
|
else()
|
2020-10-18 01:01:36 +08:00
|
|
|
set(COCOS2DX_ROOT_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../..)
|
|
|
|
endif()
|
2019-11-23 20:27:39 +08:00
|
|
|
set(CMAKE_MODULE_PATH ${COCOS2DX_ROOT_PATH}/cmake/Modules/)
|
|
|
|
|
|
|
|
include(CocosBuildSet)
|
|
|
|
set(BUILD_LUA_LIBS ON)
|
|
|
|
add_subdirectory(${COCOS2DX_ROOT_PATH}/cocos ${ENGINE_BINARY_PATH}/cocos/core)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(GAME_HEADER
|
|
|
|
Classes/AppDelegate.h
|
|
|
|
Classes/lua_test_bindings.h
|
|
|
|
Classes/lua_assetsmanager_test_sample.h
|
|
|
|
)
|
|
|
|
set(GAME_SOURCE
|
|
|
|
Classes/AppDelegate.cpp
|
|
|
|
Classes/lua_assetsmanager_test_sample.cpp
|
|
|
|
Classes/lua_test_bindings.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(res_res_folders
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/../res"
|
|
|
|
"${COCOS2DX_ROOT_PATH}/tests/cpp-tests/Resources"
|
|
|
|
)
|
|
|
|
set(res_src_folders
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/../src"
|
|
|
|
)
|
|
|
|
set(res_script_folders
|
2020-10-19 18:33:10 +08:00
|
|
|
"${COCOS2DX_ROOT_PATH}/extensions/scripting/lua-bindings/script"
|
2019-11-23 20:27:39 +08:00
|
|
|
)
|
|
|
|
if(APPLE OR VS)
|
|
|
|
cocos_mark_multi_resources(res_res RES_TO "Resources/res" FOLDERS ${res_res_folders})
|
|
|
|
cocos_mark_multi_resources(res_src RES_TO "Resources/src" FOLDERS ${res_src_folders})
|
|
|
|
cocos_mark_multi_resources(res_script RES_TO "Resources/src/cocos" FOLDERS ${res_script_folders})
|
|
|
|
set(cc_common_res ${res_res} ${res_src} ${res_script})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ANDROID)
|
|
|
|
# change APP_NAME to the share library name for Android, it's value depend on AndroidManifest.xml
|
|
|
|
set(APP_NAME lua_tests)
|
|
|
|
list(APPEND GAME_SOURCE proj.android/app/jni/main.cpp)
|
|
|
|
elseif(LINUX)
|
|
|
|
list(APPEND GAME_SOURCE proj.linux/main.cpp)
|
|
|
|
elseif(WINDOWS)
|
|
|
|
list(APPEND GAME_HEADER
|
|
|
|
proj.win32/main.h
|
|
|
|
proj.win32/resource.h
|
|
|
|
)
|
|
|
|
list(APPEND GAME_SOURCE proj.win32/main.cpp ${cc_common_res})
|
|
|
|
elseif(APPLE)
|
|
|
|
if(IOS)
|
|
|
|
list(APPEND GAME_HEADER
|
|
|
|
proj.ios_mac/ios/AppController.h
|
|
|
|
proj.ios_mac/ios/LuaObjectCBridgeTest.h
|
|
|
|
proj.ios_mac/ios/RootViewController.h
|
|
|
|
)
|
|
|
|
set(APP_UI_RES
|
|
|
|
proj.ios_mac/ios/LaunchScreen.storyboard
|
|
|
|
proj.ios_mac/ios/LaunchScreenBackground.png
|
|
|
|
proj.ios_mac/ios/Images.xcassets
|
|
|
|
)
|
|
|
|
list(APPEND GAME_SOURCE
|
|
|
|
proj.ios_mac/ios/main.m
|
|
|
|
proj.ios_mac/ios/LuaObjectCBridgeTest.mm
|
|
|
|
proj.ios_mac/ios/AppController.mm
|
|
|
|
proj.ios_mac/ios/RootViewController.mm
|
|
|
|
${APP_UI_RES}
|
|
|
|
)
|
|
|
|
elseif(MACOSX)
|
|
|
|
list(APPEND GAME_HEADER
|
|
|
|
proj.ios_mac/mac/LuaObjectCBridgeTest.h
|
|
|
|
)
|
|
|
|
set(APP_UI_RES
|
|
|
|
proj.ios_mac/mac/Icon.icns
|
|
|
|
proj.ios_mac/mac/Info.plist
|
|
|
|
)
|
|
|
|
list(APPEND GAME_SOURCE
|
|
|
|
proj.ios_mac/mac/main.cpp
|
|
|
|
proj.ios_mac/mac/LuaObjectCBridgeTest.mm
|
|
|
|
${APP_UI_RES}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
list(APPEND GAME_SOURCE ${cc_common_res})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(APP_SRC ${GAME_HEADER} ${GAME_SOURCE})
|
|
|
|
|
|
|
|
if(NOT ANDROID)
|
|
|
|
add_executable(${APP_NAME} ${APP_SRC})
|
|
|
|
else()
|
|
|
|
add_library(${APP_NAME} SHARED ${APP_SRC})
|
|
|
|
add_subdirectory(${COCOS2DX_ROOT_PATH}/cocos/platform/android ${ENGINE_BINARY_PATH}/cocos/cpp-android)
|
|
|
|
target_link_libraries(${APP_NAME} -Wl,--whole-archive cpp_android_spec -Wl,--no-whole-archive)
|
2020-10-19 18:33:10 +08:00
|
|
|
add_subdirectory(${COCOS2DX_ROOT_PATH}/extensions/scripting/lua-bindings/proj.android ${ENGINE_BINARY_PATH}/cocos/lua-android)
|
2019-11-23 20:27:39 +08:00
|
|
|
if(${CMAKE_ANDROID_ARCH_ABI} STREQUAL "x86")
|
|
|
|
#add `-Wl,--no-warn-shared-textrel` to fix warning "shared library text segment is not shareable clang"
|
|
|
|
target_link_libraries(${APP_NAME} -Wl,--whole-archive lua_android_spec -Wl,--no-whole-archive -Wl,--no-warn-shared-textrel)
|
|
|
|
else()
|
|
|
|
target_link_libraries(${APP_NAME} -Wl,--whole-archive lua_android_spec -Wl,--no-whole-archive)
|
|
|
|
endif()
|
2020-02-03 21:18:23 +08:00
|
|
|
|
2020-10-19 19:19:17 +08:00
|
|
|
config_android_shared_libs("org.cocos2dx.lib" "${CMAKE_CURRENT_SOURCE_DIR}/proj.android/app/src")
|
2019-11-23 20:27:39 +08:00
|
|
|
endif()
|
|
|
|
target_link_libraries(${APP_NAME} luacocos2d)
|
|
|
|
target_include_directories(${APP_NAME} PRIVATE Classes)
|
|
|
|
|
|
|
|
# mark app resources
|
|
|
|
setup_cocos_app_config(${APP_NAME})
|
|
|
|
if(APPLE)
|
|
|
|
set_target_properties(${APP_NAME} PROPERTIES RESOURCE "${APP_UI_RES}")
|
2020-01-06 09:36:58 +08:00
|
|
|
set_xcode_property(${APP_NAME} INSTALL_PATH "\$(LOCAL_APPS_DIR)")
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
if(MACOSX)
|
2019-12-10 13:41:44 +08:00
|
|
|
set_target_properties(${APP_NAME} PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/proj.ios_mac/mac/Info.plist")
|
2019-11-23 20:27:39 +08:00
|
|
|
set_target_properties(${APP_NAME} PROPERTIES
|
|
|
|
LINK_FLAGS "-pagezero_size 10000 -image_base 100000000"
|
|
|
|
)
|
|
|
|
elseif(IOS)
|
2019-12-10 13:41:44 +08:00
|
|
|
set_target_properties(${APP_NAME} PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/proj.ios_mac/ios/Info.plist")
|
2019-11-23 20:27:39 +08:00
|
|
|
set_xcode_property(${APP_NAME} ASSETCATALOG_COMPILER_APPICON_NAME "AppIcon-${APP_NAME}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# For code-signing, set the DEVELOPMENT_TEAM:
|
|
|
|
#set_xcode_property(${APP_NAME} DEVELOPMENT_TEAM "GRLXXXX2K9")
|
|
|
|
elseif(WINDOWS)
|
|
|
|
cocos_copy_target_dll(${APP_NAME})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(LINUX OR WINDOWS)
|
|
|
|
cocos_get_resource_path(APP_RES_DIR ${APP_NAME})
|
|
|
|
cocos_copy_target_res(${APP_NAME} LINK_TO ${APP_RES_DIR}/res FOLDERS ${res_res_folders})
|
|
|
|
cocos_copy_lua_scripts(${APP_NAME} ${res_src_folders} ${APP_RES_DIR}/src )
|
|
|
|
cocos_copy_lua_scripts(${APP_NAME} ${res_script_folders} ${APP_RES_DIR}/src/cocos)
|
|
|
|
endif()
|