2021-04-22 22:01:47 +08:00
|
|
|
cmake_minimum_required(VERSION 3.10)
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2023-12-11 23:28:21 +08:00
|
|
|
set(APP_NAME lua-tests)
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
project(${APP_NAME})
|
|
|
|
|
|
|
|
if(NOT DEFINED BUILD_ENGINE_DONE)
|
2021-08-10 11:43:16 +08:00
|
|
|
if(XCODE)
|
|
|
|
set(CMAKE_XCODE_GENERATE_TOP_LEVEL_PROJECT_ONLY TRUE)
|
|
|
|
endif()
|
|
|
|
|
2022-08-29 20:51:22 +08:00
|
|
|
set(_AX_ROOT "$ENV{AX_ROOT}")
|
|
|
|
if(NOT (_AX_ROOT STREQUAL ""))
|
2023-07-06 16:09:54 +08:00
|
|
|
file(TO_CMAKE_PATH ${_AX_ROOT} _AX_ROOT) # string(REPLACE "\\" "/" _AX_ROOT ${_AX_ROOT})
|
2022-08-29 20:51:22 +08:00
|
|
|
message(STATUS "Using system env var _AX_ROOT=${_AX_ROOT}")
|
2020-10-18 01:05:36 +08:00
|
|
|
else()
|
2023-07-06 14:00:21 +08:00
|
|
|
message(FATAL_ERROR "Please run setup.ps1 add system env var 'AX_ROOT' to specific the engine root")
|
2020-10-18 01:01:36 +08:00
|
|
|
endif()
|
2023-09-09 00:36:49 +08:00
|
|
|
set(CMAKE_MODULE_PATH ${_AX_ROOT}/cmake/Modules/)
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
include(AXBuildSet)
|
2022-02-17 21:31:39 +08:00
|
|
|
set(AX_ENABLE_EXT_LUA ON)
|
2022-05-18 22:27:43 +08:00
|
|
|
|
|
|
|
set(_AX_USE_PREBUILT FALSE)
|
2023-07-06 16:09:54 +08:00
|
|
|
if (WIN32 AND DEFINED AX_PREBUILT_DIR AND IS_DIRECTORY ${_AX_ROOT}/${AX_PREBUILT_DIR})
|
2022-05-18 22:27:43 +08:00
|
|
|
set(_AX_USE_PREBUILT TRUE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT _AX_USE_PREBUILT)
|
2023-07-06 16:09:54 +08:00
|
|
|
add_subdirectory(${_AX_ROOT}/core ${ENGINE_BINARY_PATH}/axmol/core)
|
2022-05-18 22:27:43 +08:00
|
|
|
endif()
|
2019-11-23 20:27:39 +08:00
|
|
|
endif()
|
|
|
|
|
2024-01-16 00:47:19 +08:00
|
|
|
_1kfetch(sample-assets)
|
2024-01-16 01:20:41 +08:00
|
|
|
_1klink("${sample-assets_SOURCE_DIR}/cpp-tests/Content" "${CMAKE_CURRENT_LIST_DIR}/Content/res")
|
2024-01-16 00:47:19 +08:00
|
|
|
|
2023-03-11 22:10:18 +08:00
|
|
|
# The common cross-platforms source files and header files
|
2023-02-23 21:57:30 +08:00
|
|
|
file(GLOB_RECURSE GAME_HEADER
|
|
|
|
Source/*.h
|
2019-11-23 20:27:39 +08:00
|
|
|
)
|
2023-02-23 21:57:30 +08:00
|
|
|
file(GLOB_RECURSE GAME_SOURCE
|
|
|
|
Source/*.cpp
|
2019-11-23 20:27:39 +08:00
|
|
|
)
|
2023-03-11 22:10:18 +08:00
|
|
|
|
|
|
|
set(GAME_INC_DIRS
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/Source"
|
|
|
|
)
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2023-09-26 20:04:20 +08:00
|
|
|
|
|
|
|
set(shared_content_folder "${_AX_ROOT}/tests/cpp-tests/Content")
|
2023-02-23 21:57:30 +08:00
|
|
|
set(content_folder "${CMAKE_CURRENT_SOURCE_DIR}/Content")
|
2023-07-06 16:09:54 +08:00
|
|
|
set(engine_script_folder "${_AX_ROOT}/extensions/scripting/lua-bindings/script")
|
2023-02-23 21:57:30 +08:00
|
|
|
|
2023-03-03 21:53:18 +08:00
|
|
|
if(APPLE)
|
|
|
|
ax_mark_multi_resources(content_files RES_TO "Resources" FOLDERS ${content_folder})
|
2023-09-26 20:04:20 +08:00
|
|
|
ax_mark_multi_resources(shared_content_files RES_TO "Resources/res" FOLDERS ${shared_content_folder})
|
|
|
|
set(common_content_files ${content_files} ${shared_content_files})
|
|
|
|
ax_mark_multi_resources(engine_script_files RES_TO "Resources/src/axmol" FOLDERS ${engine_script_folder})
|
|
|
|
set(common_content_files ${common_content_files} ${engine_script_files})
|
2023-03-11 22:10:18 +08:00
|
|
|
elseif(WINDOWS)
|
2023-02-23 21:57:30 +08:00
|
|
|
ax_mark_multi_resources(content_files RES_TO "Content" FOLDERS ${content_folder})
|
2023-03-11 22:10:18 +08:00
|
|
|
set(common_content_files ${content_files})
|
2023-09-26 20:04:20 +08:00
|
|
|
ax_mark_multi_resources(engine_script_files RES_TO "Content/src/axmol" FOLDERS ${engine_script_folder})
|
|
|
|
set(common_content_files ${common_content_files} ${engine_script_files})
|
2019-11-23 20:27:39 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ANDROID)
|
2023-03-11 22:10:18 +08:00
|
|
|
# the APP_NAME should match on AndroidManifest.xml
|
|
|
|
list(APPEND GAME_SOURCE
|
|
|
|
proj.android/app/jni/main.cpp
|
|
|
|
)
|
2019-11-23 20:27:39 +08:00
|
|
|
elseif(LINUX)
|
2023-03-11 22:10:18 +08:00
|
|
|
list(APPEND GAME_SOURCE
|
|
|
|
proj.linux/main.cpp
|
2019-11-23 20:27:39 +08:00
|
|
|
)
|
2023-03-11 22:10:18 +08:00
|
|
|
list(APPEND GAME_SOURCE ${common_content_files})
|
2023-09-05 22:17:18 +08:00
|
|
|
elseif(WASM)
|
2023-09-01 16:31:14 +08:00
|
|
|
list(APPEND GAME_SOURCE
|
2023-09-05 22:17:18 +08:00
|
|
|
proj.wasm/main.cpp
|
2023-09-01 16:31:14 +08:00
|
|
|
)
|
|
|
|
list(APPEND GAME_SOURCE ${common_content_files})
|
2023-03-11 22:10:18 +08:00
|
|
|
elseif(WINDOWS)
|
|
|
|
if(NOT WINRT)
|
|
|
|
list(APPEND GAME_HEADER
|
|
|
|
proj.win32/main.h
|
|
|
|
)
|
|
|
|
list(APPEND GAME_SOURCE
|
|
|
|
proj.win32/main.cpp
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
ax_setup_winrt_sources()
|
2023-07-06 16:09:54 +08:00
|
|
|
ax_mark_multi_resources(res_files RES_TO "Content/res" FOLDERS "${_AX_ROOT}/tests/cpp-tests/Content")
|
2023-03-11 22:10:18 +08:00
|
|
|
list(APPEND common_content_files ${res_files})
|
|
|
|
endif()
|
|
|
|
list(APPEND GAME_SOURCE ${common_content_files})
|
2019-11-23 20:27:39 +08:00
|
|
|
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
|
|
|
|
)
|
2022-09-05 14:13:52 +08:00
|
|
|
|
|
|
|
if (TVOS)
|
|
|
|
set(APP_UI_RES
|
|
|
|
proj.ios_mac/ios/LaunchScreenBackground.png
|
|
|
|
proj.ios_mac/ios/targets/tvos/LaunchScreen.storyboard
|
|
|
|
proj.ios_mac/ios/targets/tvos/Images.xcassets
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
set(APP_UI_RES
|
|
|
|
proj.ios_mac/ios/LaunchScreenBackground.png
|
|
|
|
proj.ios_mac/ios/targets/ios/LaunchScreen.storyboard
|
|
|
|
proj.ios_mac/ios/targets/ios/Images.xcassets
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
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()
|
2023-03-11 22:10:18 +08:00
|
|
|
list(APPEND GAME_SOURCE ${common_content_files})
|
2019-11-23 20:27:39 +08:00
|
|
|
endif()
|
|
|
|
|
2023-03-11 22:10:18 +08:00
|
|
|
# mark app complie info and libs info
|
|
|
|
set(APP_SOURCES
|
|
|
|
${GAME_HEADER}
|
|
|
|
${GAME_SOURCE}
|
|
|
|
)
|
2019-11-23 20:27:39 +08:00
|
|
|
if(NOT ANDROID)
|
2023-03-11 22:10:18 +08:00
|
|
|
add_executable(${APP_NAME} ${APP_SOURCES})
|
2019-11-23 20:27:39 +08:00
|
|
|
else()
|
2023-03-11 22:10:18 +08:00
|
|
|
add_library(${APP_NAME} SHARED ${APP_SOURCES})
|
|
|
|
|
|
|
|
# whole archive for jni
|
2022-01-04 09:40:27 +08:00
|
|
|
target_link_libraries(${APP_NAME} -Wl,--whole-archive cpp_android_spec -Wl,--no-whole-archive)
|
|
|
|
|
2023-07-06 16:09:54 +08:00
|
|
|
add_subdirectory(${_AX_ROOT}/extensions/scripting/lua-bindings/proj.android ${ENGINE_BINARY_PATH}/extensions/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
|
|
|
|
2022-10-01 16:24:52 +08:00
|
|
|
config_android_shared_libs("org.axmol.lib" "${CMAKE_CURRENT_SOURCE_DIR}/proj.android/app/src")
|
2019-11-23 20:27:39 +08:00
|
|
|
endif()
|
2021-12-31 12:12:40 +08:00
|
|
|
|
2022-05-18 22:27:43 +08:00
|
|
|
if (NOT _AX_USE_PREBUILT)
|
2022-08-08 18:02:17 +08:00
|
|
|
target_link_libraries(${APP_NAME} ${_AX_LUA_LIB})
|
2022-05-18 22:27:43 +08:00
|
|
|
endif()
|
2022-01-04 09:40:27 +08:00
|
|
|
|
2023-03-11 22:10:18 +08:00
|
|
|
# The optional thirdparties(not dependent by engine)
|
|
|
|
if (AX_WITH_YAML_CPP)
|
2023-07-06 16:09:54 +08:00
|
|
|
list(APPEND GAME_INC_DIRS "${_AX_ROOT}/thirdparty/yaml-cpp/include")
|
2023-03-11 22:10:18 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
target_include_directories(${APP_NAME} PRIVATE ${GAME_INC_DIRS})
|
2021-10-07 18:44:34 +08:00
|
|
|
|
2023-03-11 22:10:18 +08:00
|
|
|
|
|
|
|
# mark app resources, resource will be copy auto after mark
|
|
|
|
ax_setup_app_config(${APP_NAME})
|
2019-11-23 20:27:39 +08:00
|
|
|
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)")
|
2023-12-11 23:28:21 +08:00
|
|
|
set_xcode_property(${APP_NAME} PRODUCT_BUNDLE_IDENTIFIER "org.axmol.${APP_NAME}")
|
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")
|
2022-09-05 14:13:52 +08:00
|
|
|
elseif(TVOS)
|
|
|
|
set_target_properties(${APP_NAME} PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}//proj.ios_mac/ios/targets/tvos/Info.plist")
|
|
|
|
set_xcode_property(${APP_NAME} ASSETCATALOG_COMPILER_APPICON_NAME "Brand Assets")
|
|
|
|
set_xcode_property(${APP_NAME} DEVELOPMENT_TEAM "")
|
|
|
|
set_xcode_property(${APP_NAME} CODE_SIGN_IDENTIFY "iPhone Developer")
|
2019-11-23 20:27:39 +08:00
|
|
|
elseif(IOS)
|
2022-09-05 14:13:52 +08:00
|
|
|
set_target_properties(${APP_NAME} PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}//proj.ios_mac/ios/targets/ios/Info.plist")
|
2022-05-23 21:55:30 +08:00
|
|
|
set_xcode_property(${APP_NAME} ASSETCATALOG_COMPILER_APPICON_NAME "AppIcon")
|
|
|
|
set_xcode_property(${APP_NAME} DEVELOPMENT_TEAM "")
|
|
|
|
set_xcode_property(${APP_NAME} CODE_SIGN_IDENTIFY "iPhone Developer")
|
2019-11-23 20:27:39 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# For code-signing, set the DEVELOPMENT_TEAM:
|
|
|
|
#set_xcode_property(${APP_NAME} DEVELOPMENT_TEAM "GRLXXXX2K9")
|
2023-03-11 22:10:18 +08:00
|
|
|
elseif(WINDOWS AND (NOT WINRT))
|
2022-05-18 22:27:43 +08:00
|
|
|
if(NOT _AX_USE_PREBUILT)
|
2023-09-26 00:11:33 +08:00
|
|
|
ax_sync_target_dlls(${APP_NAME} LUA)
|
2022-05-18 22:27:43 +08:00
|
|
|
endif()
|
2019-11-23 20:27:39 +08:00
|
|
|
endif()
|
2023-02-23 21:57:30 +08:00
|
|
|
|
2023-03-11 22:10:18 +08:00
|
|
|
if ((NOT APPLE) AND (NOT WINRT))
|
2022-08-11 15:41:10 +08:00
|
|
|
ax_get_resource_path(APP_RES_DIR ${APP_NAME})
|
2023-09-26 20:04:20 +08:00
|
|
|
ax_sync_lua_scripts(${APP_NAME} ${engine_script_folder} "${content_folder}/src/axmol")
|
2023-02-23 21:57:30 +08:00
|
|
|
ax_sync_target_res(${APP_NAME} LINK_TO ${APP_RES_DIR} FOLDERS ${content_folder} SYM_LINK 1)
|
|
|
|
|
2023-04-02 16:04:19 +08:00
|
|
|
if((WINDOWS AND (NOT (CMAKE_GENERATOR MATCHES "Ninja"))))
|
2023-02-23 21:57:30 +08:00
|
|
|
set_property(TARGET ${APP_NAME} PROPERTY VS_DEBUGGER_WORKING_DIRECTORY "${content_folder}")
|
|
|
|
if(NOT DEFINED BUILD_ENGINE_DONE)
|
|
|
|
set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT ${APP_NAME})
|
|
|
|
endif()
|
2022-05-18 22:27:43 +08:00
|
|
|
endif()
|
2023-03-12 12:34:51 +08:00
|
|
|
elseif(WINRT)
|
|
|
|
if(NOT DEFINED BUILD_ENGINE_DONE)
|
|
|
|
set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT ${APP_NAME})
|
|
|
|
endif()
|
2022-05-18 22:27:43 +08:00
|
|
|
endif()
|
|
|
|
|
2023-02-23 21:57:30 +08:00
|
|
|
if (_AX_USE_PREBUILT) # support windows and linux
|
|
|
|
use_ax_compile_define(${APP_NAME})
|
|
|
|
|
2023-09-02 19:56:50 +08:00
|
|
|
include(${_AX_ROOT}/cmake/AXLinkHelpers.cmake)
|
2023-07-06 16:09:54 +08:00
|
|
|
ax_link_lua_prebuilt(${APP_NAME} ${_AX_ROOT} ${AX_PREBUILT_DIR})
|
2019-11-23 20:27:39 +08:00
|
|
|
endif()
|
2023-03-12 17:57:54 +08:00
|
|
|
|
|
|
|
if (NOT DEFINED BUILD_ENGINE_DONE)
|
|
|
|
ax_uwp_set_all_targets_deploy_min_version()
|
|
|
|
endif()
|
2023-09-05 22:40:25 +08:00
|
|
|
|
2023-09-26 00:11:33 +08:00
|
|
|
ax_setup_app_props(${APP_NAME})
|