2019-11-23 20:27:39 +08:00
|
|
|
#/****************************************************************************
|
|
|
|
# Copyright (c) 2013-2014 cocos2d-x.org
|
2022-02-20 17:07:13 +08:00
|
|
|
# Copyright (c) 2021-2022 Bytedance Inc.
|
2019-11-23 20:27:39 +08:00
|
|
|
#
|
2022-10-01 16:24:52 +08:00
|
|
|
# https://axmolengine.github.io/
|
2019-11-23 20:27:39 +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.
|
|
|
|
# ****************************************************************************/
|
|
|
|
|
2021-04-22 22:01:47 +08:00
|
|
|
cmake_minimum_required(VERSION 3.10)
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
set(APP_NAME HelloCpp)
|
|
|
|
|
|
|
|
project(${APP_NAME})
|
|
|
|
|
|
|
|
if(NOT DEFINED BUILD_ENGINE_DONE) # to test HelloCpp into root project
|
2021-08-10 11:43:16 +08:00
|
|
|
if(XCODE)
|
|
|
|
set(CMAKE_XCODE_GENERATE_TOP_LEVEL_PROJECT_ONLY TRUE)
|
|
|
|
endif()
|
2022-09-05 14:13:52 +08:00
|
|
|
|
2021-12-21 10:41:33 +08:00
|
|
|
# config quick starter batch script run.bat for windows
|
|
|
|
if(WIN32)
|
2022-02-07 20:36:44 +08:00
|
|
|
file(RELATIVE_PATH CMAKE_BUILD_RELATIVE_DIR "${CMAKE_CURRENT_SOURCE_DIR}" "${PROJECT_BINARY_DIR}")
|
2021-12-21 10:41:33 +08:00
|
|
|
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/run.bat.in" "${CMAKE_CURRENT_SOURCE_DIR}/run.bat" @ONLY)
|
|
|
|
endif()
|
2021-08-10 11:43:16 +08:00
|
|
|
|
2022-08-29 20:51:22 +08:00
|
|
|
set(_AX_ROOT "$ENV{AX_ROOT}")
|
2020-10-22 16:53:28 +08:00
|
|
|
|
2022-08-29 20:51:22 +08:00
|
|
|
if(NOT (_AX_ROOT STREQUAL ""))
|
|
|
|
set(_AX_ROOT_PATH "${_AX_ROOT}")
|
|
|
|
file(TO_CMAKE_PATH ${_AX_ROOT_PATH} _AX_ROOT_PATH) # string(REPLACE "\\" "/" _AX_ROOT_PATH ${_AX_ROOT_PATH})
|
|
|
|
message(STATUS "Using system env var _AX_ROOT=${_AX_ROOT}")
|
2020-10-18 01:05:36 +08:00
|
|
|
else()
|
2022-09-02 10:36:25 +08:00
|
|
|
message(FATAL_ERROR "Please run setup.py add system env var 'AX_ROOT' to specific the engine root")
|
2020-10-18 01:01:36 +08:00
|
|
|
endif()
|
2022-02-20 17:07:13 +08:00
|
|
|
|
2022-08-29 20:51:22 +08:00
|
|
|
set(CMAKE_MODULE_PATH ${_AX_ROOT_PATH}/cmake/Modules/)
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
include(AXBuildSet)
|
2022-02-20 17:07:13 +08:00
|
|
|
set(_AX_USE_PREBUILT FALSE)
|
2022-11-17 21:26:17 +08:00
|
|
|
if ((WIN32 OR LINUX) AND DEFINED AX_PREBUILT_DIR AND IS_DIRECTORY ${_AX_ROOT_PATH}/${AX_PREBUILT_DIR})
|
2022-02-20 17:07:13 +08:00
|
|
|
set(_AX_USE_PREBUILT TRUE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT _AX_USE_PREBUILT)
|
2022-10-01 16:24:52 +08:00
|
|
|
add_subdirectory(${_AX_ROOT_PATH}/core ${ENGINE_BINARY_PATH}/axmol/core)
|
2022-02-20 17:07:13 +08:00
|
|
|
endif()
|
2019-11-23 20:27:39 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# record sources, headers, resources...
|
|
|
|
set(GAME_SOURCE)
|
|
|
|
set(GAME_HEADER)
|
|
|
|
|
|
|
|
set(GAME_RES_FOLDER
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/Resources"
|
|
|
|
)
|
|
|
|
if(APPLE OR WINDOWS)
|
2022-08-11 15:41:10 +08:00
|
|
|
ax_mark_multi_resources(common_res_files RES_TO "Resources" FOLDERS ${GAME_RES_FOLDER})
|
2019-11-23 20:27:39 +08:00
|
|
|
endif()
|
|
|
|
|
2022-09-05 14:13:52 +08:00
|
|
|
# add cross-platforms source files and header files
|
2019-11-23 20:27:39 +08:00
|
|
|
list(APPEND GAME_SOURCE
|
|
|
|
Classes/AppDelegate.cpp
|
|
|
|
Classes/HelloWorldScene.cpp
|
|
|
|
)
|
|
|
|
list(APPEND GAME_HEADER
|
|
|
|
Classes/AppDelegate.h
|
|
|
|
Classes/HelloWorldScene.h
|
|
|
|
)
|
|
|
|
|
|
|
|
if(ANDROID)
|
2020-10-20 16:26:53 +08:00
|
|
|
# the APP_NAME should match on AndroidManifest.xml
|
2019-11-23 20:27:39 +08:00
|
|
|
list(APPEND GAME_SOURCE
|
2022-08-08 18:02:17 +08:00
|
|
|
proj.android/app/jni/main.cpp
|
2019-11-23 20:27:39 +08:00
|
|
|
)
|
|
|
|
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
|
|
|
|
proj.win32/game.rc
|
|
|
|
${common_res_files}
|
|
|
|
)
|
|
|
|
elseif(APPLE)
|
|
|
|
if(IOS)
|
|
|
|
list(APPEND GAME_HEADER
|
|
|
|
proj.ios_mac/ios/AppController.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/AppController.mm
|
|
|
|
proj.ios_mac/ios/RootViewController.mm
|
|
|
|
proj.ios_mac/ios/Prefix.pch
|
|
|
|
${APP_UI_RES}
|
|
|
|
)
|
|
|
|
elseif(MACOSX)
|
|
|
|
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/Prefix.pch
|
|
|
|
${APP_UI_RES}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
list(APPEND GAME_SOURCE ${common_res_files})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# mark app complie info and libs info
|
|
|
|
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")
|
2019-11-23 20:27:39 +08:00
|
|
|
endif()
|
|
|
|
|
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_CORE_LIB})
|
2022-05-18 12:49:12 +08:00
|
|
|
endif()
|
2022-01-04 09:40:27 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
target_include_directories(${APP_NAME}
|
|
|
|
PRIVATE Classes
|
2022-08-29 20:51:22 +08:00
|
|
|
PRIVATE ${_AX_ROOT_PATH}/core/audio
|
2019-11-23 20:27:39 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# mark app resources
|
2022-08-11 15:41:10 +08:00
|
|
|
setup_ax_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)")
|
2022-10-01 16:24:52 +08:00
|
|
|
set_xcode_property(${APP_NAME} PRODUCT_BUNDLE_IDENTIFIER "org.axmol.hellocpp")
|
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")
|
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")
|
2019-11-23 20:27:39 +08:00
|
|
|
set_xcode_property(${APP_NAME} ASSETCATALOG_COMPILER_APPICON_NAME "AppIcon")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# For code-signing, set the DEVELOPMENT_TEAM:
|
|
|
|
#set_xcode_property(${APP_NAME} DEVELOPMENT_TEAM "GRLXXXX2K9")
|
|
|
|
elseif(WINDOWS)
|
2022-02-20 17:07:13 +08:00
|
|
|
if(NOT _AX_USE_PREBUILT)
|
2022-08-11 15:41:10 +08:00
|
|
|
ax_copy_target_dll(${APP_NAME})
|
2022-02-20 17:07:13 +08:00
|
|
|
endif()
|
2019-11-23 20:27:39 +08:00
|
|
|
endif()
|
|
|
|
|
2022-04-26 15:16:02 +08:00
|
|
|
if((WINDOWS AND (CMAKE_GENERATOR STREQUAL "Ninja")) OR LINUX)
|
2022-08-11 15:41:10 +08:00
|
|
|
ax_get_resource_path(APP_RES_DIR ${APP_NAME})
|
|
|
|
ax_copy_target_res(${APP_NAME} LINK_TO ${APP_RES_DIR} FOLDERS ${GAME_RES_FOLDER})
|
2022-04-26 15:16:02 +08:00
|
|
|
elseif(WINDOWS)
|
2021-10-12 15:39:37 +08:00
|
|
|
set_property(TARGET ${APP_NAME} PROPERTY VS_DEBUGGER_WORKING_DIRECTORY "${GAME_RES_FOLDER}")
|
2022-02-22 19:09:34 +08:00
|
|
|
if(NOT DEFINED BUILD_ENGINE_DONE)
|
|
|
|
set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT ${APP_NAME})
|
|
|
|
endif()
|
2019-11-23 20:27:39 +08:00
|
|
|
endif()
|
2022-02-20 17:07:13 +08:00
|
|
|
|
2022-04-02 14:03:46 +08:00
|
|
|
# The optional thirdparties(not dependent by engine)
|
|
|
|
if (AX_WITH_YAML_CPP)
|
2022-08-29 20:51:22 +08:00
|
|
|
target_include_directories(${APP_NAME} PRIVATE ${_AX_ROOT_PATH}/thirdparty/yaml-cpp/include)
|
2022-04-02 14:03:46 +08:00
|
|
|
target_link_libraries(${APP_NAME} yaml-cpp)
|
|
|
|
endif()
|
|
|
|
|
2022-11-17 21:26:17 +08:00
|
|
|
if (_AX_USE_PREBUILT) # support windows and linux
|
2022-08-08 18:02:17 +08:00
|
|
|
use_ax_compile_define(${APP_NAME})
|
2022-06-24 03:09:20 +08:00
|
|
|
|
2022-08-29 20:51:22 +08:00
|
|
|
include(${_AX_ROOT_PATH}/cmake/Modules/AXLinkHelpers.cmake)
|
|
|
|
ax_link_cxx_prebuilt(${APP_NAME} ${_AX_ROOT_PATH} ${AX_PREBUILT_DIR})
|
2022-09-05 14:13:52 +08:00
|
|
|
endif()
|