2020-08-04 13:15:02 +08:00
|
|
|
#/****************************************************************************
|
2023-03-11 22:10:18 +08:00
|
|
|
# Copyright (c) 2013-2014 cocos2d-x.org
|
|
|
|
# Copyright (c) 2021-2023 Bytedance Inc.
|
|
|
|
#
|
2022-10-01 16:24:52 +08:00
|
|
|
# https://axmolengine.github.io/
|
2020-08-04 13:15:02 +08:00
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
# THE SOFTWARE.
|
|
|
|
# ****************************************************************************/
|
2023-03-11 22:10:18 +08:00
|
|
|
|
2021-04-22 22:01:47 +08:00
|
|
|
cmake_minimum_required(VERSION 3.10)
|
2020-08-04 13:15:02 +08:00
|
|
|
|
2022-05-23 21:55:30 +08:00
|
|
|
set(APP_NAME fairygui_tests)
|
2020-08-04 13:15:02 +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)
|
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 16:09:54 +08:00
|
|
|
set(_AX_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/../..)
|
2020-10-18 01:01:36 +08:00
|
|
|
endif()
|
2023-03-11 22:10:18 +08:00
|
|
|
|
2023-09-09 00:36:49 +08:00
|
|
|
set(CMAKE_MODULE_PATH ${_AX_ROOT}/cmake/Modules/)
|
2020-08-04 13:15:02 +08:00
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
include(AXBuildSet)
|
2023-07-06 16:09:54 +08:00
|
|
|
add_subdirectory(${_AX_ROOT}/core ${ENGINE_BINARY_PATH}/axmol/core)
|
2020-08-04 13:15:02 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# record sources, headers, resources...
|
2023-02-23 21:57:30 +08:00
|
|
|
file(GLOB GAME_SOURCE Source/*.cpp)
|
|
|
|
file(GLOB GAME_HEADER Source/*.h)
|
2020-08-04 13:15:02 +08:00
|
|
|
|
2023-03-11 22:10:18 +08:00
|
|
|
set(GAME_INC_DIRS
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/Source"
|
|
|
|
)
|
|
|
|
|
2023-03-04 21:25:05 +08:00
|
|
|
set(content_folder
|
2023-02-23 21:57:30 +08:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/Content"
|
2020-08-04 13:15:02 +08:00
|
|
|
)
|
2023-03-03 21:53:18 +08:00
|
|
|
if(APPLE)
|
2023-03-04 21:25:05 +08:00
|
|
|
ax_mark_multi_resources(common_content_files RES_TO "Resources" FOLDERS ${content_folder})
|
2023-03-03 21:53:18 +08:00
|
|
|
elseif(WINDOWS)
|
2023-03-04 21:25:05 +08:00
|
|
|
ax_mark_multi_resources(common_content_files RES_TO "Content" FOLDERS ${content_folder})
|
2020-08-04 13:15:02 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ANDROID)
|
|
|
|
list(APPEND GAME_SOURCE
|
|
|
|
proj.android/app/jni/main.cpp
|
|
|
|
)
|
|
|
|
elseif(LINUX)
|
|
|
|
list(APPEND GAME_SOURCE
|
|
|
|
proj.linux/main.cpp
|
|
|
|
)
|
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})
|
2020-08-04 13:15:02 +08:00
|
|
|
elseif(WINDOWS)
|
2023-03-11 22:10:18 +08:00
|
|
|
if(NOT WINRT)
|
|
|
|
list(APPEND GAME_HEADER
|
|
|
|
proj.win32/main.h
|
|
|
|
)
|
|
|
|
list(APPEND GAME_SOURCE
|
|
|
|
proj.win32/main.cpp
|
|
|
|
${common_content_files}
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
ax_setup_winrt_sources()
|
|
|
|
endif()
|
|
|
|
list(APPEND GAME_SOURCE ${common_content_files})
|
2020-08-04 13:15:02 +08:00
|
|
|
elseif(APPLE)
|
|
|
|
if(IOS)
|
|
|
|
list(APPEND GAME_HEADER
|
|
|
|
proj.ios/AppController.h
|
|
|
|
proj.ios/RootViewController.h
|
|
|
|
)
|
2022-09-05 14:13:52 +08:00
|
|
|
|
|
|
|
if (TVOS)
|
|
|
|
set(APP_UI_RES
|
|
|
|
proj.ios/LaunchScreenBackground.png
|
|
|
|
proj.ios/targets/tvos/LaunchScreen.storyboard
|
|
|
|
proj.ios/targets/tvos/Images.xcassets
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
set(APP_UI_RES
|
|
|
|
proj.ios/LaunchScreenBackground.png
|
|
|
|
proj.ios/targets/ios/LaunchScreen.storyboard
|
|
|
|
proj.ios/targets/ios/Images.xcassets
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2020-08-04 13:15:02 +08:00
|
|
|
list(APPEND GAME_SOURCE
|
|
|
|
proj.ios/main.m
|
|
|
|
proj.ios/AppController.mm
|
|
|
|
proj.ios/RootViewController.mm
|
|
|
|
${APP_UI_RES}
|
|
|
|
)
|
|
|
|
elseif(MACOSX)
|
|
|
|
set(APP_UI_RES
|
|
|
|
proj.mac/Icon.icns
|
|
|
|
proj.mac/Info.plist
|
|
|
|
proj.mac/en.lproj/InfoPlist.strings
|
|
|
|
)
|
|
|
|
list(APPEND GAME_SOURCE
|
|
|
|
proj.mac/main.cpp
|
|
|
|
${APP_UI_RES}
|
|
|
|
)
|
|
|
|
endif()
|
2023-02-23 21:57:30 +08:00
|
|
|
list(APPEND GAME_SOURCE ${common_content_files})
|
2020-08-04 13:15:02 +08:00
|
|
|
endif()
|
|
|
|
|
2023-03-11 22:10:18 +08:00
|
|
|
# mark app complie info and libs info
|
2020-08-04 13:15:02 +08:00
|
|
|
set(all_code_files
|
|
|
|
${GAME_HEADER}
|
|
|
|
${GAME_SOURCE}
|
|
|
|
)
|
|
|
|
|
|
|
|
if(NOT ANDROID)
|
|
|
|
add_executable(${APP_NAME} ${all_code_files})
|
|
|
|
else()
|
|
|
|
add_library(${APP_NAME} SHARED ${all_code_files})
|
2022-01-04 09:40:27 +08:00
|
|
|
|
|
|
|
# whole archive for jni
|
|
|
|
target_link_libraries(${APP_NAME} -Wl,--whole-archive cpp_android_spec -Wl,--no-whole-archive)
|
|
|
|
|
2022-10-01 16:24:52 +08:00
|
|
|
config_android_shared_libs("org.axmol.lib" "${CMAKE_CURRENT_SOURCE_DIR}/proj.android/app/src")
|
2020-08-04 13:15:02 +08:00
|
|
|
endif()
|
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
target_link_libraries(${APP_NAME} ${_AX_CORE_LIB})
|
2022-01-04 09:40:27 +08:00
|
|
|
|
2023-03-11 22:10:18 +08:00
|
|
|
target_include_directories(${APP_NAME} PRIVATE ${GAME_INC_DIRS})
|
2020-08-04 13:15:02 +08:00
|
|
|
|
2023-03-11 22:10:18 +08:00
|
|
|
# mark app resources
|
|
|
|
ax_setup_app_config(${APP_NAME})
|
|
|
|
if(APPLE)
|
2020-08-04 13:15:02 +08:00
|
|
|
set_target_properties(${APP_NAME} PROPERTIES RESOURCE "${APP_UI_RES}")
|
|
|
|
set_xcode_property(${APP_NAME} INSTALL_PATH "\$(LOCAL_APPS_DIR)")
|
2022-10-01 16:24:52 +08:00
|
|
|
set_xcode_property(${APP_NAME} PRODUCT_BUNDLE_IDENTIFIER "org.axmol.fairygui-tests")
|
2020-08-04 13:15:02 +08:00
|
|
|
|
|
|
|
if(MACOSX)
|
|
|
|
set_target_properties(${APP_NAME} PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/proj.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/targets/tvos/Info.plist")
|
|
|
|
set_xcode_property(${APP_NAME} ASSETCATALOG_COMPILER_APPICON_NAME "Brand Assets")
|
2020-08-04 13:15:02 +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/targets/ios/Info.plist")
|
2022-05-23 23:40:37 +08:00
|
|
|
set_xcode_property(${APP_NAME} ASSETCATALOG_COMPILER_APPICON_NAME "AppIcon")
|
2020-08-04 13:15:02 +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-08-11 15:41:10 +08:00
|
|
|
ax_copy_target_dll(${APP_NAME})
|
2020-08-04 13:15:02 +08:00
|
|
|
endif()
|
|
|
|
|
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-03-04 21:25:05 +08:00
|
|
|
ax_sync_target_res(${APP_NAME} LINK_TO ${APP_RES_DIR} FOLDERS ${content_folder} SYM_LINK 1)
|
2023-02-23 21:57:30 +08:00
|
|
|
if(WINDOWS)
|
2023-03-04 21:25:05 +08:00
|
|
|
set_property(TARGET ${APP_NAME} PROPERTY VS_DEBUGGER_WORKING_DIRECTORY "${content_folder}")
|
2023-02-23 21:57:30 +08:00
|
|
|
endif()
|
2020-08-04 13:15:02 +08:00
|
|
|
endif()
|
2023-03-11 22:10:18 +08:00
|
|
|
|
|
|
|
if((NOT IOS) AND (NOT WINRT))
|
|
|
|
message("CMake ${APP_NAME} target_precompile_headers")
|
|
|
|
target_precompile_headers(${APP_NAME} PRIVATE
|
|
|
|
"$<$<COMPILE_LANGUAGE:CXX>:axmol.h>"
|
|
|
|
)
|
|
|
|
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
|
|
|
|
|
|
|
if (WASM)
|
|
|
|
ax_setup_wasm_app_config(${APP_NAME})
|
|
|
|
endif()
|