You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
3395 lines
142 KiB
3395 lines
142 KiB
if(NOT USE_XR AND NOT USE_AR_MODULE)
|
|
include(${CMAKE_CURRENT_LIST_DIR}/cmake/predefine.cmake)
|
|
endif()
|
|
|
|
################################# engine source code ##################################
|
|
set(CWD ${CMAKE_CURRENT_LIST_DIR})
|
|
set(COCOS_SOURCE_LIST)
|
|
set(ENGINE_NAME cocos_engine)
|
|
|
|
# Should be enable someday in the future
|
|
# set(CMAKE_CXX_FLAGS "${WERROR_FLAGS}")
|
|
|
|
################################# options ############################################
|
|
# default fallback options
|
|
cc_set_if_undefined(CC_DEBUG_FORCE OFF)
|
|
cc_set_if_undefined(USE_SE_V8 ON)
|
|
cc_set_if_undefined(USE_SE_SM OFF)
|
|
cc_set_if_undefined(USE_SE_NAPI OFF)
|
|
cc_set_if_undefined(USE_V8_DEBUGGER ON)
|
|
cc_set_if_undefined(USE_V8_DEBUGGER_FORCE OFF)
|
|
cc_set_if_undefined(USE_SOCKET ON)
|
|
cc_set_if_undefined(USE_AUDIO ON)
|
|
cc_set_if_undefined(USE_EDIT_BOX ON)
|
|
cc_set_if_undefined(USE_VIDEO ON)
|
|
cc_set_if_undefined(USE_WEBVIEW ON)
|
|
cc_set_if_undefined(USE_MIDDLEWARE ON)
|
|
cc_set_if_undefined(USE_DRAGONBONES ON)
|
|
cc_set_if_undefined(USE_SPINE ON)
|
|
cc_set_if_undefined(USE_WEBSOCKET_SERVER OFF)
|
|
cc_set_if_undefined(USE_JOB_SYSTEM_TASKFLOW OFF)
|
|
cc_set_if_undefined(USE_JOB_SYSTEM_TBB OFF)
|
|
cc_set_if_undefined(USE_PHYSICS_PHYSX OFF)
|
|
cc_set_if_undefined(USE_MODULES OFF)
|
|
cc_set_if_undefined(USE_XR OFF)
|
|
cc_set_if_undefined(USE_SERVER_MODE OFF)
|
|
cc_set_if_undefined(USE_AR_MODULE OFF)
|
|
cc_set_if_undefined(USE_AR_AUTO OFF)
|
|
cc_set_if_undefined(USE_AR_CORE OFF)
|
|
cc_set_if_undefined(USE_AR_ENGINE OFF)
|
|
cc_set_if_undefined(USE_PLUGINS ON)
|
|
cc_set_if_undefined(USE_OCCLUSION_QUERY ON)
|
|
cc_set_if_undefined(USE_DEBUG_RENDERER ON)
|
|
cc_set_if_undefined(USE_GEOMETRY_RENDERER ON)
|
|
cc_set_if_undefined(USE_WEBP ON)
|
|
cc_set_if_undefined(NET_MODE 0) # 0 is client
|
|
cc_set_if_undefined(USE_REMOTE_LOG OFF)
|
|
|
|
|
|
if(ANDROID AND NOT DEFINED USE_CCACHE)
|
|
if("$ENV{COCOS_USE_CCACHE}" STREQUAL "1")
|
|
message(STATUS "Enable ccache by env CC_USE_CACHE=1")
|
|
set(USE_CCACHE ON)
|
|
else()
|
|
set(USE_CCACHE OFF)
|
|
endif()
|
|
endif()
|
|
|
|
if(NX)
|
|
cc_set_if_undefined(CC_USE_VULKAN ON)
|
|
cc_set_if_undefined(CC_USE_GLES3 OFF)
|
|
cc_set_if_undefined(CC_USE_GLES2 OFF)
|
|
elseif(ANDROID OR WINDOWS OR OHOS)
|
|
cc_set_if_undefined(CC_USE_GLES3 ON)
|
|
cc_set_if_undefined(CC_USE_VULKAN OFF)
|
|
cc_set_if_undefined(CC_USE_GLES2 OFF)
|
|
elseif(MACOSX OR IOS)
|
|
cc_set_if_undefined(CC_USE_METAL ON)
|
|
cc_set_if_undefined(CC_USE_VULKAN OFF)
|
|
cc_set_if_undefined(CC_USE_GLES3 OFF)
|
|
cc_set_if_undefined(CC_USE_GLES2 OFF)
|
|
endif()
|
|
|
|
set(CC_USE_GLES3 ${CC_USE_GLES3} CACHE INTERNAL "")
|
|
set(CC_USE_GLES2 ${CC_USE_GLES2} CACHE INTERNAL "")
|
|
set(CC_USE_VULKAN ${CC_USE_VULKAN} CACHE INTERNAL "")
|
|
set(CC_USE_METAL ${CC_USE_METAL} CACHE INTERNAL "")
|
|
|
|
if(USE_SERVER_MODE)
|
|
set(CC_USE_VULKAN OFF)
|
|
set(CC_USE_METAL OFF)
|
|
set(CC_USE_GLES3 OFF)
|
|
set(CC_USE_GLES2 OFF)
|
|
add_definitions(-DCC_SERVER_MODE)
|
|
endif()
|
|
|
|
# Fix the issue: https://github.com/cocos/cocos-engine/issues/16190
|
|
# std::unary_function was removed since clang 15
|
|
# The macro has already been defined in boost/config/stdlib/dinkumware.hpp(258,1),
|
|
# so no need to define it again to avoid 'macro redefinition' error.
|
|
if(NOT WINDOWS)
|
|
add_definitions(-DBOOST_NO_CXX98_FUNCTION_BASE)
|
|
endif()
|
|
|
|
add_definitions(-DCC_NETMODE_CLIENT=0)
|
|
add_definitions(-DCC_NETMODE_LISTEN_SERVER=1)
|
|
add_definitions(-DCC_NETMODE_HOST_SERVER=2)
|
|
if(${NET_MODE} EQUAL "0" OR ${NET_MODE} EQUAL "1" OR ${NET_MODE} EQUAL "2")
|
|
add_definitions(-DCC_NETMODE=${NET_MODE})
|
|
else()
|
|
message(FATAL_ERROR "NET_MODE only support setting to 1 2 or 3.")
|
|
endif()
|
|
|
|
if(USE_PHYSICS_PHYSX)
|
|
if (ANDROID AND CMAKE_ANDROID_ARCH_ABI MATCHES x86)
|
|
set(USE_PHYSICS_PHYSX OFF)
|
|
message(AUTHOR_WARNING "Native PhysX does not support Google Android X86")
|
|
endif()
|
|
endif()
|
|
|
|
if(NOT USE_SOCKET)
|
|
set(USE_WEBSOCKET_SERVER OFF)
|
|
endif()
|
|
|
|
if(OPENHARMONY AND OHOS)
|
|
set(CC_USE_GLES2 OFF)
|
|
endif()
|
|
|
|
## disable videoplay on non-mobile platforms
|
|
if(NOT ANDROID AND NOT IOS AND NOT OHOS AND NOT OPENHARMONY)
|
|
set(USE_VIDEO OFF)
|
|
set(USE_WEBVIEW OFF)
|
|
endif()
|
|
|
|
## disable middleware when dragonbones and spine are disabled
|
|
if(NOT USE_DRAGONBONES AND NOT USE_SPINE)
|
|
set(USE_MIDDLEWARE OFF)
|
|
endif()
|
|
|
|
if(USE_DRAGONBONES OR USE_SPINE)
|
|
set(USE_MIDDLEWARE ON)
|
|
endif()
|
|
|
|
if(USE_JOB_SYSTEM_TASKFLOW AND USE_JOB_SYSTEM_TBB)
|
|
set(USE_JOB_SYSTEM_TASKFLOW ON)
|
|
set(USE_JOB_SYSTEM_TBB OFF)
|
|
endif()
|
|
|
|
if(OHOS AND USE_JOB_SYSTEM_TBB)
|
|
message(WARNING "JobSystem tbb is not supported by HarmonyOS")
|
|
set(USE_JOB_SYSTEM_TBB OFF)
|
|
endif()
|
|
|
|
if(USE_JOB_SYSTEM_TASKFLOW)
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
if(IOS AND "${TARGET_IOS_VERSION}" VERSION_LESS "12.0")
|
|
message(FATAL_ERROR "Target iOS version requires 12.0+ when enable taskflow")
|
|
endif()
|
|
endif()
|
|
|
|
if(ANDROID)
|
|
if(USE_CCACHE AND NOT CCACHE_EXECUTABLE)
|
|
message(AUTHOR_WARNING "ccache executable not found!")
|
|
endif()
|
|
if(CCACHE_EXECUTABLE AND USE_CCACHE)
|
|
set(CMAKE_C_COMPILER_LAUNCHER "${CCACHE_EXECUTABLE}")
|
|
set(CMAKE_CXX_COMPILER_LAUNCHER "${CCACHE_EXECUTABLE}")
|
|
endif()
|
|
endif()
|
|
|
|
if(CI_FORCE_MINIMAL_FEATURES)
|
|
set(USE_V8_DEBUGGER_FORCE OFF)
|
|
set(USE_V8_DEBUGGER OFF)
|
|
set(USE_AUDIO OFF)
|
|
set(USE_EDIT_BOX OFF)
|
|
set(USE_VIDEO OFF)
|
|
set(USE_WEBVIEW OFF)
|
|
set(USE_MIDDLEWARE OFF)
|
|
set(USE_DRAGONBONES OFF)
|
|
set(USE_SPINE OFF)
|
|
set(USE_SOCKET OFF)
|
|
set(USE_WEBSOCKET_SERVER OFF)
|
|
set(USE_PHYSICS_PHYSX OFF)
|
|
set(USE_JOB_SYSTEM_TBB OFF)
|
|
set(USE_JOB_SYSTEM_TASKFLOW OFF)
|
|
set(USE_PLUGINS OFF)
|
|
set(USE_OCCLUSION_QUERY OFF)
|
|
set(USE_DEBUG_RENDERER OFF)
|
|
set(USE_GEOMETRY_RENDERER OFF)
|
|
set(USE_WEBP OFF)
|
|
endif()
|
|
|
|
################################# external source code ################################
|
|
set(EXTERNAL_ROOT ${CMAKE_CURRENT_LIST_DIR}/external)
|
|
set(USE_BUILTIN_EXTERNAL OFF)
|
|
if(NOT EXISTS ${EXTERNAL_ROOT}/CMakeLists.txt)
|
|
if(DEFINED BUILTIN_COCOS_X_PATH)
|
|
set(EXTERNAL_ROOT ${BUILTIN_COCOS_X_PATH}/external)
|
|
set(USE_BUILTIN_EXTERNAL ON)
|
|
message(AUTHOR_WARNING "Directory 'external' not found in '${CMAKE_CURRENT_LIST_DIR}', use builtin directory '${BUILTIN_COCOS_X_PATH}' instead!")
|
|
else()
|
|
message(FATAL_ERROR "Please download external libraries! File ${CMAKE_CURRENT_LIST_DIR}/external/CMakeLists.txt not exist!")
|
|
endif()
|
|
endif()
|
|
|
|
include_directories(${EXTERNAL_ROOT}/sources)
|
|
|
|
################################# list all option values ##############################
|
|
|
|
cc_inspect_values(
|
|
BUILTIN_COCOS_X_PATH
|
|
USE_BUILTIN_EXTERNAL
|
|
USE_MODULES
|
|
CC_USE_METAL
|
|
CC_USE_GLES3
|
|
CC_USE_GLES2
|
|
CC_USE_VULKAN
|
|
CC_DEBUG_FORCE
|
|
USE_SE_V8
|
|
USE_V8_DEBUGGER
|
|
USE_V8_DEBUGGER_FORCE
|
|
USE_SE_SM
|
|
USE_SOCKET
|
|
USE_AUDIO
|
|
USE_EDIT_BOX
|
|
USE_VIDEO
|
|
USE_WEBVIEW
|
|
USE_MIDDLEWARE
|
|
USE_DRAGONBONES
|
|
USE_SPINE
|
|
USE_WEBSOCKET_SERVER
|
|
USE_PHYSICS_PHYSX
|
|
USE_JOB_SYSTEM_TBB
|
|
USE_JOB_SYSTEM_TASKFLOW
|
|
USE_XR
|
|
USE_SERVER_MODE
|
|
USE_AR_MODULE
|
|
USE_AR_AUTO
|
|
USE_AR_CORE
|
|
USE_AR_ENGINE
|
|
USE_CCACHE
|
|
CCACHE_EXECUTABLE
|
|
NODE_EXECUTABLE
|
|
NET_MODE
|
|
USE_REMOTE_LOG
|
|
)
|
|
|
|
if(USE_XR)
|
|
if(USE_XR_REMOTE_PREVIEW)
|
|
set(USE_WEBSOCKET_SERVER ON)
|
|
endif()
|
|
endif()
|
|
|
|
include(${EXTERNAL_ROOT}/CMakeLists.txt)
|
|
|
|
##### audio
|
|
if(USE_AUDIO)
|
|
cocos_source_files(
|
|
cocos/audio/AudioEngine.cpp
|
|
cocos/audio/include/AudioEngine.h
|
|
cocos/audio/include/AudioDef.h
|
|
cocos/audio/include/Export.h
|
|
)
|
|
if(WINDOWS)
|
|
cocos_source_files(
|
|
cocos/audio/common/utils/tinysndfile.cpp
|
|
NO_WERROR cocos/audio/common/utils/primitives.cpp
|
|
cocos/audio/common/utils/include/tinysndfile.h
|
|
cocos/audio/common/utils/include/primitives.h
|
|
cocos/audio/common/utils/private/private.h
|
|
cocos/audio/common/decoder/AudioDecoder.cpp
|
|
cocos/audio/common/decoder/AudioDecoder.h
|
|
cocos/audio/common/decoder/AudioDecoderManager.cpp
|
|
cocos/audio/common/decoder/AudioDecoderManager.h
|
|
cocos/audio/common/decoder/AudioDecoderMp3.cpp
|
|
cocos/audio/common/decoder/AudioDecoderMp3.h
|
|
cocos/audio/common/decoder/AudioDecoderOgg.cpp
|
|
cocos/audio/common/decoder/AudioDecoderOgg.h
|
|
cocos/audio/common/decoder/AudioDecoderWav.cpp
|
|
cocos/audio/common/decoder/AudioDecoderWav.h
|
|
cocos/audio/oalsoft/AudioCache.cpp
|
|
cocos/audio/oalsoft/AudioCache.h
|
|
cocos/audio/oalsoft/AudioEngine-soft.cpp
|
|
cocos/audio/oalsoft/AudioEngine-soft.h
|
|
cocos/audio/include/AudioMacros.h
|
|
cocos/audio/oalsoft/AudioPlayer.cpp
|
|
cocos/audio/oalsoft/AudioPlayer.h
|
|
)
|
|
elseif(LINUX OR QNX)
|
|
cocos_source_files(
|
|
cocos/audio/common/decoder/AudioDecoder.cpp
|
|
cocos/audio/common/decoder/AudioDecoder.h
|
|
cocos/audio/common/decoder/AudioDecoderManager.cpp
|
|
cocos/audio/common/decoder/AudioDecoderManager.h
|
|
cocos/audio/common/decoder/AudioDecoderMp3.cpp
|
|
cocos/audio/common/decoder/AudioDecoderMp3.h
|
|
cocos/audio/common/decoder/AudioDecoderOgg.cpp
|
|
cocos/audio/common/decoder/AudioDecoderOgg.h
|
|
cocos/audio/oalsoft/AudioCache.cpp
|
|
cocos/audio/oalsoft/AudioCache.h
|
|
cocos/audio/oalsoft/AudioEngine-soft.cpp
|
|
cocos/audio/oalsoft/AudioEngine-soft.h
|
|
cocos/audio/include/AudioMacros.h
|
|
cocos/audio/oalsoft/AudioPlayer.cpp
|
|
cocos/audio/oalsoft/AudioPlayer.h
|
|
)
|
|
elseif(ANDROID OR OPENHARMONY)
|
|
cocos_source_files(
|
|
cocos/audio/common/utils/include/primitives.h
|
|
cocos/audio/common/utils/include/format.h
|
|
cocos/audio/common/utils/include/minifloat.h
|
|
cocos/audio/common/utils/include/tinysndfile.h
|
|
cocos/audio/common/utils/private/private.h
|
|
cocos/audio/common/utils/minifloat.cpp
|
|
cocos/audio/common/utils/primitives.cpp
|
|
cocos/audio/common/utils/tinysndfile.cpp
|
|
cocos/audio/common/utils/format.cpp
|
|
cocos/audio/android/AssetFd.cpp
|
|
cocos/audio/android/AssetFd.h
|
|
cocos/audio/android/audio.h
|
|
cocos/audio/android/AudioBufferProvider.h
|
|
cocos/audio/android/AudioDecoder.cpp
|
|
cocos/audio/android/AudioDecoder.h
|
|
cocos/audio/android/AudioDecoderMp3.cpp
|
|
cocos/audio/android/AudioDecoderMp3.h
|
|
cocos/audio/android/AudioDecoderOgg.cpp
|
|
cocos/audio/android/AudioDecoderOgg.h
|
|
cocos/audio/android/AudioDecoderProvider.cpp
|
|
cocos/audio/android/AudioDecoderProvider.h
|
|
cocos/audio/android/AudioDecoderSLES.cpp
|
|
cocos/audio/android/AudioDecoderSLES.h
|
|
cocos/audio/android/AudioDecoderWav.cpp
|
|
cocos/audio/android/AudioDecoderWav.h
|
|
cocos/audio/android/AudioEngine-inl.cpp
|
|
cocos/audio/android/AudioEngine-inl.h
|
|
cocos/audio/android/AudioMixer.cpp
|
|
cocos/audio/android/AudioMixer.h
|
|
cocos/audio/android/AudioMixerController.cpp
|
|
cocos/audio/android/AudioMixerController.h
|
|
cocos/audio/android/AudioMixerOps.h
|
|
cocos/audio/android/AudioPlayerProvider.cpp
|
|
cocos/audio/android/AudioPlayerProvider.h
|
|
cocos/audio/android/AudioResampler.cpp
|
|
cocos/audio/android/AudioResampler.h
|
|
cocos/audio/android/AudioResamplerCubic.cpp
|
|
cocos/audio/android/AudioResamplerCubic.h
|
|
cocos/audio/android/AudioResamplerPublic.h
|
|
cocos/audio/android/cutils/bitops.h
|
|
cocos/audio/android/cutils/log.h
|
|
cocos/audio/android/IAudioPlayer.h
|
|
cocos/audio/android/ICallerThreadUtils.h
|
|
cocos/audio/android/IVolumeProvider.h
|
|
cocos/audio/android/mp3reader.cpp
|
|
cocos/audio/android/mp3reader.h
|
|
cocos/audio/android/OpenSLHelper.h
|
|
cocos/audio/android/PcmAudioPlayer.cpp
|
|
cocos/audio/android/PcmAudioPlayer.h
|
|
cocos/audio/android/PcmAudioService.cpp
|
|
cocos/audio/android/PcmAudioService.h
|
|
cocos/audio/android/PcmBufferProvider.cpp
|
|
cocos/audio/android/PcmBufferProvider.h
|
|
cocos/audio/android/PcmData.cpp
|
|
cocos/audio/android/PcmData.h
|
|
cocos/audio/android/Track.cpp
|
|
cocos/audio/android/Track.h
|
|
cocos/audio/android/UrlAudioPlayer.cpp
|
|
cocos/audio/android/UrlAudioPlayer.h
|
|
cocos/audio/android/utils/Compat.h
|
|
cocos/audio/android/utils/Errors.h
|
|
cocos/audio/android/utils/Utils.cpp
|
|
cocos/audio/android/utils/Utils.h
|
|
)
|
|
elseif(OHOS)
|
|
cocos_source_files(
|
|
cocos/audio/common/utils/tinysndfile.cpp
|
|
cocos/audio/common/utils/primitives.cpp
|
|
cocos/audio/common/utils/include/tinysndfile.h
|
|
cocos/audio/common/utils/include/primitives.h
|
|
cocos/audio/common/decoder/AudioDecoder.cpp
|
|
cocos/audio/common/decoder/AudioDecoder.h
|
|
cocos/audio/common/decoder/AudioDecoderManager.cpp
|
|
cocos/audio/common/decoder/AudioDecoderManager.h
|
|
cocos/audio/common/decoder/AudioDecoderMp3.cpp
|
|
cocos/audio/common/decoder/AudioDecoderMp3.h
|
|
cocos/audio/common/decoder/AudioDecoderOgg.cpp
|
|
cocos/audio/common/decoder/AudioDecoderOgg.h
|
|
cocos/audio/common/decoder/AudioDecoderWav.cpp
|
|
cocos/audio/common/decoder/AudioDecoderWav.h
|
|
cocos/audio/oalsoft/AudioCache.cpp
|
|
cocos/audio/oalsoft/AudioCache.h
|
|
cocos/audio/oalsoft/AudioEngine-soft.cpp
|
|
cocos/audio/oalsoft/AudioEngine-soft.h
|
|
cocos/audio/include/AudioMacros.h
|
|
cocos/audio/oalsoft/AudioPlayer.cpp
|
|
cocos/audio/oalsoft/AudioPlayer.h
|
|
cocos/audio/ohos/FsCallback.h
|
|
cocos/audio/ohos/FsCallback.cpp
|
|
)
|
|
elseif(APPLE)
|
|
cocos_source_files(
|
|
cocos/audio/apple/AudioDecoder.h
|
|
NO_WERROR NO_UBUILD cocos/audio/apple/AudioPlayer.mm
|
|
NO_WERROR NO_UBUILD cocos/audio/apple/AudioDecoder.mm
|
|
cocos/audio/apple/AudioPlayer.h
|
|
NO_WERROR NO_UBUILD cocos/audio/apple/AudioEngine-inl.mm
|
|
cocos/audio/apple/AudioMacros.h
|
|
NO_WERROR NO_UBUILD cocos/audio/apple/AudioCache.mm
|
|
cocos/audio/apple/AudioCache.h
|
|
cocos/audio/apple/AudioEngine-inl.h
|
|
)
|
|
endif()
|
|
|
|
endif()
|
|
|
|
##### plugins
|
|
cocos_source_files(
|
|
cocos/plugins/Plugins.h
|
|
cocos/plugins/Plugins.cpp
|
|
cocos/plugins/bus/BusTypes.h
|
|
cocos/plugins/bus/EventBus.h
|
|
cocos/plugins/bus/EventBus.cpp
|
|
)
|
|
|
|
cocos_source_files(
|
|
cocos/core/event/Event.h
|
|
cocos/core/event/EventBus.h
|
|
cocos/core/event/EventBus.cpp
|
|
cocos/core/event/EventTarget.h
|
|
cocos/core/event/intl/EventIntl.h
|
|
cocos/core/event/intl/List.h
|
|
cocos/core/event/intl/EventTargetMacros.h
|
|
cocos/core/event/intl/EventBusMacros.h
|
|
)
|
|
|
|
##### base
|
|
cocos_source_files(
|
|
cocos/base/Agent.h
|
|
cocos/base/astc.cpp
|
|
cocos/base/astc.h
|
|
cocos/base/Compressed.h
|
|
cocos/base/Compressed.cpp
|
|
cocos/base/base64.cpp
|
|
cocos/base/base64.h
|
|
cocos/base/Config.h
|
|
cocos/base/csscolorparser.cpp
|
|
cocos/base/csscolorparser.h
|
|
cocos/base/DeferredReleasePool.cpp
|
|
cocos/base/DeferredReleasePool.h
|
|
cocos/base/etc1.cpp
|
|
cocos/base/etc1.h
|
|
cocos/base/etc2.cpp
|
|
cocos/base/etc2.h
|
|
cocos/base/HasMemberFunction.h
|
|
cocos/base/IndexHandle.h
|
|
cocos/base/Locked.h
|
|
cocos/base/Macros.h
|
|
cocos/base/Assertf.h
|
|
cocos/base/Object.h
|
|
cocos/base/Ptr.h
|
|
cocos/base/Random.h
|
|
cocos/base/RefCounted.cpp
|
|
cocos/base/RefCounted.h
|
|
cocos/base/RefMap.h
|
|
cocos/base/RefVector.h
|
|
cocos/base/Scheduler.cpp
|
|
cocos/base/Scheduler.h
|
|
cocos/base/StringHandle.cpp
|
|
cocos/base/StringHandle.h
|
|
cocos/base/StringPool.h
|
|
cocos/base/StringUtil.cpp
|
|
cocos/base/StringUtil.h
|
|
cocos/base/TemplateUtils.h
|
|
cocos/base/ThreadPool.cpp
|
|
cocos/base/ThreadPool.h
|
|
cocos/base/TypeDef.h
|
|
cocos/base/BinaryArchive.cpp
|
|
cocos/base/BinaryArchive.h
|
|
cocos/base/std/any.h
|
|
cocos/base/std/optional.h
|
|
cocos/base/std/variant.h
|
|
cocos/base/std/container/array.h
|
|
cocos/base/std/container/deque.h
|
|
cocos/base/std/container/list.h
|
|
cocos/base/std/container/map.h
|
|
cocos/base/std/container/queue.h
|
|
cocos/base/std/container/set.h
|
|
cocos/base/std/container/string.h
|
|
cocos/base/std/container/unordered_map.h
|
|
cocos/base/std/container/unordered_set.h
|
|
cocos/base/std/container/vector.h
|
|
cocos/base/std/hash/detail/float_functions.hpp
|
|
cocos/base/std/hash/detail/hash_float.hpp
|
|
cocos/base/std/hash/detail/limits.hpp
|
|
cocos/base/std/hash/extensions.hpp
|
|
cocos/base/std/hash/hash_fwd.hpp
|
|
cocos/base/std/hash/hash.h
|
|
)
|
|
|
|
############ application
|
|
cocos_source_files(
|
|
cocos/application/BaseApplication.h
|
|
cocos/application/CocosApplication.h
|
|
cocos/application/CocosApplication.cpp
|
|
cocos/application/ApplicationManager.h
|
|
cocos/application/ApplicationManager.cpp
|
|
cocos/application/BaseGame.h
|
|
cocos/application/BaseGame.cpp
|
|
)
|
|
|
|
############ engine
|
|
cocos_source_files(
|
|
cocos/engine/BaseEngine.cpp
|
|
cocos/engine/BaseEngine.h
|
|
cocos/engine/Engine.cpp
|
|
cocos/engine/Engine.h
|
|
)
|
|
|
|
############ gi
|
|
cocos_source_files(
|
|
cocos/gi/light-probe/AutoPlacement.cpp
|
|
cocos/gi/light-probe/AutoPlacement.h
|
|
cocos/gi/light-probe/Delaunay.cpp
|
|
cocos/gi/light-probe/Delaunay.h
|
|
cocos/gi/light-probe/LightProbe.cpp
|
|
cocos/gi/light-probe/LightProbe.h
|
|
cocos/gi/light-probe/PolynomialSolver.cpp
|
|
cocos/gi/light-probe/PolynomialSolver.h
|
|
cocos/gi/light-probe/SH.cpp
|
|
cocos/gi/light-probe/SH.h
|
|
cocos/gi/light-probe/tetgen.cpp
|
|
cocos/gi/light-probe/tetgen.h
|
|
cocos/gi/light-probe/predicates.cpp
|
|
)
|
|
|
|
############ main
|
|
if(NOT USE_SERVER_MODE AND (WINDOWS OR LINUX OR MACOSX))
|
|
cocos_source_files(
|
|
cocos/platform/SDLHelper.h
|
|
cocos/platform/SDLHelper.cpp
|
|
)
|
|
endif()
|
|
|
|
############ platform
|
|
cocos_source_files(
|
|
cocos/platform/BasePlatform.cpp
|
|
cocos/platform/BasePlatform.h
|
|
cocos/platform/UniversalPlatform.cpp
|
|
cocos/platform/UniversalPlatform.h
|
|
)
|
|
if(WINDOWS)
|
|
cocos_source_files(
|
|
cocos/platform/win32/WindowsPlatform.cpp
|
|
cocos/platform/win32/WindowsPlatform.h
|
|
)
|
|
elseif(LINUX)
|
|
cocos_source_files(
|
|
cocos/platform/linux/LinuxPlatform.cpp
|
|
cocos/platform/linux/LinuxPlatform.h
|
|
)
|
|
elseif(ANDROID)
|
|
cocos_source_files(
|
|
cocos/platform/android/AndroidPlatform.cpp
|
|
cocos/platform/android/AndroidPlatform.h
|
|
cocos/platform/android/AndroidKeyCodes.cpp
|
|
cocos/platform/android/adpf_manager.h
|
|
cocos/platform/android/adpf_manager.cpp
|
|
)
|
|
elseif(OPENHARMONY)
|
|
cocos_source_files(
|
|
cocos/platform/openharmony/napi/NapiHelper.cpp
|
|
cocos/platform/openharmony/napi/NapiHelper.h
|
|
|
|
cocos/platform/openharmony/WorkerMessageQueue.cpp
|
|
cocos/platform/openharmony/WorkerMessageQueue.h
|
|
cocos/platform/openharmony/OpenHarmonyPlatform.cpp
|
|
cocos/platform/openharmony/OpenHarmonyPlatform.h
|
|
)
|
|
elseif(OHOS)
|
|
cocos_source_files(
|
|
cocos/platform/ohos/OhosPlatform.cpp
|
|
cocos/platform/ohos/OhosPlatform.h
|
|
)
|
|
elseif(MACOSX)
|
|
cocos_source_files(
|
|
cocos/platform/mac/MacPlatform.mm
|
|
cocos/platform/mac/MacPlatform.h
|
|
cocos/platform/mac/AppDelegate.h
|
|
cocos/platform/mac/AppDelegate.mm
|
|
)
|
|
elseif(IOS)
|
|
cocos_source_files(
|
|
cocos/platform/ios/IOSPlatform.mm
|
|
cocos/platform/ios/IOSPlatform.h
|
|
cocos/platform/ios/AppDelegateBridge.mm
|
|
cocos/platform/ios/AppDelegateBridge.h
|
|
)
|
|
endif()
|
|
|
|
############ platform : Abstract interface
|
|
cocos_source_files(
|
|
cocos/platform/interfaces/OSInterface.h
|
|
)
|
|
|
|
############ platform : Interface definition
|
|
if(NOT OPENHARMONY)
|
|
cocos_source_files(
|
|
cocos/platform/interfaces/modules/Device.cpp
|
|
cocos/platform/interfaces/modules/Device.h
|
|
cocos/platform/interfaces/modules/IAccelerometer.h
|
|
cocos/platform/interfaces/modules/IBattery.h
|
|
cocos/platform/interfaces/modules/IScreen.h
|
|
cocos/platform/interfaces/modules/INetwork.h
|
|
cocos/platform/interfaces/modules/ISystem.cpp
|
|
cocos/platform/interfaces/modules/ISystem.h
|
|
cocos/platform/interfaces/modules/ISystemWindow.h
|
|
cocos/platform/interfaces/modules/ISystemWindowManager.h
|
|
cocos/platform/interfaces/modules/IVibrator.h
|
|
cocos/platform/interfaces/modules/XRCommon.h
|
|
cocos/platform/interfaces/modules/IXRInterface.h
|
|
)
|
|
elseif(OPENHARMONY)
|
|
cocos_source_files(
|
|
cocos/platform/interfaces/modules/ISystem.h
|
|
cocos/platform/interfaces/modules/ISystem.cpp
|
|
cocos/platform/interfaces/modules/ISystemWindow.h
|
|
cocos/platform/interfaces/modules/Device.cpp
|
|
cocos/platform/interfaces/modules/Device.h
|
|
cocos/platform/interfaces/modules/IScreen.h
|
|
)
|
|
endif()
|
|
|
|
cocos_source_files(
|
|
cocos/platform/interfaces/modules/canvas/CanvasRenderingContext2D.cpp
|
|
cocos/platform/interfaces/modules/canvas/CanvasRenderingContext2D.h
|
|
cocos/platform/interfaces/modules/canvas/ICanvasRenderingContext2D.h
|
|
)
|
|
if(USE_SERVER_MODE)
|
|
cocos_source_files(
|
|
cocos/platform/empty/modules/CanvasRenderingContext2DDelegate.cpp
|
|
cocos/platform/empty/modules/CanvasRenderingContext2DDelegate.h
|
|
)
|
|
elseif(WINDOWS)
|
|
cocos_source_files(
|
|
cocos/platform/win32/modules/CanvasRenderingContext2DDelegate.cpp
|
|
cocos/platform/win32/modules/CanvasRenderingContext2DDelegate.h
|
|
)
|
|
elseif(OPENHARMONY)
|
|
cocos_source_files(
|
|
cocos/platform/openharmony/modules/CanvasRenderingContext2DDelegate.cpp
|
|
cocos/platform/openharmony/modules/CanvasRenderingContext2DDelegate.h
|
|
)
|
|
elseif(ANDROID OR OHOS)
|
|
cocos_source_files(
|
|
cocos/platform/java/modules/CanvasRenderingContext2DDelegate.cpp
|
|
cocos/platform/java/modules/CanvasRenderingContext2DDelegate.h
|
|
)
|
|
elseif(MACOSX OR IOS)
|
|
cocos_source_files(
|
|
cocos/platform/apple/modules/CanvasRenderingContext2DDelegate.mm
|
|
cocos/platform/apple/modules/CanvasRenderingContext2DDelegate.h
|
|
)
|
|
elseif(LINUX)
|
|
cocos_source_files(
|
|
cocos/platform/linux/modules/CanvasRenderingContext2DDelegate.cpp
|
|
cocos/platform/linux/modules/CanvasRenderingContext2DDelegate.h
|
|
)
|
|
endif()
|
|
|
|
############ platform : Interface implementation of windows
|
|
|
|
if(WINDOWS)
|
|
cocos_source_files(
|
|
cocos/platform/win32/modules/Accelerometer.cpp
|
|
cocos/platform/win32/modules/Accelerometer.h
|
|
cocos/platform/win32/modules/Battery.cpp
|
|
cocos/platform/win32/modules/Battery.h
|
|
cocos/platform/win32/modules/Network.cpp
|
|
cocos/platform/win32/modules/Network.h
|
|
cocos/platform/win32/modules/Vibrator.cpp
|
|
cocos/platform/win32/modules/Vibrator.h
|
|
cocos/platform/win32/modules/System.cpp
|
|
cocos/platform/win32/modules/System.h
|
|
)
|
|
if(USE_SERVER_MODE)
|
|
cocos_source_files(
|
|
cocos/platform/empty/modules/Screen.cpp
|
|
cocos/platform/empty/modules/Screen.h
|
|
cocos/platform/empty/modules/SystemWindow.cpp
|
|
cocos/platform/empty/modules/SystemWindow.h
|
|
cocos/platform/empty/modules/SystemWindowManager.cpp
|
|
cocos/platform/empty/modules/SystemWindowManager.h
|
|
)
|
|
else()
|
|
cocos_source_files(
|
|
cocos/platform/win32/modules/Screen.cpp
|
|
cocos/platform/win32/modules/Screen.h
|
|
cocos/platform/win32/modules/SystemWindow.cpp
|
|
cocos/platform/win32/modules/SystemWindow.h
|
|
cocos/platform/win32/modules/SystemWindowManager.cpp
|
|
cocos/platform/win32/modules/SystemWindowManager.h
|
|
)
|
|
endif()
|
|
elseif(OPENHARMONY)
|
|
cocos_source_files(
|
|
cocos/platform/openharmony/modules/System.cpp
|
|
cocos/platform/openharmony/modules/System.h
|
|
cocos/platform/openharmony/modules/SystemWindow.cpp
|
|
cocos/platform/openharmony/modules/SystemWindow.h
|
|
cocos/platform/openharmony/modules/Screen.cpp
|
|
cocos/platform/openharmony/modules/Screen.h
|
|
cocos/platform/openharmony/modules/Accelerometer.cpp
|
|
cocos/platform/openharmony/modules/Accelerometer.h
|
|
cocos/platform/openharmony/modules/Battery.cpp
|
|
cocos/platform/openharmony/modules/Battery.h
|
|
cocos/platform/openharmony/modules/System.cpp
|
|
cocos/platform/openharmony/modules/SystemWindow.cpp
|
|
cocos/platform/openharmony/modules/SystemWindowManager.h
|
|
cocos/platform/openharmony/modules/SystemWindowManager.cpp
|
|
cocos/platform/empty/modules/Network.cpp
|
|
cocos/platform/empty/modules/Network.h
|
|
cocos/platform/empty/modules/Vibrator.cpp
|
|
cocos/platform/empty/modules/Vibrator.h
|
|
)
|
|
elseif(ANDROID OR OHOS)
|
|
cocos_source_files(
|
|
cocos/platform/java/modules/Accelerometer.cpp
|
|
cocos/platform/java/modules/Accelerometer.h
|
|
cocos/platform/java/modules/Battery.cpp
|
|
cocos/platform/java/modules/Battery.h
|
|
cocos/platform/java/modules/CommonScreen.cpp
|
|
cocos/platform/java/modules/CommonScreen.h
|
|
cocos/platform/java/modules/Network.cpp
|
|
cocos/platform/java/modules/Network.h
|
|
cocos/platform/java/modules/Vibrator.cpp
|
|
cocos/platform/java/modules/Vibrator.h
|
|
cocos/platform/java/modules/CommonSystem.cpp
|
|
cocos/platform/java/modules/CommonSystem.h
|
|
cocos/platform/java/modules/SystemWindow.cpp
|
|
cocos/platform/java/modules/SystemWindow.h
|
|
cocos/platform/java/modules/SystemWindowManager.cpp
|
|
cocos/platform/java/modules/SystemWindowManager.h
|
|
)
|
|
|
|
if(USE_XR)
|
|
cocos_source_files(
|
|
cocos/platform/java/modules/XRInterface.cpp
|
|
cocos/platform/java/modules/XRInterface.h
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
if(ANDROID)
|
|
cocos_source_files(
|
|
cocos/platform/android/modules/Screen.cpp
|
|
cocos/platform/android/modules/Screen.h
|
|
cocos/platform/android/modules/System.cpp
|
|
cocos/platform/android/modules/System.h
|
|
)
|
|
elseif(OPENHARMONY)
|
|
# Because there will be a definition of OHOS in harmonyos, it is necessary to define the macro of OPENHARMONY.
|
|
elseif(OHOS)
|
|
cocos_source_files(
|
|
cocos/platform/ohos/modules/Screen.cpp
|
|
cocos/platform/ohos/modules/Screen.h
|
|
cocos/platform/ohos/modules/System.cpp
|
|
cocos/platform/ohos/modules/System.h
|
|
)
|
|
elseif(MACOSX)
|
|
cocos_source_files(
|
|
NO_WERROR cocos/platform/mac/modules/Accelerometer.mm
|
|
cocos/platform/mac/modules/Accelerometer.h
|
|
cocos/platform/mac/modules/Battery.mm
|
|
cocos/platform/mac/modules/Battery.h
|
|
cocos/platform/mac/modules/Network.mm
|
|
cocos/platform/mac/modules/Network.h
|
|
cocos/platform/mac/modules/Vibrator.mm
|
|
cocos/platform/mac/modules/Vibrator.h
|
|
cocos/platform/mac/modules/System.mm
|
|
cocos/platform/mac/modules/System.h
|
|
)
|
|
if(USE_SERVER_MODE)
|
|
cocos_source_files(
|
|
cocos/platform/empty/modules/Screen.cpp
|
|
cocos/platform/empty/modules/Screen.h
|
|
cocos/platform/empty/modules/SystemWindow.cpp
|
|
cocos/platform/empty/modules/SystemWindow.h
|
|
cocos/platform/empty/modules/SystemWindowManager.cpp
|
|
cocos/platform/empty/modules/SystemWindowManager.h
|
|
)
|
|
else()
|
|
cocos_source_files(
|
|
NO_WERROR NO_UBUILD cocos/platform/mac/modules/Screen.mm
|
|
cocos/platform/mac/modules/Screen.h
|
|
cocos/platform/mac/modules/SystemWindow.mm
|
|
cocos/platform/mac/modules/SystemWindow.h
|
|
cocos/platform/mac/modules/SystemWindowManager.mm
|
|
cocos/platform/mac/modules/SystemWindowManager.h
|
|
)
|
|
endif()
|
|
elseif(IOS)
|
|
cocos_source_files(
|
|
NO_WERROR NO_UBUILD cocos/platform/ios/modules/Accelerometer.mm
|
|
cocos/platform/ios/modules/Accelerometer.h
|
|
cocos/platform/ios/modules/Battery.mm
|
|
cocos/platform/ios/modules/Battery.h
|
|
NO_WERROR NO_UBUILD cocos/platform/ios/modules/Screen.mm
|
|
cocos/platform/ios/modules/Screen.h
|
|
cocos/platform/ios/modules/Network.mm
|
|
cocos/platform/ios/modules/Network.h
|
|
cocos/platform/ios/modules/Vibrator.mm
|
|
cocos/platform/ios/modules/Vibrator.h
|
|
cocos/platform/ios/modules/System.mm
|
|
cocos/platform/ios/modules/System.h
|
|
cocos/platform/ios/modules/SystemWindow.mm
|
|
cocos/platform/ios/modules/SystemWindow.h
|
|
cocos/platform/ios/modules/SystemWindowManager.mm
|
|
cocos/platform/ios/modules/SystemWindowManager.h
|
|
)
|
|
elseif(LINUX)
|
|
cocos_source_files(
|
|
cocos/platform/linux/modules/Accelerometer.cpp
|
|
cocos/platform/linux/modules/Accelerometer.h
|
|
cocos/platform/linux/modules/Battery.cpp
|
|
cocos/platform/linux/modules/Battery.h
|
|
cocos/platform/linux/modules/Network.cpp
|
|
cocos/platform/linux/modules/Network.h
|
|
cocos/platform/linux/modules/Vibrator.cpp
|
|
cocos/platform/linux/modules/Vibrator.h
|
|
cocos/platform/linux/modules/System.cpp
|
|
cocos/platform/linux/modules/System.h
|
|
)
|
|
if(USE_SERVER_MODE)
|
|
cocos_source_files(
|
|
cocos/platform/empty/modules/Screen.cpp
|
|
cocos/platform/empty/modules/Screen.h
|
|
cocos/platform/empty/modules/SystemWindow.cpp
|
|
cocos/platform/empty/modules/SystemWindow.h
|
|
cocos/platform/empty/modules/SystemWindowManager.cpp
|
|
cocos/platform/empty/modules/SystemWindowManager.h
|
|
)
|
|
else()
|
|
cocos_source_files(
|
|
cocos/platform/linux/modules/Screen.cpp
|
|
cocos/platform/linux/modules/Screen.h
|
|
cocos/platform/linux/modules/SystemWindow.cpp
|
|
cocos/platform/linux/modules/SystemWindow.h
|
|
cocos/platform/linux/modules/SystemWindowManager.cpp
|
|
cocos/platform/linux/modules/SystemWindowManager.h
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
############ module log
|
|
cocos_source_files(MODULE cclog
|
|
cocos/base/Log.cpp
|
|
cocos/base/Log.h
|
|
)
|
|
|
|
cocos_source_files(MODULE cclog
|
|
cocos/base/LogRemote.cpp
|
|
)
|
|
|
|
############ module log
|
|
cocos_source_files(MODULE ccunzip
|
|
cocos/base/ZipUtils.cpp
|
|
cocos/base/ZipUtils.h
|
|
)
|
|
|
|
##### memory
|
|
cocos_source_files(
|
|
cocos/base/memory/Memory.h
|
|
cocos/base/memory/MemoryHook.cpp
|
|
cocos/base/memory/MemoryHook.h
|
|
cocos/base/memory/CallStack.cpp
|
|
cocos/base/memory/CallStack.h
|
|
)
|
|
|
|
##### threading
|
|
cocos_source_files(
|
|
cocos/base/threading/ConditionVariable.h
|
|
cocos/base/threading/ConditionVariable.cpp
|
|
cocos/base/threading/Event.h
|
|
cocos/base/threading/MessageQueue.h
|
|
cocos/base/threading/MessageQueue.cpp
|
|
cocos/base/threading/Semaphore.h
|
|
cocos/base/threading/Semaphore.cpp
|
|
cocos/base/threading/ThreadPool.h
|
|
cocos/base/threading/ThreadPool.cpp
|
|
cocos/base/threading/ThreadSafeCounter.h
|
|
cocos/base/threading/ThreadSafeLinearAllocator.h
|
|
cocos/base/threading/ThreadSafeLinearAllocator.cpp
|
|
)
|
|
if(APPLE)
|
|
cocos_source_files(
|
|
cocos/base/threading/AutoReleasePool.h
|
|
cocos/base/threading/AutoReleasePool-apple.mm
|
|
)
|
|
else()
|
|
cocos_source_files(
|
|
cocos/base/threading/AutoReleasePool.h
|
|
cocos/base/threading/AutoReleasePool.cpp
|
|
)
|
|
endif()
|
|
|
|
##### job system
|
|
cocos_source_files(
|
|
cocos/base/job-system/JobSystem.h
|
|
)
|
|
|
|
if(USE_JOB_SYSTEM_TASKFLOW)
|
|
cocos_source_files(
|
|
cocos/base/job-system/job-system-taskflow/TFJobGraph.h
|
|
cocos/base/job-system/job-system-taskflow/TFJobGraph.cpp
|
|
cocos/base/job-system/job-system-taskflow/TFJobSystem.h
|
|
cocos/base/job-system/job-system-taskflow/TFJobSystem.cpp
|
|
)
|
|
elseif(USE_JOB_SYSTEM_TBB)
|
|
cocos_source_files(
|
|
cocos/base/job-system/job-system-tbb/TBBJobGraph.h
|
|
cocos/base/job-system/job-system-tbb/TBBJobGraph.cpp
|
|
cocos/base/job-system/job-system-tbb/TBBJobSystem.h
|
|
cocos/base/job-system/job-system-tbb/TBBJobSystem.cpp
|
|
)
|
|
else()
|
|
cocos_source_files(
|
|
cocos/base/job-system/job-system-dummy/DummyJobGraph.h
|
|
cocos/base/job-system/job-system-dummy/DummyJobGraph.cpp
|
|
cocos/base/job-system/job-system-dummy/DummyJobSystem.h
|
|
cocos/base/job-system/job-system-dummy/DummyJobSystem.cpp
|
|
)
|
|
endif()
|
|
|
|
######### module math
|
|
cocos_source_files(MODULE ccmath
|
|
cocos/math/Utils.h
|
|
cocos/math/Utils.cpp
|
|
cocos/math/Geometry.cpp
|
|
cocos/math/Geometry.h
|
|
cocos/math/Color.cpp
|
|
cocos/math/Color.h
|
|
cocos/math/Math.h
|
|
cocos/math/Math.cpp
|
|
cocos/math/MathBase.h
|
|
cocos/math/Mat3.cpp
|
|
cocos/math/Mat3.h
|
|
cocos/math/Mat4.cpp
|
|
cocos/math/Mat4.h
|
|
cocos/math/Mat4.inl
|
|
cocos/math/MathUtil.cpp
|
|
cocos/math/MathUtil.h
|
|
cocos/math/MathUtil.inl
|
|
cocos/math/MathUtilNeon.inl
|
|
cocos/math/MathUtilNeon64.inl
|
|
cocos/math/MathUtilSSE.inl
|
|
cocos/math/Quaternion.cpp
|
|
cocos/math/Quaternion.h
|
|
cocos/math/Quaternion.inl
|
|
cocos/math/Vec2.cpp
|
|
cocos/math/Vec2.h
|
|
cocos/math/Vec2.inl
|
|
cocos/math/Vec3.cpp
|
|
cocos/math/Vec3.h
|
|
cocos/math/Vec3.inl
|
|
cocos/math/Vec4.cpp
|
|
cocos/math/Vec4.h
|
|
cocos/math/Vec4.inl
|
|
)
|
|
|
|
##### network
|
|
cocos_source_files(
|
|
cocos/network/Downloader.cpp
|
|
cocos/network/Downloader.h
|
|
cocos/network/DownloaderImpl.h
|
|
)
|
|
# The xmlhttprequest module of OpenHarmony is implemented in the ts layer
|
|
cocos_source_files(
|
|
cocos/network/HttpClient.h
|
|
cocos/network/HttpCookie.cpp
|
|
cocos/network/HttpCookie.h
|
|
cocos/network/HttpRequest.h
|
|
cocos/network/HttpResponse.h
|
|
cocos/network/Uri.cpp
|
|
cocos/network/Uri.h
|
|
)
|
|
|
|
if(USE_SOCKET)
|
|
cocos_source_files(
|
|
cocos/network/WebSocket.h
|
|
cocos/network/SocketIO.cpp
|
|
cocos/network/SocketIO.h
|
|
)
|
|
endif()
|
|
|
|
if(USE_WEBSOCKET_SERVER)
|
|
cocos_source_files(
|
|
cocos/network/WebSocketServer.h
|
|
cocos/network/WebSocketServer.cpp
|
|
)
|
|
endif()
|
|
|
|
if(APPLE)
|
|
cocos_source_files(
|
|
cocos/network/DownloaderImpl-apple.h
|
|
cocos/network/DownloaderImpl-apple.mm
|
|
cocos/network/HttpAsynConnection-apple.h
|
|
NO_WERROR NO_UBUILD cocos/network/HttpAsynConnection-apple.m
|
|
NO_UBUILD cocos/network/HttpClient-apple.mm
|
|
)
|
|
if(USE_SOCKET)
|
|
cocos_source_files(
|
|
cocos/network/WebSocket-apple.mm
|
|
)
|
|
set_source_files_properties(${CWD}/cocos/network/WebSocket-apple.mm PROPERTIES
|
|
COMPILE_FLAGS -fobjc-arc
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
if(ANDROID OR (NOT OPENHARMONY AND OHOS))
|
|
cocos_source_files(
|
|
cocos/network/Downloader-java.cpp
|
|
cocos/network/Downloader-java.h
|
|
cocos/network/HttpClient-java.cpp
|
|
)
|
|
endif()
|
|
|
|
if(NOT APPLE AND USE_SOCKET)
|
|
if(ANDROID)
|
|
cocos_source_files(
|
|
NO_WERROR cocos/network/WebSocket-okhttp.cpp
|
|
)
|
|
else()
|
|
cocos_source_files(
|
|
NO_WERROR cocos/network/WebSocket-libwebsockets.cpp
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
if(WINDOWS OR LINUX OR QNX OR OPENHARMONY)
|
|
cocos_source_files(
|
|
NO_WERROR cocos/network/Downloader-curl.cpp
|
|
cocos/network/Downloader-curl.h
|
|
)
|
|
endif()
|
|
|
|
if(WINDOWS OR MACOSX OR LINUX OR QNX OR OPENHARMONY)
|
|
cocos_source_files(
|
|
NO_WERROR NO_UBUILD cocos/network/HttpClient.cpp
|
|
)
|
|
endif()
|
|
|
|
set(SWIG_OUTPUT_ROOT ${CMAKE_CURRENT_BINARY_DIR}/generated)
|
|
set(SWIG_OUTPUT ${SWIG_OUTPUT_ROOT}/cocos/bindings/auto)
|
|
cc_gen_swig_files(${CMAKE_CURRENT_LIST_DIR}/tools/swig-config ${SWIG_OUTPUT})
|
|
|
|
|
|
##### platform
|
|
cocos_source_files(
|
|
cocos/platform/Image.cpp
|
|
cocos/platform/Image.h
|
|
cocos/platform/StdC.h
|
|
)
|
|
|
|
########## module utils
|
|
cocos_source_files(MODULE ccutils
|
|
cocos/base/Data.cpp
|
|
cocos/base/Data.h
|
|
cocos/base/Value.cpp
|
|
cocos/base/Value.h
|
|
cocos/base/UTF8.cpp
|
|
cocos/base/UTF8.h
|
|
cocos/platform/SAXParser.cpp
|
|
cocos/platform/SAXParser.h
|
|
cocos/base/Utils.cpp
|
|
cocos/base/Utils.h
|
|
cocos/base/Timer.cpp
|
|
cocos/base/Timer.h
|
|
)
|
|
|
|
########## module ccfilesystem
|
|
cocos_source_files(MODULE ccfilesystem
|
|
cocos/platform/FileUtils.cpp
|
|
cocos/platform/FileUtils.h
|
|
)
|
|
|
|
if(WINDOWS)
|
|
cocos_source_files(MODULE ccutils
|
|
cocos/platform/win32/Utils-win32.cpp
|
|
cocos/platform/win32/Utils-win32.h
|
|
)
|
|
endif()
|
|
|
|
if(WINDOWS)
|
|
cocos_source_files(
|
|
cocos/platform/win32/compat
|
|
cocos/platform/win32/compat/stdint.h
|
|
)
|
|
cocos_source_files(MODULE ccfilesystem
|
|
cocos/platform/win32/FileUtils-win32.cpp
|
|
cocos/platform/win32/FileUtils-win32.h
|
|
)
|
|
elseif(ANDROID)
|
|
set(CC_JNI_SRC_FILES
|
|
${CWD}/cocos/platform/android/jni/JniCocosSurfaceView.cpp
|
|
${CWD}/cocos/platform/android/jni/JniCocosEntry.cpp
|
|
${CWD}/cocos/platform/java/jni/JniCocosOrientationHelper.cpp
|
|
${CWD}/cocos/platform/java/jni/JniHelper.cpp
|
|
${CWD}/cocos/platform/java/jni/JniHelper.h
|
|
${CWD}/cocos/platform/java/jni/JniImp.cpp
|
|
${CWD}/cocos/platform/java/jni/JniImp.h
|
|
${CWD}/cocos/platform/java/jni/glue/MessagePipe.cpp
|
|
${CWD}/cocos/platform/java/jni/glue/MessagePipe.h
|
|
)
|
|
|
|
cocos_source_files(MODULE ccfilesystem
|
|
cocos/platform/android/FileUtils-android.cpp
|
|
cocos/platform/android/FileUtils-android.h
|
|
)
|
|
elseif(OPENHARMONY)
|
|
# Because there will be a definition of OHOS in harmonyos, it is necessary to define the macro of OPENHARMONY.
|
|
cocos_source_files(MODULE ccfilesystem
|
|
cocos/platform/openharmony/FileUtils-OpenHarmony.cpp
|
|
cocos/platform/openharmony/FileUtils-OpenHarmony.h
|
|
)
|
|
elseif(OHOS)
|
|
set(CC_JNI_SRC_FILES
|
|
${CWD}/cocos/platform/ohos/jni/JniCocosAbility.cpp
|
|
${CWD}/cocos/platform/ohos/jni/JniCocosAbility.h
|
|
${CWD}/cocos/platform/java/jni/JniHelper.cpp
|
|
${CWD}/cocos/platform/java/jni/JniHelper.h
|
|
${CWD}/cocos/platform/java/jni/JniImp.cpp
|
|
${CWD}/cocos/platform/java/jni/JniImp.h
|
|
${CWD}/cocos/platform/java/jni/JniCocosTouchHandler.cpp
|
|
${CWD}/cocos/platform/java/jni/JniCocosKeyCodeHandler.cpp
|
|
${CWD}/cocos/platform/java/jni/JniCocosOrientationHelper.cpp
|
|
${CWD}/cocos/platform/ohos/jni/AbilityConsts.h
|
|
${CWD}/cocos/platform/java/jni/glue/JniNativeGlue.cpp
|
|
${CWD}/cocos/platform/java/jni/glue/JniNativeGlue.h
|
|
${CWD}/cocos/platform/java/jni/glue/MessagePipe.cpp
|
|
${CWD}/cocos/platform/java/jni/glue/MessagePipe.h
|
|
)
|
|
cocos_source_files(MODULE ccfilesystem
|
|
cocos/platform/ohos/FileUtils-ohos.cpp
|
|
cocos/platform/ohos/FileUtils-ohos.h
|
|
)
|
|
elseif(APPLE)
|
|
cocos_source_files(
|
|
cocos/platform/apple/Reachability.h
|
|
cocos/platform/apple/Reachability.cpp
|
|
)
|
|
|
|
cocos_source_files(MODULE ccfilesystem
|
|
cocos/platform/apple/FileUtils-apple.h
|
|
cocos/platform/apple/FileUtils-apple.mm
|
|
)
|
|
if(MACOSX)
|
|
cocos_source_files(
|
|
cocos/platform/mac/View.h
|
|
cocos/platform/mac/View.mm
|
|
cocos/platform/mac/KeyCodeHelper.h
|
|
cocos/platform/mac/KeyCodeHelper.cpp
|
|
)
|
|
elseif(IOS)
|
|
cocos_source_files(
|
|
cocos/platform/ios/View.h
|
|
NO_WERROR NO_UBUILD cocos/platform/ios/View.mm # CAMetalLayer bug for apple
|
|
)
|
|
endif()
|
|
elseif(LINUX)
|
|
cocos_source_files(MODULE ccfilesystem
|
|
cocos/platform/linux/FileUtils-linux.cpp
|
|
cocos/platform/linux/FileUtils-linux.h
|
|
)
|
|
endif()
|
|
|
|
##### renderer
|
|
cocos_source_files(
|
|
cocos/renderer/core/PassUtils.h
|
|
cocos/renderer/core/PassUtils.cpp
|
|
cocos/renderer/core/ProgramLib.h
|
|
cocos/renderer/core/ProgramLib.cpp
|
|
cocos/renderer/core/ProgramUtils.h
|
|
cocos/renderer/core/ProgramUtils.cpp
|
|
cocos/renderer/core/MaterialInstance.h
|
|
cocos/renderer/core/MaterialInstance.cpp
|
|
cocos/renderer/core/PassInstance.h
|
|
cocos/renderer/core/PassInstance.cpp
|
|
cocos/renderer/core/TextureBufferPool.h
|
|
cocos/renderer/core/TextureBufferPool.cpp
|
|
|
|
cocos/renderer/GFXDeviceManager.h
|
|
|
|
cocos/renderer/gfx-base/SPIRVUtils.h
|
|
cocos/renderer/gfx-base/SPIRVUtils.cpp
|
|
cocos/renderer/gfx-base/GFXObject.h
|
|
cocos/renderer/gfx-base/GFXObject.cpp
|
|
cocos/renderer/gfx-base/GFXBarrier.cpp
|
|
cocos/renderer/gfx-base/GFXBarrier.h
|
|
cocos/renderer/gfx-base/GFXBuffer.cpp
|
|
cocos/renderer/gfx-base/GFXBuffer.h
|
|
cocos/renderer/gfx-base/GFXCommandBuffer.cpp
|
|
cocos/renderer/gfx-base/GFXCommandBuffer.h
|
|
cocos/renderer/gfx-base/GFXDef.cpp
|
|
cocos/renderer/gfx-base/GFXDef.h
|
|
cocos/renderer/gfx-base/GFXDef-common.h
|
|
cocos/renderer/gfx-base/GFXDevice.cpp
|
|
cocos/renderer/gfx-base/GFXDevice.h
|
|
cocos/renderer/gfx-base/GFXFramebuffer.cpp
|
|
cocos/renderer/gfx-base/GFXFramebuffer.h
|
|
cocos/renderer/gfx-base/GFXInputAssembler.cpp
|
|
cocos/renderer/gfx-base/GFXInputAssembler.h
|
|
cocos/renderer/gfx-base/GFXDescriptorSet.cpp
|
|
cocos/renderer/gfx-base/GFXDescriptorSet.h
|
|
cocos/renderer/gfx-base/GFXDescriptorSetLayout.cpp
|
|
cocos/renderer/gfx-base/GFXDescriptorSetLayout.h
|
|
cocos/renderer/gfx-base/GFXPipelineLayout.cpp
|
|
cocos/renderer/gfx-base/GFXPipelineLayout.h
|
|
cocos/renderer/gfx-base/GFXPipelineState.cpp
|
|
cocos/renderer/gfx-base/GFXPipelineState.h
|
|
cocos/renderer/gfx-base/GFXQueue.cpp
|
|
cocos/renderer/gfx-base/GFXQueue.h
|
|
cocos/renderer/gfx-base/GFXQueryPool.cpp
|
|
cocos/renderer/gfx-base/GFXQueryPool.h
|
|
cocos/renderer/gfx-base/GFXRenderPass.cpp
|
|
cocos/renderer/gfx-base/GFXRenderPass.h
|
|
cocos/renderer/gfx-base/GFXShader.cpp
|
|
cocos/renderer/gfx-base/GFXShader.h
|
|
cocos/renderer/gfx-base/GFXSwapchain.cpp
|
|
cocos/renderer/gfx-base/GFXSwapchain.h
|
|
cocos/renderer/gfx-base/GFXTexture.cpp
|
|
cocos/renderer/gfx-base/GFXTexture.h
|
|
cocos/renderer/gfx-base/GFXDeviceObject.h
|
|
cocos/renderer/gfx-base/GFXUtil.cpp
|
|
cocos/renderer/gfx-base/GFXUtil.h
|
|
cocos/renderer/gfx-base/states/GFXGeneralBarrier.cpp
|
|
cocos/renderer/gfx-base/states/GFXGeneralBarrier.h
|
|
cocos/renderer/gfx-base/states/GFXSampler.cpp
|
|
cocos/renderer/gfx-base/states/GFXSampler.h
|
|
cocos/renderer/gfx-base/states/GFXTextureBarrier.cpp
|
|
cocos/renderer/gfx-base/states/GFXTextureBarrier.h
|
|
cocos/renderer/gfx-base/states/GFXBufferBarrier.h
|
|
cocos/renderer/gfx-base/states/GFXBufferBarrier.cpp
|
|
|
|
cocos/renderer/gfx-agent/BufferAgent.h
|
|
cocos/renderer/gfx-agent/BufferAgent.cpp
|
|
cocos/renderer/gfx-agent/CommandBufferAgent.h
|
|
cocos/renderer/gfx-agent/CommandBufferAgent.cpp
|
|
cocos/renderer/gfx-agent/DescriptorSetAgent.h
|
|
cocos/renderer/gfx-agent/DescriptorSetAgent.cpp
|
|
cocos/renderer/gfx-agent/DescriptorSetLayoutAgent.h
|
|
cocos/renderer/gfx-agent/DescriptorSetLayoutAgent.cpp
|
|
cocos/renderer/gfx-agent/DeviceAgent.h
|
|
cocos/renderer/gfx-agent/DeviceAgent.cpp
|
|
cocos/renderer/gfx-agent/FramebufferAgent.h
|
|
cocos/renderer/gfx-agent/FramebufferAgent.cpp
|
|
cocos/renderer/gfx-agent/InputAssemblerAgent.h
|
|
cocos/renderer/gfx-agent/InputAssemblerAgent.cpp
|
|
cocos/renderer/gfx-agent/PipelineLayoutAgent.h
|
|
cocos/renderer/gfx-agent/PipelineLayoutAgent.cpp
|
|
cocos/renderer/gfx-agent/PipelineStateAgent.h
|
|
cocos/renderer/gfx-agent/PipelineStateAgent.cpp
|
|
cocos/renderer/gfx-agent/QueueAgent.h
|
|
cocos/renderer/gfx-agent/QueueAgent.cpp
|
|
cocos/renderer/gfx-agent/QueryPoolAgent.h
|
|
cocos/renderer/gfx-agent/QueryPoolAgent.cpp
|
|
cocos/renderer/gfx-agent/RenderPassAgent.h
|
|
cocos/renderer/gfx-agent/RenderPassAgent.cpp
|
|
cocos/renderer/gfx-agent/SwapchainAgent.h
|
|
cocos/renderer/gfx-agent/SwapchainAgent.cpp
|
|
cocos/renderer/gfx-agent/ShaderAgent.h
|
|
cocos/renderer/gfx-agent/ShaderAgent.cpp
|
|
cocos/renderer/gfx-agent/TextureAgent.h
|
|
cocos/renderer/gfx-agent/TextureAgent.cpp
|
|
|
|
cocos/renderer/gfx-validator/BufferValidator.h
|
|
cocos/renderer/gfx-validator/BufferValidator.cpp
|
|
cocos/renderer/gfx-validator/CommandBufferValidator.h
|
|
cocos/renderer/gfx-validator/CommandBufferValidator.cpp
|
|
cocos/renderer/gfx-validator/DescriptorSetValidator.h
|
|
cocos/renderer/gfx-validator/DescriptorSetValidator.cpp
|
|
cocos/renderer/gfx-validator/DescriptorSetLayoutValidator.h
|
|
cocos/renderer/gfx-validator/DescriptorSetLayoutValidator.cpp
|
|
cocos/renderer/gfx-validator/DeviceValidator.h
|
|
cocos/renderer/gfx-validator/DeviceValidator.cpp
|
|
cocos/renderer/gfx-validator/FramebufferValidator.h
|
|
cocos/renderer/gfx-validator/FramebufferValidator.cpp
|
|
cocos/renderer/gfx-validator/InputAssemblerValidator.h
|
|
cocos/renderer/gfx-validator/InputAssemblerValidator.cpp
|
|
cocos/renderer/gfx-validator/PipelineLayoutValidator.h
|
|
cocos/renderer/gfx-validator/PipelineLayoutValidator.cpp
|
|
cocos/renderer/gfx-validator/PipelineStateValidator.h
|
|
cocos/renderer/gfx-validator/PipelineStateValidator.cpp
|
|
cocos/renderer/gfx-validator/QueueValidator.h
|
|
cocos/renderer/gfx-validator/QueueValidator.cpp
|
|
cocos/renderer/gfx-validator/QueryPoolValidator.h
|
|
cocos/renderer/gfx-validator/QueryPoolValidator.cpp
|
|
cocos/renderer/gfx-validator/RenderPassValidator.h
|
|
cocos/renderer/gfx-validator/RenderPassValidator.cpp
|
|
cocos/renderer/gfx-validator/ShaderValidator.h
|
|
cocos/renderer/gfx-validator/ShaderValidator.cpp
|
|
cocos/renderer/gfx-validator/SwapchainValidator.h
|
|
cocos/renderer/gfx-validator/SwapchainValidator.cpp
|
|
cocos/renderer/gfx-validator/TextureValidator.h
|
|
cocos/renderer/gfx-validator/TextureValidator.cpp
|
|
cocos/renderer/gfx-validator/ValidationUtils.h
|
|
cocos/renderer/gfx-validator/ValidationUtils.cpp
|
|
|
|
cocos/renderer/gfx-empty/EmptyBuffer.h
|
|
cocos/renderer/gfx-empty/EmptyBuffer.cpp
|
|
cocos/renderer/gfx-empty/EmptyCommandBuffer.h
|
|
cocos/renderer/gfx-empty/EmptyCommandBuffer.cpp
|
|
cocos/renderer/gfx-empty/EmptyDescriptorSet.h
|
|
cocos/renderer/gfx-empty/EmptyDescriptorSet.cpp
|
|
cocos/renderer/gfx-empty/EmptyDescriptorSetLayout.h
|
|
cocos/renderer/gfx-empty/EmptyDescriptorSetLayout.cpp
|
|
cocos/renderer/gfx-empty/EmptyDevice.h
|
|
cocos/renderer/gfx-empty/EmptyDevice.cpp
|
|
cocos/renderer/gfx-empty/EmptyFramebuffer.h
|
|
cocos/renderer/gfx-empty/EmptyFramebuffer.cpp
|
|
cocos/renderer/gfx-empty/EmptyInputAssembler.h
|
|
cocos/renderer/gfx-empty/EmptyInputAssembler.cpp
|
|
cocos/renderer/gfx-empty/EmptyPipelineLayout.h
|
|
cocos/renderer/gfx-empty/EmptyPipelineLayout.cpp
|
|
cocos/renderer/gfx-empty/EmptyPipelineState.h
|
|
cocos/renderer/gfx-empty/EmptyPipelineState.cpp
|
|
cocos/renderer/gfx-empty/EmptyQueue.h
|
|
cocos/renderer/gfx-empty/EmptyQueue.cpp
|
|
cocos/renderer/gfx-empty/EmptyQueryPool.h
|
|
cocos/renderer/gfx-empty/EmptyQueryPool.cpp
|
|
cocos/renderer/gfx-empty/EmptyRenderPass.h
|
|
cocos/renderer/gfx-empty/EmptyRenderPass.cpp
|
|
cocos/renderer/gfx-empty/EmptyShader.h
|
|
cocos/renderer/gfx-empty/EmptyShader.cpp
|
|
cocos/renderer/gfx-empty/EmptySwapchain.h
|
|
cocos/renderer/gfx-empty/EmptySwapchain.cpp
|
|
cocos/renderer/gfx-empty/EmptyTexture.h
|
|
cocos/renderer/gfx-empty/EmptyTexture.cpp
|
|
|
|
cocos/renderer/pipeline/ClusterLightCulling.cpp
|
|
cocos/renderer/pipeline/ClusterLightCulling.h
|
|
cocos/renderer/pipeline/Define.h
|
|
cocos/renderer/pipeline/Define.cpp
|
|
cocos/renderer/pipeline/GlobalDescriptorSetManager.h
|
|
cocos/renderer/pipeline/GlobalDescriptorSetManager.cpp
|
|
cocos/renderer/pipeline/InstancedBuffer.cpp
|
|
cocos/renderer/pipeline/InstancedBuffer.h
|
|
cocos/renderer/pipeline/PipelineStateManager.cpp
|
|
cocos/renderer/pipeline/PipelineStateManager.h
|
|
cocos/renderer/pipeline/RenderAdditiveLightQueue.cpp
|
|
cocos/renderer/pipeline/RenderAdditiveLightQueue.h
|
|
cocos/renderer/pipeline/RenderFlow.cpp
|
|
cocos/renderer/pipeline/RenderFlow.h
|
|
cocos/renderer/pipeline/RenderInstancedQueue.cpp
|
|
cocos/renderer/pipeline/RenderInstancedQueue.h
|
|
cocos/renderer/pipeline/RenderPipeline.cpp
|
|
cocos/renderer/pipeline/RenderPipeline.h
|
|
cocos/renderer/pipeline/RenderQueue.cpp
|
|
cocos/renderer/pipeline/RenderQueue.h
|
|
cocos/renderer/pipeline/RenderStage.cpp
|
|
cocos/renderer/pipeline/RenderStage.h
|
|
cocos/renderer/pipeline/PlanarShadowQueue.cpp
|
|
cocos/renderer/pipeline/PlanarShadowQueue.h
|
|
cocos/renderer/pipeline/ShadowMapBatchedQueue.cpp
|
|
cocos/renderer/pipeline/ShadowMapBatchedQueue.h
|
|
cocos/renderer/pipeline/PipelineUBO.cpp
|
|
cocos/renderer/pipeline/PipelineUBO.h
|
|
cocos/renderer/pipeline/PipelineSceneData.cpp
|
|
cocos/renderer/pipeline/PipelineSceneData.h
|
|
cocos/renderer/pipeline/forward/ForwardFlow.cpp
|
|
cocos/renderer/pipeline/forward/ForwardFlow.h
|
|
cocos/renderer/pipeline/forward/ForwardPipeline.cpp
|
|
cocos/renderer/pipeline/forward/ForwardPipeline.h
|
|
cocos/renderer/pipeline/forward/ForwardStage.cpp
|
|
cocos/renderer/pipeline/forward/ForwardStage.h
|
|
cocos/renderer/pipeline/SceneCulling.cpp
|
|
cocos/renderer/pipeline/SceneCulling.h
|
|
cocos/renderer/pipeline/deferred/DeferredPipeline.cpp
|
|
cocos/renderer/pipeline/deferred/DeferredPipeline.h
|
|
cocos/renderer/pipeline/deferred/MainFlow.cpp
|
|
cocos/renderer/pipeline/deferred/MainFlow.h
|
|
cocos/renderer/pipeline/deferred/DeferredPipelineSceneData.cpp
|
|
cocos/renderer/pipeline/deferred/DeferredPipelineSceneData.h
|
|
cocos/renderer/pipeline/deferred/GbufferStage.cpp
|
|
cocos/renderer/pipeline/deferred/GbufferStage.h
|
|
cocos/renderer/pipeline/deferred/LightingStage.cpp
|
|
cocos/renderer/pipeline/deferred/LightingStage.h
|
|
cocos/renderer/pipeline/deferred/ReflectionComp.cpp
|
|
cocos/renderer/pipeline/deferred/ReflectionComp.h
|
|
cocos/renderer/pipeline/shadow/ShadowFlow.cpp
|
|
cocos/renderer/pipeline/shadow/ShadowFlow.h
|
|
cocos/renderer/pipeline/shadow/ShadowStage.cpp
|
|
cocos/renderer/pipeline/shadow/ShadowStage.h
|
|
cocos/renderer/pipeline/shadow/CSMLayers.cpp
|
|
cocos/renderer/pipeline/shadow/CSMLayers.h
|
|
cocos/renderer/pipeline/Enum.h
|
|
cocos/renderer/pipeline/deferred/BloomStage.cpp
|
|
cocos/renderer/pipeline/deferred/BloomStage.h
|
|
cocos/renderer/pipeline/deferred/PostProcessStage.cpp
|
|
cocos/renderer/pipeline/deferred/PostProcessStage.h
|
|
cocos/renderer/pipeline/UIPhase.cpp
|
|
cocos/renderer/pipeline/UIPhase.h
|
|
cocos/renderer/pipeline/DebugView.cpp
|
|
cocos/renderer/pipeline/DebugView.h
|
|
cocos/renderer/pipeline/helper/Utils.h
|
|
cocos/renderer/pipeline/helper/Utils.cpp
|
|
cocos/renderer/pipeline/custom/test/test.h
|
|
cocos/renderer/pipeline/reflection-probe/ReflectionProbeFlow.cpp
|
|
cocos/renderer/pipeline/reflection-probe/ReflectionProbeFlow.h
|
|
cocos/renderer/pipeline/reflection-probe/ReflectionProbeStage.cpp
|
|
cocos/renderer/pipeline/reflection-probe/ReflectionProbeStage.h
|
|
cocos/renderer/pipeline/ReflectionProbeBatchedQueue.cpp
|
|
cocos/renderer/pipeline/ReflectionProbeBatchedQueue.h
|
|
cocos/renderer/pipeline/custom/ArchiveFwd.h
|
|
cocos/renderer/pipeline/custom/ArchiveTypes.cpp
|
|
cocos/renderer/pipeline/custom/ArchiveTypes.h
|
|
cocos/renderer/pipeline/custom/BinaryArchive.h
|
|
cocos/renderer/pipeline/custom/CustomFwd.h
|
|
cocos/renderer/pipeline/custom/CustomTypes.cpp
|
|
cocos/renderer/pipeline/custom/CustomTypes.h
|
|
cocos/renderer/pipeline/custom/FGDispatcherGraphs.h
|
|
cocos/renderer/pipeline/custom/FGDispatcherTypes.cpp
|
|
cocos/renderer/pipeline/custom/FGDispatcherTypes.h
|
|
cocos/renderer/pipeline/custom/FrameGraphDispatcher.cpp
|
|
cocos/renderer/pipeline/custom/LayoutGraphFwd.h
|
|
cocos/renderer/pipeline/custom/LayoutGraphGraphs.h
|
|
cocos/renderer/pipeline/custom/LayoutGraphNames.h
|
|
cocos/renderer/pipeline/custom/LayoutGraphSerialization.h
|
|
cocos/renderer/pipeline/custom/LayoutGraphTypes.cpp
|
|
cocos/renderer/pipeline/custom/LayoutGraphTypes.h
|
|
cocos/renderer/pipeline/custom/LayoutGraphUtils.cpp
|
|
cocos/renderer/pipeline/custom/LayoutGraphUtils.h
|
|
cocos/renderer/pipeline/custom/NativeBuiltinUtils.cpp
|
|
cocos/renderer/pipeline/custom/NativeBuiltinUtils.h
|
|
cocos/renderer/pipeline/custom/NativeExecutor.cpp
|
|
cocos/renderer/pipeline/custom/NativeFactory.cpp
|
|
cocos/renderer/pipeline/custom/NativeFwd.h
|
|
cocos/renderer/pipeline/custom/NativePipeline.cpp
|
|
cocos/renderer/pipeline/custom/NativePipelineFwd.h
|
|
cocos/renderer/pipeline/custom/NativePipelineGraphs.h
|
|
cocos/renderer/pipeline/custom/NativePipelineTypes.cpp
|
|
cocos/renderer/pipeline/custom/NativePipelineTypes.h
|
|
cocos/renderer/pipeline/custom/NativePools.cpp
|
|
cocos/renderer/pipeline/custom/NativeProgramLibrary.cpp
|
|
cocos/renderer/pipeline/custom/NativeRenderGraph.cpp
|
|
cocos/renderer/pipeline/custom/NativeRenderGraphUtils.cpp
|
|
cocos/renderer/pipeline/custom/NativeRenderGraphUtils.h
|
|
cocos/renderer/pipeline/custom/NativeRenderQueue.cpp
|
|
cocos/renderer/pipeline/custom/NativeRenderingModule.cpp
|
|
cocos/renderer/pipeline/custom/NativeResourceGraph.cpp
|
|
cocos/renderer/pipeline/custom/NativeSceneCulling.cpp
|
|
cocos/renderer/pipeline/custom/NativeSetter.cpp
|
|
cocos/renderer/pipeline/custom/NativeTypes.cpp
|
|
cocos/renderer/pipeline/custom/NativeTypes.h
|
|
cocos/renderer/pipeline/custom/NativeUtils.cpp
|
|
cocos/renderer/pipeline/custom/NativeUtils.h
|
|
cocos/renderer/pipeline/custom/PrivateFwd.h
|
|
cocos/renderer/pipeline/custom/PrivateTypes.cpp
|
|
cocos/renderer/pipeline/custom/PrivateTypes.h
|
|
cocos/renderer/pipeline/custom/RenderCommonFwd.h
|
|
cocos/renderer/pipeline/custom/RenderCommonJsb.cpp
|
|
cocos/renderer/pipeline/custom/RenderCommonJsb.h
|
|
cocos/renderer/pipeline/custom/RenderCommonNames.h
|
|
cocos/renderer/pipeline/custom/RenderCommonSerialization.h
|
|
cocos/renderer/pipeline/custom/RenderCommonTypes.cpp
|
|
cocos/renderer/pipeline/custom/RenderCommonTypes.h
|
|
cocos/renderer/pipeline/custom/RenderGraphFwd.h
|
|
cocos/renderer/pipeline/custom/RenderGraphGraphs.h
|
|
cocos/renderer/pipeline/custom/RenderGraphTypes.cpp
|
|
cocos/renderer/pipeline/custom/RenderGraphTypes.h
|
|
cocos/renderer/pipeline/custom/RenderInterfaceFwd.h
|
|
cocos/renderer/pipeline/custom/RenderInterfaceTypes.cpp
|
|
cocos/renderer/pipeline/custom/RenderInterfaceTypes.h
|
|
cocos/renderer/pipeline/custom/RenderingModule.h
|
|
cocos/renderer/pipeline/custom/details/DebugUtils.h
|
|
cocos/renderer/pipeline/custom/details/GraphImpl.h
|
|
cocos/renderer/pipeline/custom/details/GraphTypes.h
|
|
cocos/renderer/pipeline/custom/details/GraphView.h
|
|
cocos/renderer/pipeline/custom/details/GslUtils.h
|
|
cocos/renderer/pipeline/custom/details/JsbConversion.h
|
|
cocos/renderer/pipeline/custom/details/Map.h
|
|
cocos/renderer/pipeline/custom/details/Overload.h
|
|
cocos/renderer/pipeline/custom/details/PathUtils.h
|
|
cocos/renderer/pipeline/custom/details/Pmr.h
|
|
cocos/renderer/pipeline/custom/details/Range.h
|
|
cocos/renderer/pipeline/custom/details/SerializationUtils.h
|
|
cocos/renderer/pipeline/custom/details/Set.h
|
|
cocos/renderer/pipeline/custom/details/Utility.h
|
|
)
|
|
|
|
if (USE_GEOMETRY_RENDERER)
|
|
cocos_source_files(
|
|
cocos/renderer/pipeline/GeometryRenderer.h
|
|
cocos/renderer/pipeline/GeometryRenderer.cpp
|
|
)
|
|
endif()
|
|
|
|
##### terrain
|
|
#
|
|
# cocos_source_files(
|
|
# cocos/terrain/HeightField.cpp
|
|
# cocos/terrain/HeightField.h
|
|
# cocos/terrain/Terrain.cpp
|
|
# cocos/terrain/Terrain.h
|
|
# cocos/terrain/TerrainAsset.cpp
|
|
# cocos/terrain/TerrainAsset.h
|
|
# cocos/terrain/TerrainLod.cpp
|
|
# cocos/terrain/TerrainLod.h
|
|
# )
|
|
|
|
|
|
##### scene
|
|
cocos_source_files(
|
|
cocos/scene/Ambient.h
|
|
cocos/scene/Ambient.cpp
|
|
cocos/scene/Camera.h
|
|
cocos/scene/Camera.cpp
|
|
cocos/scene/Define.h
|
|
cocos/scene/DirectionalLight.h
|
|
cocos/scene/DirectionalLight.cpp
|
|
cocos/scene/DrawBatch2D.h
|
|
cocos/scene/DrawBatch2D.cpp
|
|
cocos/scene/Fog.h
|
|
cocos/scene/Fog.cpp
|
|
cocos/scene/Light.h
|
|
cocos/scene/Light.cpp
|
|
cocos/scene/LODGroup.h
|
|
cocos/scene/LODGroup.cpp
|
|
cocos/scene/Model.h
|
|
cocos/scene/Model.cpp
|
|
cocos/scene/Pass.h
|
|
cocos/scene/Pass.cpp
|
|
cocos/scene/RenderScene.h
|
|
cocos/scene/RenderScene.cpp
|
|
cocos/scene/RenderWindow.cpp
|
|
cocos/scene/RenderWindow.h
|
|
cocos/scene/Skybox.h
|
|
cocos/scene/Skybox.cpp
|
|
cocos/scene/SphereLight.h
|
|
cocos/scene/SphereLight.cpp
|
|
cocos/scene/SpotLight.h
|
|
cocos/scene/SpotLight.cpp
|
|
cocos/scene/PointLight.h
|
|
cocos/scene/PointLight.cpp
|
|
cocos/scene/RangedDirectionalLight.h
|
|
cocos/scene/RangedDirectionalLight.cpp
|
|
cocos/scene/SubModel.h
|
|
cocos/scene/SubModel.cpp
|
|
cocos/scene/Octree.h
|
|
cocos/scene/Octree.cpp
|
|
cocos/scene/Shadow.h
|
|
cocos/scene/Shadow.cpp
|
|
cocos/scene/ReflectionProbe.h
|
|
cocos/scene/ReflectionProbe.cpp
|
|
cocos/scene/ReflectionProbeManager.cpp
|
|
cocos/scene/ReflectionProbeManager.h
|
|
cocos/scene/Skin.h
|
|
cocos/scene/Skin.cpp
|
|
cocos/scene/PostSettings.h
|
|
cocos/scene/PostSettings.cpp
|
|
)
|
|
|
|
##### primitive
|
|
cocos_source_files(
|
|
cocos/primitive/Box.cpp
|
|
cocos/primitive/Box.h
|
|
cocos/primitive/Capsule.cpp
|
|
cocos/primitive/Capsule.h
|
|
cocos/primitive/Circle.cpp
|
|
cocos/primitive/Circle.h
|
|
cocos/primitive/Cone.cpp
|
|
cocos/primitive/Cone.h
|
|
cocos/primitive/Cylinder.cpp
|
|
cocos/primitive/Cylinder.h
|
|
cocos/primitive/Plane.cpp
|
|
cocos/primitive/Plane.h
|
|
cocos/primitive/Primitive.cpp
|
|
cocos/primitive/Primitive.h
|
|
cocos/primitive/PrimitiveDefine.h
|
|
cocos/primitive/PrimitiveUtils.cpp
|
|
cocos/primitive/PrimitiveUtils.h
|
|
cocos/primitive/Quad.cpp
|
|
cocos/primitive/Quad.h
|
|
cocos/primitive/Sphere.cpp
|
|
cocos/primitive/Sphere.h
|
|
cocos/primitive/Torus.cpp
|
|
cocos/primitive/Torus.h
|
|
cocos/primitive/Transform.cpp
|
|
cocos/primitive/Transform.h
|
|
)
|
|
|
|
##### profiler
|
|
if (USE_DEBUG_RENDERER)
|
|
cocos_source_files(
|
|
cocos/profiler/DebugRenderer.h
|
|
cocos/profiler/DebugRenderer.cpp
|
|
)
|
|
endif()
|
|
|
|
cocos_source_files(
|
|
cocos/profiler/Profiler.h
|
|
cocos/profiler/Profiler.cpp
|
|
cocos/profiler/GameStats.h
|
|
)
|
|
|
|
##### components
|
|
cocos_source_files(
|
|
cocos/3d/models/BakedSkinningModel.h
|
|
cocos/3d/models/BakedSkinningModel.cpp
|
|
cocos/3d/models/MorphModel.h
|
|
cocos/3d/models/MorphModel.cpp
|
|
cocos/3d/models/SkinningModel.h
|
|
cocos/3d/models/SkinningModel.cpp
|
|
)
|
|
|
|
##### animations
|
|
cocos_source_files(
|
|
cocos/core/animation/SkeletalAnimationUtils.h
|
|
cocos/core/animation/SkeletalAnimationUtils.cpp
|
|
)
|
|
|
|
##### lights
|
|
# cocos_source_files(
|
|
# cocos/3d/lights/LightComponent.h
|
|
# cocos/3d/lights/LightComponent.cpp
|
|
# cocos/3d/lights/DirectionalLightComponent.h
|
|
# cocos/3d/lights/DirectionalLightComponent.cpp
|
|
# cocos/3d/lights/SpotLightComponent.h
|
|
# cocos/3d/lights/SpotLightComponent.cpp
|
|
# cocos/3d/lights/SphereLightComponent.h
|
|
# cocos/3d/lights/SphereLightComponent.cpp
|
|
# )
|
|
|
|
if(CC_USE_GLES2 OR CC_USE_GLES3)
|
|
cocos_source_files(
|
|
cocos/renderer/gfx-gles-common/GLESCommandPool.h
|
|
cocos/renderer/gfx-gles-common/eglw.cpp
|
|
cocos/renderer/gfx-gles-common/gles2w.cpp
|
|
)
|
|
if(CC_USE_GLES3)
|
|
cocos_source_files(
|
|
cocos/renderer/gfx-gles-common/gles3w.cpp
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
if(CC_USE_GLES2)
|
|
cocos_source_files(
|
|
cocos/renderer/gfx-gles2/GLES2Buffer.cpp
|
|
cocos/renderer/gfx-gles2/GLES2Buffer.h
|
|
cocos/renderer/gfx-gles2/GLES2CommandBuffer.cpp
|
|
cocos/renderer/gfx-gles2/GLES2CommandBuffer.h
|
|
cocos/renderer/gfx-gles2/GLES2Commands.cpp
|
|
cocos/renderer/gfx-gles2/GLES2Commands.h
|
|
cocos/renderer/gfx-gles2/GLES2Device.cpp
|
|
cocos/renderer/gfx-gles2/GLES2Device.h
|
|
cocos/renderer/gfx-gles2/GLES2Framebuffer.cpp
|
|
cocos/renderer/gfx-gles2/GLES2Framebuffer.h
|
|
cocos/renderer/gfx-gles2/GLES2GPUContext.cpp
|
|
cocos/renderer/gfx-gles2/GLES2GPUObjects.h
|
|
cocos/renderer/gfx-gles2/GLES2InputAssembler.cpp
|
|
cocos/renderer/gfx-gles2/GLES2InputAssembler.h
|
|
cocos/renderer/gfx-gles2/GLES2DescriptorSet.cpp
|
|
cocos/renderer/gfx-gles2/GLES2DescriptorSet.h
|
|
cocos/renderer/gfx-gles2/GLES2DescriptorSetLayout.cpp
|
|
cocos/renderer/gfx-gles2/GLES2DescriptorSetLayout.h
|
|
cocos/renderer/gfx-gles2/GLES2PipelineLayout.cpp
|
|
cocos/renderer/gfx-gles2/GLES2PipelineLayout.h
|
|
cocos/renderer/gfx-gles2/GLES2PipelineState.cpp
|
|
cocos/renderer/gfx-gles2/GLES2PipelineState.h
|
|
cocos/renderer/gfx-gles2/GLES2PrimaryCommandBuffer.cpp
|
|
cocos/renderer/gfx-gles2/GLES2PrimaryCommandBuffer.h
|
|
cocos/renderer/gfx-gles2/GLES2Queue.cpp
|
|
cocos/renderer/gfx-gles2/GLES2Queue.h
|
|
cocos/renderer/gfx-gles2/GLES2QueryPool.cpp
|
|
cocos/renderer/gfx-gles2/GLES2QueryPool.h
|
|
cocos/renderer/gfx-gles2/GLES2RenderPass.cpp
|
|
cocos/renderer/gfx-gles2/GLES2RenderPass.h
|
|
cocos/renderer/gfx-gles2/GLES2Shader.cpp
|
|
cocos/renderer/gfx-gles2/GLES2Shader.h
|
|
cocos/renderer/gfx-gles2/GLES2Swapchain.cpp
|
|
cocos/renderer/gfx-gles2/GLES2Swapchain.h
|
|
cocos/renderer/gfx-gles2/GLES2Std.h
|
|
cocos/renderer/gfx-gles2/GLES2Texture.cpp
|
|
cocos/renderer/gfx-gles2/GLES2Texture.h
|
|
cocos/renderer/gfx-gles2/GLES2Wrangler.cpp
|
|
cocos/renderer/gfx-gles2/GLES2Wrangler.h
|
|
cocos/renderer/gfx-gles2/states/GLES2Sampler.cpp
|
|
cocos/renderer/gfx-gles2/states/GLES2Sampler.h
|
|
)
|
|
endif()
|
|
|
|
if(CC_USE_GLES3)
|
|
cocos_source_files(
|
|
cocos/renderer/gfx-gles3/GLES3Buffer.cpp
|
|
cocos/renderer/gfx-gles3/GLES3Buffer.h
|
|
cocos/renderer/gfx-gles3/GLES3CommandBuffer.cpp
|
|
cocos/renderer/gfx-gles3/GLES3CommandBuffer.h
|
|
cocos/renderer/gfx-gles3/GLES3Commands.cpp
|
|
cocos/renderer/gfx-gles3/GLES3Commands.h
|
|
cocos/renderer/gfx-gles3/GLES3Device.cpp
|
|
cocos/renderer/gfx-gles3/GLES3Device.h
|
|
cocos/renderer/gfx-gles3/GLES3Framebuffer.cpp
|
|
cocos/renderer/gfx-gles3/GLES3Framebuffer.h
|
|
cocos/renderer/gfx-gles3/GLES3GPUContext.cpp
|
|
cocos/renderer/gfx-gles3/GLES3GPUObjects.h
|
|
cocos/renderer/gfx-gles3/GLES3InputAssembler.cpp
|
|
cocos/renderer/gfx-gles3/GLES3InputAssembler.h
|
|
cocos/renderer/gfx-gles3/GLES3DescriptorSet.cpp
|
|
cocos/renderer/gfx-gles3/GLES3DescriptorSet.h
|
|
cocos/renderer/gfx-gles3/GLES3DescriptorSetLayout.cpp
|
|
cocos/renderer/gfx-gles3/GLES3DescriptorSetLayout.h
|
|
cocos/renderer/gfx-gles3/GLES3PipelineLayout.cpp
|
|
cocos/renderer/gfx-gles3/GLES3PipelineLayout.h
|
|
cocos/renderer/gfx-gles3/GLES3PipelineState.cpp
|
|
cocos/renderer/gfx-gles3/GLES3PipelineState.h
|
|
cocos/renderer/gfx-gles3/GLES3PrimaryCommandBuffer.cpp
|
|
cocos/renderer/gfx-gles3/GLES3PrimaryCommandBuffer.h
|
|
cocos/renderer/gfx-gles3/GLES3Queue.cpp
|
|
cocos/renderer/gfx-gles3/GLES3Queue.h
|
|
cocos/renderer/gfx-gles3/GLES3QueryPool.cpp
|
|
cocos/renderer/gfx-gles3/GLES3QueryPool.h
|
|
cocos/renderer/gfx-gles3/GLES3RenderPass.cpp
|
|
cocos/renderer/gfx-gles3/GLES3RenderPass.h
|
|
cocos/renderer/gfx-gles3/GLES3Shader.cpp
|
|
cocos/renderer/gfx-gles3/GLES3Shader.h
|
|
cocos/renderer/gfx-gles3/GLES3Swapchain.cpp
|
|
cocos/renderer/gfx-gles3/GLES3Swapchain.h
|
|
cocos/renderer/gfx-gles3/GLES3Std.h
|
|
cocos/renderer/gfx-gles3/GLES3Texture.cpp
|
|
cocos/renderer/gfx-gles3/GLES3Texture.h
|
|
cocos/renderer/gfx-gles3/GLES3Wrangler.cpp
|
|
cocos/renderer/gfx-gles3/GLES3Wrangler.h
|
|
cocos/renderer/gfx-gles3/GLES3PipelineCache.cpp
|
|
cocos/renderer/gfx-gles3/GLES3PipelineCache.h
|
|
cocos/renderer/gfx-gles3/states/GLES3GeneralBarrier.cpp
|
|
cocos/renderer/gfx-gles3/states/GLES3GeneralBarrier.h
|
|
cocos/renderer/gfx-gles3/states/GLES3Sampler.cpp
|
|
cocos/renderer/gfx-gles3/states/GLES3Sampler.h
|
|
)
|
|
endif()
|
|
|
|
if(CC_USE_METAL)
|
|
cocos_source_files(
|
|
cocos/renderer/gfx-metal/MTLBuffer.h
|
|
cocos/renderer/gfx-metal/MTLBuffer.mm
|
|
cocos/renderer/gfx-metal/MTLCommandBuffer.h
|
|
cocos/renderer/gfx-metal/MTLCommandBuffer.mm
|
|
cocos/renderer/gfx-metal/MTLDevice.h
|
|
NO_WERROR NO_UBUILD cocos/renderer/gfx-metal/MTLDevice.mm # CAMetalLayer bug for apple
|
|
cocos/renderer/gfx-metal/MTLFramebuffer.mm
|
|
cocos/renderer/gfx-metal/MTLFramebuffer.h
|
|
cocos/renderer/gfx-metal/MTLGPUObjects.h
|
|
cocos/renderer/gfx-metal/MTLInputAssembler.h
|
|
cocos/renderer/gfx-metal/MTLInputAssembler.mm
|
|
cocos/renderer/gfx-metal/MTLDescriptorSetLayout.h
|
|
cocos/renderer/gfx-metal/MTLDescriptorSetLayout.mm
|
|
cocos/renderer/gfx-metal/MTLPipelineLayout.h
|
|
cocos/renderer/gfx-metal/MTLPipelineLayout.mm
|
|
cocos/renderer/gfx-metal/MTLPipelineState.h
|
|
cocos/renderer/gfx-metal/MTLPipelineState.mm
|
|
cocos/renderer/gfx-metal/MTLDescriptorSet.h
|
|
cocos/renderer/gfx-metal/MTLDescriptorSet.mm
|
|
cocos/renderer/gfx-metal/MTLQueue.h
|
|
cocos/renderer/gfx-metal/MTLQueue.mm
|
|
cocos/renderer/gfx-metal/MTLQueryPool.h
|
|
cocos/renderer/gfx-metal/MTLQueryPool.mm
|
|
cocos/renderer/gfx-metal/MTLRenderPass.h
|
|
cocos/renderer/gfx-metal/MTLRenderPass.mm
|
|
cocos/renderer/gfx-metal/MTLSampler.h
|
|
cocos/renderer/gfx-metal/MTLSampler.mm
|
|
cocos/renderer/gfx-metal/MTLShader.h
|
|
cocos/renderer/gfx-metal/MTLShader.mm
|
|
cocos/renderer/gfx-metal/MTLTexture.h
|
|
cocos/renderer/gfx-metal/MTLTexture.mm
|
|
cocos/renderer/gfx-metal/MTLUtils.h
|
|
cocos/renderer/gfx-metal/MTLUtils.mm
|
|
cocos/renderer/gfx-metal/MTLRenderCommandEncoder.h
|
|
cocos/renderer/gfx-metal/MTLComputeCommandEncoder.h
|
|
cocos/renderer/gfx-metal/MTLCommandEncoder.h
|
|
cocos/renderer/gfx-metal/MTLConfig.h
|
|
cocos/renderer/gfx-metal/MTLSemaphore.h
|
|
cocos/renderer/gfx-metal/MTLSwapchain.h
|
|
cocos/renderer/gfx-metal/MTLSwapchain.mm
|
|
)
|
|
endif()
|
|
|
|
if(CC_USE_VULKAN)
|
|
|
|
cocos_source_files(
|
|
cocos/renderer/gfx-vulkan/vk_mem_alloc.h
|
|
cocos/renderer/gfx-vulkan/VKBuffer.cpp
|
|
cocos/renderer/gfx-vulkan/VKBuffer.h
|
|
cocos/renderer/gfx-vulkan/VKCommandBuffer.cpp
|
|
cocos/renderer/gfx-vulkan/VKCommandBuffer.h
|
|
cocos/renderer/gfx-vulkan/VKCommands.cpp
|
|
cocos/renderer/gfx-vulkan/VKCommands.h
|
|
cocos/renderer/gfx-vulkan/VKDevice.cpp
|
|
cocos/renderer/gfx-vulkan/VKDevice.h
|
|
cocos/renderer/gfx-vulkan/VKFramebuffer.cpp
|
|
cocos/renderer/gfx-vulkan/VKFramebuffer.h
|
|
cocos/renderer/gfx-vulkan/VKGPUContext.cpp
|
|
cocos/renderer/gfx-vulkan/VKGPUObjects.h
|
|
cocos/renderer/gfx-vulkan/VKInputAssembler.cpp
|
|
cocos/renderer/gfx-vulkan/VKInputAssembler.h
|
|
cocos/renderer/gfx-vulkan/VKDescriptorSet.cpp
|
|
cocos/renderer/gfx-vulkan/VKDescriptorSet.h
|
|
cocos/renderer/gfx-vulkan/VKDescriptorSetLayout.cpp
|
|
cocos/renderer/gfx-vulkan/VKDescriptorSetLayout.h
|
|
cocos/renderer/gfx-vulkan/VKPipelineLayout.cpp
|
|
cocos/renderer/gfx-vulkan/VKPipelineLayout.h
|
|
cocos/renderer/gfx-vulkan/VKPipelineState.cpp
|
|
cocos/renderer/gfx-vulkan/VKPipelineState.h
|
|
cocos/renderer/gfx-vulkan/VKQueue.cpp
|
|
cocos/renderer/gfx-vulkan/VKQueue.h
|
|
cocos/renderer/gfx-vulkan/VKQueryPool.cpp
|
|
cocos/renderer/gfx-vulkan/VKQueryPool.h
|
|
cocos/renderer/gfx-vulkan/VKRenderPass.cpp
|
|
cocos/renderer/gfx-vulkan/VKRenderPass.h
|
|
cocos/renderer/gfx-vulkan/VKShader.cpp
|
|
cocos/renderer/gfx-vulkan/VKShader.h
|
|
cocos/renderer/gfx-vulkan/VKStd.cpp
|
|
cocos/renderer/gfx-vulkan/VKStd.h
|
|
cocos/renderer/gfx-vulkan/VKSwapchain.cpp
|
|
cocos/renderer/gfx-vulkan/VKSwapchain.h
|
|
cocos/renderer/gfx-vulkan/VKTexture.cpp
|
|
cocos/renderer/gfx-vulkan/VKTexture.h
|
|
cocos/renderer/gfx-vulkan/VKUtils.cpp
|
|
cocos/renderer/gfx-vulkan/VKUtils.h
|
|
cocos/renderer/gfx-vulkan/volk.c
|
|
cocos/renderer/gfx-vulkan/volk.h
|
|
cocos/renderer/gfx-vulkan/VKGPURecycleBin.cpp
|
|
cocos/renderer/gfx-vulkan/VKPipelineCache.cpp
|
|
cocos/renderer/gfx-vulkan/VKPipelineCache.h
|
|
cocos/renderer/gfx-vulkan/states/VKGeneralBarrier.cpp
|
|
cocos/renderer/gfx-vulkan/states/VKGeneralBarrier.h
|
|
cocos/renderer/gfx-vulkan/states/VKSampler.cpp
|
|
cocos/renderer/gfx-vulkan/states/VKSampler.h
|
|
cocos/renderer/gfx-vulkan/states/VKTextureBarrier.cpp
|
|
cocos/renderer/gfx-vulkan/states/VKTextureBarrier.h
|
|
cocos/renderer/gfx-vulkan/states/VKBufferBarrier.cpp
|
|
cocos/renderer/gfx-vulkan/states/VKBufferBarrier.h
|
|
)
|
|
|
|
if(ANDROID)
|
|
set_source_files_properties(
|
|
${CWD}/cocos/renderer/gfx-vulkan/VKDevice.cpp
|
|
PROPERTIES
|
|
# supress warning on Android
|
|
COMPILE_FLAGS -Wno-nullability-completeness
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
if(NX)
|
|
include(${CMAKE_CURRENT_LIST_DIR}/platform-nx/source.cmake)
|
|
endif()
|
|
|
|
cocos_source_files(
|
|
cocos/renderer/frame-graph/Blackboard.h
|
|
cocos/renderer/frame-graph/CallbackPass.h
|
|
cocos/renderer/frame-graph/DevicePass.cpp
|
|
cocos/renderer/frame-graph/DevicePass.h
|
|
cocos/renderer/frame-graph/DevicePassResourceTable.cpp
|
|
cocos/renderer/frame-graph/DevicePassResourceTable.h
|
|
cocos/renderer/frame-graph/FrameGraph.cpp
|
|
cocos/renderer/frame-graph/FrameGraph.h
|
|
cocos/renderer/frame-graph/Handle.h
|
|
cocos/renderer/frame-graph/PassInsertPointManager.cpp
|
|
cocos/renderer/frame-graph/PassInsertPointManager.h
|
|
cocos/renderer/frame-graph/PassNode.cpp
|
|
cocos/renderer/frame-graph/PassNode.h
|
|
cocos/renderer/frame-graph/PassNodeBuilder.cpp
|
|
cocos/renderer/frame-graph/PassNodeBuilder.h
|
|
cocos/renderer/frame-graph/RenderTargetAttachment.h
|
|
cocos/renderer/frame-graph/Resource.h
|
|
cocos/renderer/frame-graph/ResourceAllocator.h
|
|
cocos/renderer/frame-graph/ResourceEntry.h
|
|
cocos/renderer/frame-graph/ResourceNode.h
|
|
cocos/renderer/frame-graph/VirtualResource.cpp
|
|
cocos/renderer/frame-graph/VirtualResource.h
|
|
cocos/renderer/frame-graph/ImmutableState.h
|
|
cocos/renderer/frame-graph/ImmutableState.cpp
|
|
)
|
|
|
|
##### physics
|
|
|
|
if(USE_PHYSICS_PHYSX)
|
|
cocos_source_files(
|
|
cocos/physics/PhysicsSDK.h
|
|
cocos/physics/PhysicsSelector.h
|
|
cocos/physics/sdk/World.h
|
|
cocos/physics/sdk/World.cpp
|
|
cocos/physics/sdk/Shape.h
|
|
cocos/physics/sdk/Shape.cpp
|
|
cocos/physics/sdk/RigidBody.h
|
|
cocos/physics/sdk/RigidBody.cpp
|
|
cocos/physics/sdk/Joint.h
|
|
cocos/physics/sdk/Joint.cpp
|
|
cocos/physics/sdk/CharacterController.h
|
|
cocos/physics/sdk/CharacterController.cpp
|
|
cocos/physics/spec/IBody.h
|
|
cocos/physics/spec/IJoint.h
|
|
cocos/physics/spec/ILifecycle.h
|
|
cocos/physics/spec/IShape.h
|
|
cocos/physics/spec/IWorld.h
|
|
cocos/physics/spec/ICharacterController.h
|
|
cocos/physics/physx/PhysX.h
|
|
cocos/physics/physx/PhysXInc.h
|
|
cocos/physics/physx/PhysXUtils.h
|
|
cocos/physics/physx/PhysXUtils.cpp
|
|
cocos/physics/physx/PhysXWorld.h
|
|
cocos/physics/physx/PhysXWorld.cpp
|
|
cocos/physics/physx/PhysXFilterShader.h
|
|
cocos/physics/physx/PhysXFilterShader.cpp
|
|
cocos/physics/physx/PhysXEventManager.h
|
|
cocos/physics/physx/PhysXEventManager.cpp
|
|
cocos/physics/physx/PhysXSharedBody.h
|
|
cocos/physics/physx/PhysXSharedBody.cpp
|
|
cocos/physics/physx/PhysXRigidBody.h
|
|
cocos/physics/physx/PhysXRigidBody.cpp
|
|
cocos/physics/physx/shapes/PhysXShape.h
|
|
cocos/physics/physx/shapes/PhysXShape.cpp
|
|
cocos/physics/physx/shapes/PhysXSphere.h
|
|
cocos/physics/physx/shapes/PhysXSphere.cpp
|
|
cocos/physics/physx/shapes/PhysXBox.h
|
|
cocos/physics/physx/shapes/PhysXBox.cpp
|
|
cocos/physics/physx/shapes/PhysXPlane.h
|
|
cocos/physics/physx/shapes/PhysXPlane.cpp
|
|
cocos/physics/physx/shapes/PhysXCapsule.h
|
|
cocos/physics/physx/shapes/PhysXCapsule.cpp
|
|
cocos/physics/physx/shapes/PhysXCone.h
|
|
cocos/physics/physx/shapes/PhysXCone.cpp
|
|
cocos/physics/physx/shapes/PhysXCylinder.h
|
|
cocos/physics/physx/shapes/PhysXCylinder.cpp
|
|
cocos/physics/physx/shapes/PhysXTerrain.h
|
|
cocos/physics/physx/shapes/PhysXTerrain.cpp
|
|
cocos/physics/physx/shapes/PhysXTrimesh.h
|
|
cocos/physics/physx/shapes/PhysXTrimesh.cpp
|
|
cocos/physics/physx/joints/PhysXJoint.h
|
|
cocos/physics/physx/joints/PhysXJoint.cpp
|
|
cocos/physics/physx/joints/PhysXRevolute.h
|
|
cocos/physics/physx/joints/PhysXRevolute.cpp
|
|
cocos/physics/physx/joints/PhysXFixedJoint.h
|
|
cocos/physics/physx/joints/PhysXFixedJoint.cpp
|
|
cocos/physics/physx/joints/PhysXSpherical.h
|
|
cocos/physics/physx/joints/PhysXSpherical.cpp
|
|
cocos/physics/physx/joints/PhysXGenericJoint.h
|
|
cocos/physics/physx/joints/PhysXGenericJoint.cpp
|
|
cocos/physics/physx/character-controllers/PhysXCharacterController.h
|
|
cocos/physics/physx/character-controllers/PhysXCharacterController.cpp
|
|
cocos/physics/physx/character-controllers/PhysXCapsuleCharacterController.h
|
|
cocos/physics/physx/character-controllers/PhysXCapsuleCharacterController.cpp
|
|
cocos/physics/physx/character-controllers/PhysXBoxCharacterController.h
|
|
cocos/physics/physx/character-controllers/PhysXBoxCharacterController.cpp
|
|
)
|
|
cocos_source_files(
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_physics_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_physics_auto.h
|
|
)
|
|
endif()
|
|
|
|
##### 2d
|
|
cocos_source_files(
|
|
cocos/2d/renderer/Batcher2d.h
|
|
cocos/2d/renderer/Batcher2d.cpp
|
|
cocos/2d/renderer/UIModelProxy.h
|
|
cocos/2d/renderer/UIModelProxy.cpp
|
|
cocos/2d/renderer/RenderDrawInfo.h
|
|
cocos/2d/renderer/RenderDrawInfo.cpp
|
|
cocos/2d/renderer/UIMeshBuffer.h
|
|
cocos/2d/renderer/UIMeshBuffer.cpp
|
|
cocos/2d/renderer/RenderEntity.h
|
|
cocos/2d/renderer/RenderEntity.cpp
|
|
cocos/2d/renderer/StencilManager.h
|
|
cocos/2d/renderer/StencilManager.cpp
|
|
)
|
|
|
|
##### 3d
|
|
cocos_source_files(
|
|
cocos/3d/assets/Types.h
|
|
cocos/3d/assets/Mesh.h
|
|
cocos/3d/assets/Mesh.cpp
|
|
cocos/3d/assets/Morph.h
|
|
cocos/3d/assets/MorphRendering.h
|
|
cocos/3d/assets/MorphRendering.cpp
|
|
cocos/3d/assets/Skeleton.h
|
|
cocos/3d/assets/Skeleton.cpp
|
|
|
|
cocos/3d/misc/CreateMesh.h
|
|
cocos/3d/misc/CreateMesh.cpp
|
|
cocos/3d/misc/BufferBlob.h
|
|
cocos/3d/misc/BufferBlob.cpp
|
|
cocos/3d/misc/Buffer.h
|
|
cocos/3d/misc/Buffer.cpp
|
|
|
|
cocos/3d/skeletal-animation/SkeletalAnimationUtils.h
|
|
cocos/3d/skeletal-animation/SkeletalAnimationUtils.cpp
|
|
)
|
|
|
|
##### core
|
|
|
|
cocos_source_files(
|
|
cocos/core/Any.h
|
|
cocos/core/ArrayBuffer.h
|
|
|
|
cocos/core/DataView.h
|
|
cocos/core/DataView.cpp
|
|
cocos/core/Root.cpp
|
|
cocos/core/Root.h
|
|
|
|
cocos/core/System.h
|
|
|
|
cocos/core/Types.h
|
|
cocos/core/TypedArray.h
|
|
cocos/core/TypedArray.cpp
|
|
|
|
# memop
|
|
cocos/core/memop/CachedArray.h
|
|
cocos/core/memop/Pool.h
|
|
cocos/core/memop/RecyclePool.h
|
|
|
|
|
|
cocos/core/assets/Asset.cpp
|
|
cocos/core/assets/Asset.h
|
|
cocos/core/assets/AssetEnum.h
|
|
cocos/core/assets/AssetsModuleHeader.h
|
|
cocos/core/assets/BufferAsset.cpp
|
|
cocos/core/assets/BufferAsset.h
|
|
cocos/core/assets/EffectAsset.cpp
|
|
cocos/core/assets/EffectAsset.h
|
|
cocos/core/assets/ImageAsset.cpp
|
|
cocos/core/assets/ImageAsset.h
|
|
cocos/core/assets/Material.cpp
|
|
cocos/core/assets/Material.h
|
|
cocos/core/assets/RenderTexture.cpp
|
|
cocos/core/assets/RenderingSubMesh.cpp
|
|
cocos/core/assets/RenderingSubMesh.h
|
|
cocos/core/assets/SceneAsset.cpp
|
|
cocos/core/assets/SceneAsset.h
|
|
cocos/core/assets/SimpleTexture.cpp
|
|
cocos/core/assets/SimpleTexture.h
|
|
cocos/core/assets/TextAsset.h
|
|
cocos/core/assets/Texture2D.cpp
|
|
cocos/core/assets/Texture2D.h
|
|
cocos/core/assets/TextureBase.cpp
|
|
cocos/core/assets/TextureBase.h
|
|
cocos/core/assets/TextureCube.cpp
|
|
cocos/core/assets/TextureCube.h
|
|
cocos/core/assets/BitmapFont.h
|
|
cocos/core/assets/BitmapFont.cpp
|
|
cocos/core/assets/Font.h
|
|
cocos/core/assets/Font.cpp
|
|
|
|
# builtin
|
|
cocos/core/builtin/BuiltinResMgr.cpp
|
|
cocos/core/builtin/BuiltinResMgr.h
|
|
|
|
cocos/core/data/Object.cpp
|
|
cocos/core/data/Object.h
|
|
cocos/core/data/JSBNativeDataHolder.h
|
|
cocos/core/scene-graph/Layers.h
|
|
cocos/core/scene-graph/Node.cpp
|
|
cocos/core/scene-graph/Node.h
|
|
cocos/core/scene-graph/NodeEnum.h
|
|
cocos/core/scene-graph/Scene.cpp
|
|
cocos/core/scene-graph/Scene.h
|
|
cocos/core/scene-graph/SceneGlobals.cpp
|
|
cocos/core/scene-graph/SceneGlobals.h
|
|
cocos/core/scene-graph/SceneGraphModuleHeader.h
|
|
|
|
cocos/core/utils/IDGenerator.cpp
|
|
cocos/core/utils/IDGenerator.h
|
|
cocos/core/utils/Path.cpp
|
|
cocos/core/utils/Path.h
|
|
cocos/core/utils/Pool.h
|
|
cocos/core/utils/ImageUtils.h
|
|
cocos/core/utils/ImageUtils.cpp
|
|
|
|
# cocos/core/platform/native/SystemInfo.h
|
|
# cocos/core/platform/native/SystemInfo.cpp
|
|
|
|
cocos/core/platform/Debug.h
|
|
cocos/core/platform/Debug.cpp
|
|
cocos/core/platform/Macro.h
|
|
cocos/core/platform/Macro.cpp
|
|
# cocos/core/platform/Screen.h
|
|
# cocos/core/platform/Screen.cpp
|
|
# cocos/core/platform/View.h
|
|
# cocos/core/platform/View.cpp
|
|
# cocos/core/platform/VisibleRect.h
|
|
# cocos/core/platform/VisibleRect.cpp
|
|
|
|
)
|
|
|
|
# FreeTypeFont is used in DebugRenderer currently
|
|
if (USE_DEBUG_RENDERER)
|
|
cocos_source_files(
|
|
cocos/core/assets/FreeTypeFont.h
|
|
cocos/core/assets/FreeTypeFont.cpp
|
|
)
|
|
endif()
|
|
|
|
cocos_source_files(MODULE ccgeometry
|
|
cocos/core/geometry/AABB.cpp
|
|
cocos/core/geometry/AABB.h
|
|
cocos/core/geometry/Capsule.cpp
|
|
cocos/core/geometry/Capsule.h
|
|
# cocos/core/geometry/Curve.cpp
|
|
# cocos/core/geometry/Curve.h
|
|
cocos/core/geometry/Distance.cpp
|
|
cocos/core/geometry/Distance.h
|
|
cocos/core/geometry/Enums.h
|
|
cocos/core/geometry/Frustum.cpp
|
|
cocos/core/geometry/Frustum.h
|
|
cocos/core/geometry/Intersect.cpp
|
|
cocos/core/geometry/Intersect.h
|
|
cocos/core/geometry/Line.cpp
|
|
cocos/core/geometry/Line.h
|
|
cocos/core/geometry/Obb.cpp
|
|
cocos/core/geometry/Obb.h
|
|
cocos/core/geometry/Plane.cpp
|
|
cocos/core/geometry/Plane.h
|
|
cocos/core/geometry/Ray.cpp
|
|
cocos/core/geometry/Ray.h
|
|
cocos/core/geometry/Spec.cpp
|
|
cocos/core/geometry/Spec.h
|
|
cocos/core/geometry/Sphere.cpp
|
|
cocos/core/geometry/Sphere.h
|
|
cocos/core/geometry/Spline.cpp
|
|
cocos/core/geometry/Spline.h
|
|
cocos/core/geometry/Triangle.cpp
|
|
cocos/core/geometry/Triangle.h
|
|
)
|
|
|
|
##### script bindings
|
|
|
|
######## utils
|
|
cocos_source_files(
|
|
cocos/bindings/utils/BindingUtils.cpp
|
|
cocos/bindings/utils/BindingUtils.h
|
|
)
|
|
|
|
######## dop
|
|
cocos_source_files(
|
|
NO_UBUILD cocos/bindings/dop/BufferPool.cpp
|
|
cocos/bindings/dop/BufferPool.h
|
|
NO_UBUILD cocos/bindings/dop/jsb_dop.cpp
|
|
cocos/bindings/dop/jsb_dop.h
|
|
cocos/bindings/dop/PoolType.h
|
|
cocos/bindings/dop/BufferAllocator.h
|
|
NO_UBUILD cocos/bindings/dop/BufferAllocator.cpp
|
|
)
|
|
|
|
######## auto
|
|
cocos_source_files(
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_network_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_network_auto.h
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_cocos_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_cocos_auto.h
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_extension_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_extension_auto.h
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_gfx_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_gfx_auto.h
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_pipeline_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_pipeline_auto.h
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_scene_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_scene_auto.h
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_gi_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_gi_auto.h
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_assets_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_assets_auto.h
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_geometry_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_geometry_auto.h
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_render_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_render_auto.h
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_2d_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_2d_auto.h
|
|
)
|
|
|
|
|
|
if(USE_AUDIO)
|
|
cocos_source_files(
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_audio_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_audio_auto.h
|
|
)
|
|
endif()
|
|
|
|
if(USE_VIDEO)
|
|
cocos_source_files(
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_video_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_video_auto.h
|
|
)
|
|
endif()
|
|
|
|
if(USE_WEBVIEW)
|
|
cocos_source_files(
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_webview_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_webview_auto.h
|
|
)
|
|
endif()
|
|
|
|
if(USE_XR_REMOTE_PREVIEW)
|
|
cocos_source_files(
|
|
NO_WERROR cocos/xr/XRRemotePreviewManager.h
|
|
cocos/xr/XRRemotePreviewManager.cpp
|
|
)
|
|
endif()
|
|
|
|
if(USE_MIDDLEWARE)
|
|
cocos_source_files(
|
|
cocos/editor-support/IOBuffer.cpp
|
|
cocos/editor-support/IOBuffer.h
|
|
cocos/editor-support/IOTypedArray.cpp
|
|
cocos/editor-support/IOTypedArray.h
|
|
cocos/editor-support/MeshBuffer.cpp
|
|
cocos/editor-support/MeshBuffer.h
|
|
cocos/editor-support/middleware-adapter.cpp
|
|
cocos/editor-support/middleware-adapter.h
|
|
cocos/editor-support/MiddlewareMacro.h
|
|
cocos/editor-support/MiddlewareManager.cpp
|
|
cocos/editor-support/MiddlewareManager.h
|
|
cocos/editor-support/SharedBufferManager.cpp
|
|
cocos/editor-support/SharedBufferManager.h
|
|
cocos/editor-support/TypedArrayPool.cpp
|
|
cocos/editor-support/TypedArrayPool.h
|
|
)
|
|
|
|
cocos_source_files(
|
|
NO_WERROR NO_UBUILD ${SWIG_OUTPUT}/jsb_editor_support_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_editor_support_auto.h
|
|
)
|
|
|
|
if(USE_SPINE)
|
|
cocos_source_files(
|
|
NO_WERROR NO_UBUILD cocos/editor-support/spine/Animation.cpp
|
|
cocos/editor-support/spine/Animation.h
|
|
NO_WERROR NO_UBUILD cocos/editor-support/spine/AnimationState.cpp
|
|
cocos/editor-support/spine/AnimationState.h
|
|
NO_WERROR cocos/editor-support/spine/AnimationStateData.cpp
|
|
cocos/editor-support/spine/AnimationStateData.h
|
|
NO_WERROR cocos/editor-support/spine/Atlas.cpp
|
|
cocos/editor-support/spine/Atlas.h
|
|
NO_WERROR cocos/editor-support/spine/AtlasAttachmentLoader.cpp
|
|
cocos/editor-support/spine/AtlasAttachmentLoader.h
|
|
NO_WERROR cocos/editor-support/spine/Attachment.cpp
|
|
cocos/editor-support/spine/Attachment.h
|
|
NO_WERROR cocos/editor-support/spine/AttachmentLoader.cpp
|
|
cocos/editor-support/spine/AttachmentLoader.h
|
|
NO_WERROR cocos/editor-support/spine/AttachmentTimeline.cpp
|
|
cocos/editor-support/spine/AttachmentTimeline.h
|
|
cocos/editor-support/spine/AttachmentType.h
|
|
cocos/editor-support/spine/BlendMode.h
|
|
NO_WERROR cocos/editor-support/spine/Bone.cpp
|
|
cocos/editor-support/spine/Bone.h
|
|
NO_WERROR cocos/editor-support/spine/BoneData.cpp
|
|
cocos/editor-support/spine/BoneData.h
|
|
NO_WERROR cocos/editor-support/spine/BoundingBoxAttachment.cpp
|
|
cocos/editor-support/spine/BoundingBoxAttachment.h
|
|
NO_WERROR cocos/editor-support/spine/ClippingAttachment.cpp
|
|
cocos/editor-support/spine/ClippingAttachment.h
|
|
cocos/editor-support/spine/Color.h
|
|
NO_WERROR cocos/editor-support/spine/ColorTimeline.cpp
|
|
cocos/editor-support/spine/ColorTimeline.h
|
|
NO_WERROR cocos/editor-support/spine/Constraint.cpp
|
|
cocos/editor-support/spine/Constraint.h
|
|
NO_WERROR NO_UBUILD cocos/editor-support/spine/ConstraintData.cpp
|
|
cocos/editor-support/spine/ConstraintData.h
|
|
cocos/editor-support/spine/ContainerUtil.h
|
|
NO_WERROR cocos/editor-support/spine/CurveTimeline.cpp
|
|
cocos/editor-support/spine/CurveTimeline.h
|
|
cocos/editor-support/spine/Debug.h
|
|
NO_WERROR cocos/editor-support/spine/DeformTimeline.cpp
|
|
cocos/editor-support/spine/DeformTimeline.h
|
|
cocos/editor-support/spine/dll.h
|
|
NO_WERROR cocos/editor-support/spine/DrawOrderTimeline.cpp
|
|
cocos/editor-support/spine/DrawOrderTimeline.h
|
|
NO_WERROR cocos/editor-support/spine/Event.cpp
|
|
cocos/editor-support/spine/Event.h
|
|
NO_WERROR cocos/editor-support/spine/EventData.cpp
|
|
cocos/editor-support/spine/EventData.h
|
|
NO_WERROR cocos/editor-support/spine/EventTimeline.cpp
|
|
cocos/editor-support/spine/EventTimeline.h
|
|
NO_WERROR cocos/editor-support/spine/Extension.cpp
|
|
cocos/editor-support/spine/Extension.h
|
|
cocos/editor-support/spine/HashMap.h
|
|
cocos/editor-support/spine/HasRendererObject.h
|
|
NO_WERROR cocos/editor-support/spine/IkConstraint.cpp
|
|
cocos/editor-support/spine/IkConstraint.h
|
|
NO_WERROR cocos/editor-support/spine/IkConstraintData.cpp
|
|
cocos/editor-support/spine/IkConstraintData.h
|
|
NO_WERROR cocos/editor-support/spine/IkConstraintTimeline.cpp
|
|
cocos/editor-support/spine/IkConstraintTimeline.h
|
|
NO_WERROR cocos/editor-support/spine/Json.cpp
|
|
cocos/editor-support/spine/Json.h
|
|
NO_WERROR cocos/editor-support/spine/LinkedMesh.cpp
|
|
cocos/editor-support/spine/LinkedMesh.h
|
|
NO_WERROR cocos/editor-support/spine/MathUtil.cpp
|
|
cocos/editor-support/spine/MathUtil.h
|
|
NO_WERROR cocos/editor-support/spine/MeshAttachment.cpp
|
|
cocos/editor-support/spine/MeshAttachment.h
|
|
cocos/editor-support/spine/MixBlend.h
|
|
cocos/editor-support/spine/MixDirection.h
|
|
NO_WERROR cocos/editor-support/spine/PathAttachment.cpp
|
|
cocos/editor-support/spine/PathAttachment.h
|
|
NO_WERROR cocos/editor-support/spine/PathConstraint.cpp
|
|
cocos/editor-support/spine/PathConstraint.h
|
|
NO_WERROR cocos/editor-support/spine/PathConstraintData.cpp
|
|
cocos/editor-support/spine/PathConstraintData.h
|
|
NO_WERROR cocos/editor-support/spine/PathConstraintMixTimeline.cpp
|
|
cocos/editor-support/spine/PathConstraintMixTimeline.h
|
|
NO_WERROR cocos/editor-support/spine/PathConstraintPositionTimeline.cpp
|
|
cocos/editor-support/spine/PathConstraintPositionTimeline.h
|
|
NO_WERROR cocos/editor-support/spine/PathConstraintSpacingTimeline.cpp
|
|
cocos/editor-support/spine/PathConstraintSpacingTimeline.h
|
|
NO_WERROR cocos/editor-support/spine/PointAttachment.cpp
|
|
cocos/editor-support/spine/PointAttachment.h
|
|
cocos/editor-support/spine/Pool.h
|
|
cocos/editor-support/spine/PositionMode.h
|
|
NO_WERROR cocos/editor-support/spine/RegionAttachment.cpp
|
|
cocos/editor-support/spine/RegionAttachment.h
|
|
cocos/editor-support/spine/RotateMode.h
|
|
NO_WERROR cocos/editor-support/spine/RotateTimeline.cpp
|
|
cocos/editor-support/spine/RotateTimeline.h
|
|
NO_WERROR cocos/editor-support/spine/RTTI.cpp
|
|
cocos/editor-support/spine/RTTI.h
|
|
NO_WERROR cocos/editor-support/spine/ScaleTimeline.cpp
|
|
cocos/editor-support/spine/ScaleTimeline.h
|
|
NO_WERROR cocos/editor-support/spine/ShearTimeline.cpp
|
|
cocos/editor-support/spine/ShearTimeline.h
|
|
NO_WERROR cocos/editor-support/spine/Skeleton.cpp
|
|
cocos/editor-support/spine/Skeleton.h
|
|
NO_WERROR cocos/editor-support/spine/SkeletonBinary.cpp
|
|
cocos/editor-support/spine/SkeletonBinary.h
|
|
NO_WERROR cocos/editor-support/spine/SkeletonBounds.cpp
|
|
cocos/editor-support/spine/SkeletonBounds.h
|
|
NO_WERROR cocos/editor-support/spine/SkeletonClipping.cpp
|
|
cocos/editor-support/spine/SkeletonClipping.h
|
|
NO_WERROR cocos/editor-support/spine/SkeletonData.cpp
|
|
cocos/editor-support/spine/SkeletonData.h
|
|
NO_WERROR cocos/editor-support/spine/SkeletonJson.cpp
|
|
cocos/editor-support/spine/SkeletonJson.h
|
|
NO_WERROR cocos/editor-support/spine/Skin.cpp
|
|
cocos/editor-support/spine/Skin.h
|
|
NO_WERROR cocos/editor-support/spine/Slot.cpp
|
|
cocos/editor-support/spine/Slot.h
|
|
NO_WERROR cocos/editor-support/spine/SlotData.cpp
|
|
cocos/editor-support/spine/SlotData.h
|
|
cocos/editor-support/spine/SpacingMode.h
|
|
cocos/editor-support/spine/spine.h
|
|
NO_WERROR cocos/editor-support/spine/SpineObject.cpp
|
|
cocos/editor-support/spine/SpineObject.h
|
|
cocos/editor-support/spine/SpineString.h
|
|
NO_WERROR cocos/editor-support/spine/TextureLoader.cpp
|
|
cocos/editor-support/spine/TextureLoader.h
|
|
NO_WERROR cocos/editor-support/spine/Timeline.cpp
|
|
cocos/editor-support/spine/Timeline.h
|
|
cocos/editor-support/spine/TimelineType.h
|
|
NO_WERROR cocos/editor-support/spine/TransformConstraint.cpp
|
|
cocos/editor-support/spine/TransformConstraint.h
|
|
NO_WERROR cocos/editor-support/spine/TransformConstraintData.cpp
|
|
cocos/editor-support/spine/TransformConstraintData.h
|
|
NO_WERROR cocos/editor-support/spine/TransformConstraintTimeline.cpp
|
|
cocos/editor-support/spine/TransformConstraintTimeline.h
|
|
cocos/editor-support/spine/TransformMode.h
|
|
NO_WERROR cocos/editor-support/spine/TranslateTimeline.cpp
|
|
cocos/editor-support/spine/TranslateTimeline.h
|
|
NO_WERROR cocos/editor-support/spine/Triangulator.cpp
|
|
cocos/editor-support/spine/Triangulator.h
|
|
NO_WERROR cocos/editor-support/spine/TwoColorTimeline.cpp
|
|
cocos/editor-support/spine/TwoColorTimeline.h
|
|
NO_WERROR cocos/editor-support/spine/Updatable.cpp
|
|
cocos/editor-support/spine/Updatable.h
|
|
cocos/editor-support/spine/Vector.h
|
|
NO_WERROR cocos/editor-support/spine/VertexAttachment.cpp
|
|
cocos/editor-support/spine/VertexAttachment.h
|
|
NO_WERROR cocos/editor-support/spine/VertexEffect.cpp
|
|
cocos/editor-support/spine/VertexEffect.h
|
|
cocos/editor-support/spine/Vertices.h
|
|
NO_WERROR cocos/editor-support/spine-creator-support/AttachmentVertices.cpp
|
|
cocos/editor-support/spine-creator-support/AttachmentVertices.h
|
|
NO_WERROR cocos/editor-support/spine-creator-support/SkeletonAnimation.cpp
|
|
cocos/editor-support/spine-creator-support/SkeletonAnimation.h
|
|
NO_WERROR cocos/editor-support/spine-creator-support/SkeletonCache.cpp
|
|
cocos/editor-support/spine-creator-support/SkeletonCache.h
|
|
NO_WERROR cocos/editor-support/spine-creator-support/SkeletonCacheAnimation.cpp
|
|
cocos/editor-support/spine-creator-support/SkeletonCacheAnimation.h
|
|
NO_WERROR cocos/editor-support/spine-creator-support/SkeletonCacheMgr.cpp
|
|
cocos/editor-support/spine-creator-support/SkeletonCacheMgr.h
|
|
NO_WERROR cocos/editor-support/spine-creator-support/SkeletonDataMgr.cpp
|
|
cocos/editor-support/spine-creator-support/SkeletonDataMgr.h
|
|
NO_WERROR NO_UBUILD cocos/editor-support/spine-creator-support/SkeletonRenderer.cpp
|
|
cocos/editor-support/spine-creator-support/SkeletonRenderer.h
|
|
NO_WERROR cocos/editor-support/spine-creator-support/spine-cocos2dx.cpp
|
|
cocos/editor-support/spine-creator-support/spine-cocos2dx.h
|
|
NO_WERROR cocos/editor-support/spine-creator-support/VertexEffectDelegate.cpp
|
|
cocos/editor-support/spine-creator-support/VertexEffectDelegate.h
|
|
cocos/editor-support/spine-creator-support/VertexEffectDelegate.h
|
|
NO_WERROR cocos/editor-support/spine-creator-support/Vector2.cpp
|
|
cocos/editor-support/spine-creator-support/Vector2.h
|
|
|
|
)
|
|
cocos_source_files(
|
|
NO_WERROR ${SWIG_OUTPUT}/jsb_spine_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_spine_auto.h
|
|
NO_WERROR cocos/bindings/manual/jsb_spine_manual.cpp
|
|
cocos/bindings/manual/jsb_spine_manual.h
|
|
)
|
|
endif()
|
|
|
|
if(USE_DRAGONBONES)
|
|
cocos_source_files(
|
|
cocos/editor-support/dragonbones/DragonBonesHeaders.h
|
|
NO_WERROR cocos/editor-support/dragonbones/animation/Animation.cpp
|
|
cocos/editor-support/dragonbones/animation/Animation.h
|
|
NO_WERROR cocos/editor-support/dragonbones/animation/AnimationState.cpp
|
|
cocos/editor-support/dragonbones/animation/AnimationState.h
|
|
NO_WERROR cocos/editor-support/dragonbones/animation/BaseTimelineState.cpp
|
|
cocos/editor-support/dragonbones/animation/BaseTimelineState.h
|
|
cocos/editor-support/dragonbones/animation/IAnimatable.h
|
|
NO_WERROR cocos/editor-support/dragonbones/animation/TimelineState.cpp
|
|
cocos/editor-support/dragonbones/animation/TimelineState.h
|
|
NO_WERROR cocos/editor-support/dragonbones/animation/WorldClock.cpp
|
|
cocos/editor-support/dragonbones/animation/WorldClock.h
|
|
NO_WERROR cocos/editor-support/dragonbones/armature/Armature.cpp
|
|
cocos/editor-support/dragonbones/armature/Armature.h
|
|
NO_WERROR cocos/editor-support/dragonbones/armature/Bone.cpp
|
|
cocos/editor-support/dragonbones/armature/Bone.h
|
|
NO_WERROR cocos/editor-support/dragonbones/armature/Constraint.cpp
|
|
cocos/editor-support/dragonbones/armature/Constraint.h
|
|
NO_WERROR cocos/editor-support/dragonbones/armature/DeformVertices.cpp
|
|
cocos/editor-support/dragonbones/armature/DeformVertices.h
|
|
cocos/editor-support/dragonbones/armature/IArmatureProxy.h
|
|
NO_WERROR cocos/editor-support/dragonbones/armature/Slot.cpp
|
|
cocos/editor-support/dragonbones/armature/Slot.h
|
|
NO_WERROR cocos/editor-support/dragonbones/armature/TransformObject.cpp
|
|
cocos/editor-support/dragonbones/armature/TransformObject.h
|
|
NO_WERROR cocos/editor-support/dragonbones/core/BaseObject.cpp
|
|
cocos/editor-support/dragonbones/core/BaseObject.h
|
|
NO_WERROR cocos/editor-support/dragonbones/core/DragonBones.cpp
|
|
cocos/editor-support/dragonbones/core/DragonBones.h
|
|
NO_WERROR cocos/editor-support/dragonbones/event/EventObject.cpp
|
|
cocos/editor-support/dragonbones/event/EventObject.h
|
|
cocos/editor-support/dragonbones/event/IEventDispatcher.h
|
|
NO_WERROR cocos/editor-support/dragonbones/factory/BaseFactory.cpp
|
|
cocos/editor-support/dragonbones/factory/BaseFactory.h
|
|
cocos/editor-support/dragonbones/geom/ColorTransform.h
|
|
cocos/editor-support/dragonbones/geom/Matrix.h
|
|
NO_WERROR cocos/editor-support/dragonbones/geom/Point.cpp
|
|
cocos/editor-support/dragonbones/geom/Point.h
|
|
cocos/editor-support/dragonbones/geom/Rectangle.h
|
|
NO_WERROR cocos/editor-support/dragonbones/geom/Transform.cpp
|
|
cocos/editor-support/dragonbones/geom/Transform.h
|
|
NO_WERROR cocos/editor-support/dragonbones/model/AnimationConfig.cpp
|
|
cocos/editor-support/dragonbones/model/AnimationConfig.h
|
|
NO_WERROR cocos/editor-support/dragonbones/model/AnimationData.cpp
|
|
cocos/editor-support/dragonbones/model/AnimationData.h
|
|
NO_WERROR cocos/editor-support/dragonbones/model/ArmatureData.cpp
|
|
cocos/editor-support/dragonbones/model/ArmatureData.h
|
|
NO_WERROR cocos/editor-support/dragonbones/model/BoundingBoxData.cpp
|
|
cocos/editor-support/dragonbones/model/BoundingBoxData.h
|
|
NO_WERROR cocos/editor-support/dragonbones/model/CanvasData.cpp
|
|
cocos/editor-support/dragonbones/model/CanvasData.h
|
|
NO_WERROR cocos/editor-support/dragonbones/model/ConstraintData.cpp
|
|
cocos/editor-support/dragonbones/model/ConstraintData.h
|
|
NO_WERROR cocos/editor-support/dragonbones/model/DisplayData.cpp
|
|
cocos/editor-support/dragonbones/model/DisplayData.h
|
|
NO_WERROR cocos/editor-support/dragonbones/model/DragonBonesData.cpp
|
|
cocos/editor-support/dragonbones/model/DragonBonesData.h
|
|
NO_WERROR cocos/editor-support/dragonbones/model/SkinData.cpp
|
|
cocos/editor-support/dragonbones/model/SkinData.h
|
|
NO_WERROR cocos/editor-support/dragonbones/model/TextureAtlasData.cpp
|
|
cocos/editor-support/dragonbones/model/TextureAtlasData.h
|
|
NO_WERROR cocos/editor-support/dragonbones/model/UserData.cpp
|
|
cocos/editor-support/dragonbones/model/UserData.h
|
|
NO_WERROR cocos/editor-support/dragonbones/parser/BinaryDataParser.cpp
|
|
cocos/editor-support/dragonbones/parser/BinaryDataParser.h
|
|
NO_WERROR cocos/editor-support/dragonbones/parser/DataParser.cpp
|
|
cocos/editor-support/dragonbones/parser/DataParser.h
|
|
NO_WERROR NO_UBUILD cocos/editor-support/dragonbones/parser/JSONDataParser.cpp
|
|
cocos/editor-support/dragonbones/parser/JSONDataParser.h
|
|
NO_WERROR cocos/editor-support/dragonbones-creator-support/ArmatureCache.cpp
|
|
cocos/editor-support/dragonbones-creator-support/ArmatureCache.h
|
|
NO_WERROR cocos/editor-support/dragonbones-creator-support/ArmatureCacheMgr.cpp
|
|
cocos/editor-support/dragonbones-creator-support/ArmatureCacheMgr.h
|
|
NO_WERROR cocos/editor-support/dragonbones-creator-support/CCArmatureCacheDisplay.cpp
|
|
cocos/editor-support/dragonbones-creator-support/CCArmatureCacheDisplay.h
|
|
NO_WERROR NO_UBUILD cocos/editor-support/dragonbones-creator-support/CCArmatureDisplay.cpp
|
|
cocos/editor-support/dragonbones-creator-support/CCArmatureDisplay.h
|
|
cocos/editor-support/dragonbones-creator-support/CCDragonBonesHeaders.h
|
|
NO_WERROR cocos/editor-support/dragonbones-creator-support/CCFactory.cpp
|
|
cocos/editor-support/dragonbones-creator-support/CCFactory.h
|
|
NO_WERROR cocos/editor-support/dragonbones-creator-support/CCSlot.cpp
|
|
cocos/editor-support/dragonbones-creator-support/CCSlot.h
|
|
NO_WERROR cocos/editor-support/dragonbones-creator-support/CCTextureAtlasData.cpp
|
|
cocos/editor-support/dragonbones-creator-support/CCTextureAtlasData.h
|
|
|
|
)
|
|
cocos_source_files(
|
|
NO_WERROR ${SWIG_OUTPUT}/jsb_dragonbones_auto.cpp
|
|
${SWIG_OUTPUT}/jsb_dragonbones_auto.h
|
|
NO_WERROR cocos/bindings/manual/jsb_dragonbones_manual.cpp
|
|
cocos/bindings/manual/jsb_dragonbones_manual.h
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
######## manual
|
|
cocos_source_files(
|
|
NO_WERROR cocos/bindings/manual/jsb_network_manual.cpp
|
|
cocos/bindings/manual/jsb_network_manual.h
|
|
NO_WERROR cocos/bindings/manual/jsb_xmlhttprequest.cpp
|
|
cocos/bindings/manual/jsb_xmlhttprequest.h
|
|
|
|
)
|
|
|
|
cocos_source_files(
|
|
cocos/bindings/manual/jsb_classtype.cpp
|
|
cocos/bindings/manual/jsb_classtype.h
|
|
cocos/bindings/manual/jsb_cocos_manual.cpp
|
|
cocos/bindings/manual/jsb_cocos_manual.h
|
|
cocos/bindings/manual/jsb_geometry_manual.cpp
|
|
cocos/bindings/manual/jsb_geometry_manual.h
|
|
cocos/bindings/manual/jsb_conversions.h
|
|
cocos/bindings/manual/jsb_conversions_spec.cpp
|
|
cocos/bindings/manual/jsb_conversions_spec.h
|
|
cocos/bindings/manual/jsb_gfx_manual.cpp
|
|
cocos/bindings/manual/jsb_gfx_manual.h
|
|
cocos/bindings/manual/jsb_global.cpp
|
|
cocos/bindings/manual/jsb_global.h
|
|
cocos/bindings/manual/jsb_helper.cpp
|
|
cocos/bindings/manual/jsb_helper.h
|
|
cocos/bindings/manual/jsb_module_register.h
|
|
cocos/bindings/manual/jsb_module_register.cpp
|
|
cocos/bindings/manual/jsb_platform.h
|
|
cocos/bindings/manual/jsb_scene_manual.cpp
|
|
cocos/bindings/manual/jsb_scene_manual.h
|
|
cocos/bindings/manual/jsb_assets_manual.cpp
|
|
cocos/bindings/manual/jsb_assets_manual.h
|
|
cocos/bindings/manual/jsb_network_manual.cpp
|
|
cocos/bindings/manual/jsb_network_manual.h
|
|
cocos/bindings/manual/jsb_xmlhttprequest.cpp
|
|
cocos/bindings/manual/jsb_xmlhttprequest.h
|
|
cocos/bindings/manual/jsb_pipeline_manual.h
|
|
cocos/bindings/manual/jsb_pipeline_manual.cpp
|
|
cocos/bindings/manual/jsb_adpf.cpp
|
|
)
|
|
if(USE_AUDIO)
|
|
cocos_source_files(
|
|
cocos/bindings/manual/jsb_audio_manual.cpp
|
|
cocos/bindings/manual/jsb_audio_manual.h
|
|
)
|
|
endif()
|
|
if(USE_SOCKET)
|
|
cocos_source_files(
|
|
cocos/bindings/manual/jsb_socketio.cpp
|
|
cocos/bindings/manual/jsb_socketio.h
|
|
cocos/bindings/manual/jsb_websocket.cpp
|
|
cocos/bindings/manual/jsb_websocket.h
|
|
)
|
|
endif()
|
|
|
|
if(USE_WEBSOCKET_SERVER)
|
|
cocos_source_files(
|
|
cocos/bindings/manual/jsb_websocket_server.cpp
|
|
cocos/bindings/manual/jsb_websocket_server.h
|
|
)
|
|
endif()
|
|
|
|
if(ANDROID)
|
|
cocos_source_files(
|
|
cocos/bindings/manual/jsb_platform_android.cpp
|
|
cocos/bindings/manual/JavaScriptJavaBridge.cpp
|
|
cocos/bindings/manual/JavaScriptJavaBridge.h
|
|
)
|
|
elseif(OPENHARMONY)
|
|
cocos_source_files(
|
|
cocos/bindings/manual/jsb_platform_openharmony.cpp
|
|
)
|
|
elseif(OHOS)
|
|
cocos_source_files(
|
|
cocos/bindings/manual/jsb_platform_ohos.cpp
|
|
cocos/bindings/manual/JavaScriptJavaBridge.cpp
|
|
cocos/bindings/manual/JavaScriptJavaBridge.h
|
|
)
|
|
elseif(APPLE)
|
|
cocos_source_files(
|
|
cocos/bindings/manual/jsb_platform_apple.mm
|
|
cocos/bindings/manual/JavaScriptObjCBridge.h
|
|
cocos/bindings/manual/JavaScriptObjCBridge.mm
|
|
cocos/platform/apple/JsbBridge.h
|
|
cocos/platform/apple/JsbBridge.mm
|
|
cocos/platform/apple/JsbBridgeWrapper.h
|
|
cocos/platform/apple/JsbBridgeWrapper.mm
|
|
)
|
|
elseif(WIN32)
|
|
cocos_source_files(
|
|
NO_WERROR cocos/bindings/manual/jsb_platform_win32.cpp
|
|
)
|
|
elseif(LINUX)
|
|
cocos_source_files(
|
|
NO_WERROR cocos/bindings/manual/jsb_platform_linux.cpp
|
|
)
|
|
endif()
|
|
|
|
############# module bindings
|
|
cocos_source_files(MODULE ccbindings
|
|
cocos/bindings/sebind/intl/common.h
|
|
cocos/bindings/sebind/intl/common.cpp
|
|
cocos/bindings/sebind/class.inl
|
|
cocos/bindings/sebind/sebind.h
|
|
)
|
|
|
|
if(USE_SE_V8)
|
|
cocos_source_files(MODULE ccbindings
|
|
cocos/bindings/sebind/class_v8.h
|
|
cocos/bindings/sebind/class_v8.cpp
|
|
cocos/bindings/jswrapper/v8/Base.h
|
|
cocos/bindings/jswrapper/v8/Class.cpp
|
|
cocos/bindings/jswrapper/v8/Class.h
|
|
cocos/bindings/jswrapper/v8/HelperMacros.h
|
|
cocos/bindings/jswrapper/v8/HelperMacros.cpp
|
|
cocos/bindings/jswrapper/v8/Object.cpp
|
|
cocos/bindings/jswrapper/v8/Object.h
|
|
cocos/bindings/jswrapper/v8/ObjectWrap.cpp
|
|
cocos/bindings/jswrapper/v8/ObjectWrap.h
|
|
cocos/bindings/jswrapper/v8/ScriptEngine.cpp
|
|
cocos/bindings/jswrapper/v8/ScriptEngine.h
|
|
cocos/bindings/jswrapper/v8/SeApi.h
|
|
cocos/bindings/jswrapper/v8/Utils.cpp
|
|
cocos/bindings/jswrapper/v8/Utils.h
|
|
cocos/bindings/jswrapper/v8/MissingSymbols.cpp
|
|
cocos/bindings/jswrapper/v8/MissingSymbols.h
|
|
)
|
|
if(USE_V8_DEBUGGER)
|
|
cocos_source_files(MODULE ccbindings
|
|
cocos/bindings/jswrapper/v8/debugger/base64.h
|
|
NO_WERROR cocos/bindings/jswrapper/v8/debugger/env.cpp
|
|
cocos/bindings/jswrapper/v8/debugger/env.h
|
|
NO_WERROR NO_UBUILD cocos/bindings/jswrapper/v8/debugger/http_parser.cpp
|
|
cocos/bindings/jswrapper/v8/debugger/http_parser.h
|
|
NO_WERROR cocos/bindings/jswrapper/v8/debugger/inspector_agent.cpp
|
|
cocos/bindings/jswrapper/v8/debugger/inspector_agent.h
|
|
NO_WERROR cocos/bindings/jswrapper/v8/debugger/inspector_io.cpp
|
|
cocos/bindings/jswrapper/v8/debugger/inspector_io.h
|
|
NO_WERROR cocos/bindings/jswrapper/v8/debugger/inspector_socket.cpp
|
|
cocos/bindings/jswrapper/v8/debugger/inspector_socket.h
|
|
NO_WERROR cocos/bindings/jswrapper/v8/debugger/inspector_socket_server.cpp
|
|
cocos/bindings/jswrapper/v8/debugger/inspector_socket_server.h
|
|
NO_WERROR cocos/bindings/jswrapper/v8/debugger/node.cpp
|
|
cocos/bindings/jswrapper/v8/debugger/node.h
|
|
NO_WERROR cocos/bindings/jswrapper/v8/debugger/node_debug_options.cpp
|
|
cocos/bindings/jswrapper/v8/debugger/node_debug_options.h
|
|
cocos/bindings/jswrapper/v8/debugger/node_mutex.h
|
|
NO_WERROR cocos/bindings/jswrapper/v8/debugger/SHA1.cpp
|
|
cocos/bindings/jswrapper/v8/debugger/SHA1.h
|
|
cocos/bindings/jswrapper/v8/debugger/util-inl.h
|
|
NO_WERROR cocos/bindings/jswrapper/v8/debugger/util.cpp
|
|
cocos/bindings/jswrapper/v8/debugger/util.h
|
|
cocos/bindings/jswrapper/v8/debugger/v8_inspector_protocol_json.h
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
if(USE_SE_SM)
|
|
cocos_source_files(MODULE ccbindings
|
|
cocos/bindings/jswrapper/sm/Base.h
|
|
NO_WERROR cocos/bindings/jswrapper/sm/Class.cpp
|
|
cocos/bindings/jswrapper/sm/Class.h
|
|
cocos/bindings/jswrapper/sm/HelperMacros.h
|
|
NO_WERROR cocos/bindings/jswrapper/sm/HelperMacros.cpp
|
|
NO_WERROR cocos/bindings/jswrapper/sm/Object.cpp
|
|
cocos/bindings/jswrapper/sm/Object.h
|
|
NO_WERROR cocos/bindings/jswrapper/sm/ScriptEngine.cpp
|
|
cocos/bindings/jswrapper/sm/ScriptEngine.h
|
|
cocos/bindings/jswrapper/sm/SeApi.h
|
|
NO_WERROR cocos/bindings/jswrapper/sm/Utils.cpp
|
|
cocos/bindings/jswrapper/sm/Utils.h
|
|
)
|
|
endif()
|
|
|
|
if(USE_SE_NAPI)
|
|
cocos_source_files(MODULE ccbindings
|
|
cocos/bindings/jswrapper/napi/Class.cpp
|
|
cocos/bindings/jswrapper/napi/Class.h
|
|
cocos/bindings/jswrapper/napi/CommonHeader.h
|
|
cocos/bindings/jswrapper/napi/HelperMacros.h
|
|
cocos/bindings/jswrapper/napi/HelperMacros.cpp
|
|
cocos/bindings/jswrapper/napi/Object.cpp
|
|
cocos/bindings/jswrapper/napi/Object.h
|
|
NO_WERROR cocos/bindings/jswrapper/napi/ScriptEngine.cpp
|
|
cocos/bindings/jswrapper/napi/ScriptEngine.h
|
|
cocos/bindings/jswrapper/napi/SeApi.h
|
|
NO_WERROR cocos/bindings/jswrapper/napi/Utils.cpp
|
|
cocos/bindings/jswrapper/napi/Utils.h
|
|
)
|
|
endif()
|
|
|
|
cocos_source_files(MODULE ccbindings
|
|
cocos/bindings/jswrapper/config.h
|
|
cocos/bindings/jswrapper/config.cpp
|
|
cocos/bindings/jswrapper/HandleObject.cpp
|
|
cocos/bindings/jswrapper/HandleObject.h
|
|
cocos/bindings/jswrapper/MappingUtils.cpp
|
|
cocos/bindings/jswrapper/MappingUtils.h
|
|
cocos/bindings/jswrapper/Object.h
|
|
cocos/bindings/jswrapper/RefCounter.cpp
|
|
cocos/bindings/jswrapper/RefCounter.h
|
|
cocos/bindings/jswrapper/SeApi.h
|
|
cocos/bindings/jswrapper/State.h
|
|
cocos/bindings/jswrapper/PrivateObject.h
|
|
cocos/bindings/jswrapper/Value.cpp
|
|
cocos/bindings/jswrapper/Value.h
|
|
cocos/bindings/jswrapper/ValueArrayPool.cpp
|
|
cocos/bindings/jswrapper/ValueArrayPool.h
|
|
)
|
|
|
|
cocos_source_files(
|
|
cocos/bindings/manual/jsb_global_init.cpp
|
|
cocos/bindings/manual/jsb_global_init.h
|
|
)
|
|
|
|
cocos_source_files(
|
|
cocos/bindings/event/EventDispatcher.cpp
|
|
cocos/bindings/event/EventDispatcher.h
|
|
)
|
|
|
|
#### storage
|
|
if(NOT ANDROID)
|
|
cocos_source_files(
|
|
cocos/storage/local-storage/LocalStorage.cpp
|
|
cocos/storage/local-storage/LocalStorage.h
|
|
)
|
|
else()
|
|
cocos_source_files(
|
|
cocos/storage/local-storage/LocalStorage-android.cpp
|
|
)
|
|
endif()
|
|
|
|
#### ui
|
|
if(USE_EDIT_BOX)
|
|
cocos_source_files(
|
|
cocos/ui/edit-box/EditBox.h
|
|
)
|
|
endif()
|
|
|
|
if(NOT OPENHARMONY AND (ANDROID OR IOS OR OHOS))
|
|
if(USE_VIDEO)
|
|
cocos_source_files(
|
|
cocos/ui/videoplayer/VideoPlayer.h
|
|
)
|
|
endif()
|
|
if(USE_WEBVIEW)
|
|
cocos_source_files(
|
|
cocos/ui/webview/WebView-inl.h
|
|
cocos/ui/webview/WebView.h
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
if(ANDROID)
|
|
if(USE_EDIT_BOX)
|
|
cocos_source_files(
|
|
cocos/ui/edit-box/EditBox-android.cpp
|
|
)
|
|
endif()
|
|
if(USE_VIDEO)
|
|
cocos_source_files(
|
|
cocos/ui/videoplayer/VideoPlayer-java.cpp
|
|
)
|
|
endif()
|
|
if(USE_WEBVIEW)
|
|
cocos_source_files(
|
|
cocos/ui/webview/WebViewImpl-java.h
|
|
cocos/ui/webview/WebViewImpl-android.cpp
|
|
)
|
|
endif()
|
|
elseif(OPENHARMONY)
|
|
if(USE_EDIT_BOX)
|
|
cocos_source_files(
|
|
cocos/ui/edit-box/EditBox-openharmony.h
|
|
cocos/ui/edit-box/EditBox-openharmony.cpp
|
|
)
|
|
endif()
|
|
if(USE_WEBVIEW)
|
|
cocos_source_files(
|
|
cocos/ui/webview/WebViewImpl-java.h
|
|
cocos/ui/webview/WebViewImpl-openharmony.h
|
|
cocos/ui/webview/WebViewImpl-openharmony.cpp
|
|
)
|
|
endif()
|
|
elseif(OHOS)
|
|
if(USE_EDIT_BOX)
|
|
cocos_source_files(
|
|
cocos/ui/edit-box/EditBox-ohos.cpp
|
|
)
|
|
endif()
|
|
if(USE_VIDEO)
|
|
cocos_source_files(
|
|
cocos/ui/videoplayer/VideoPlayer-java.cpp
|
|
)
|
|
endif()
|
|
if(USE_WEBVIEW)
|
|
cocos_source_files(
|
|
cocos/ui/webview/WebViewImpl-java.h
|
|
cocos/ui/webview/WebViewImpl-ohos.cpp
|
|
)
|
|
endif()
|
|
elseif(MACOSX)
|
|
if(USE_EDIT_BOX)
|
|
cocos_source_files(
|
|
cocos/ui/edit-box/EditBox-mac.mm
|
|
)
|
|
endif()
|
|
elseif(IOS)
|
|
if(USE_EDIT_BOX)
|
|
cocos_source_files(
|
|
NO_WERROR NO_UBUILD cocos/ui/edit-box/EditBox-ios.mm
|
|
)
|
|
endif()
|
|
if(USE_VIDEO)
|
|
cocos_source_files(
|
|
cocos/ui/videoplayer/VideoPlayer-ios.mm
|
|
)
|
|
endif()
|
|
if(USE_WEBVIEW)
|
|
cocos_source_files(
|
|
cocos/ui/webview/WebViewImpl-ios.h
|
|
NO_WERROR NO_UBUILD cocos/ui/webview/WebViewImpl-ios.mm
|
|
|
|
)
|
|
endif()
|
|
elseif(WIN32)
|
|
if(USE_EDIT_BOX)
|
|
cocos_source_files(
|
|
NO_WERROR cocos/ui/edit-box/EditBox-win32.cpp
|
|
)
|
|
endif()
|
|
elseif(LINUX OR QNX)
|
|
if(USE_EDIT_BOX)
|
|
cocos_source_files(
|
|
NO_WERROR cocos/ui/edit-box/EditBox-linux.cpp
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
##### ar module
|
|
if(USE_AR_MODULE)
|
|
cocos_source_files(
|
|
cocos/renderer/pipeline/xr/ar/ARStage.cpp
|
|
cocos/renderer/pipeline/xr/ar/ARStage.h
|
|
cocos/renderer/pipeline/xr/ar/ARBackground.cpp
|
|
cocos/renderer/pipeline/xr/ar/ARBackground.h
|
|
)
|
|
endif()
|
|
|
|
if(USE_XR OR USE_AR_MODULE)
|
|
list(APPEND COCOS_SOURCE_LIST ${XR_COMMON_SOURCES})
|
|
list(APPEND CC_EXTERNAL_LIBS ${XR_LIBS})
|
|
endif()
|
|
|
|
##### extensions
|
|
|
|
cocos_source_files(
|
|
extensions/assets-manager/AssetsManagerEx.cpp
|
|
extensions/assets-manager/AssetsManagerEx.h
|
|
extensions/assets-manager/AsyncTaskPool.cpp
|
|
extensions/assets-manager/AsyncTaskPool.h
|
|
extensions/assets-manager/EventAssetsManagerEx.cpp
|
|
extensions/assets-manager/EventAssetsManagerEx.h
|
|
extensions/assets-manager/Manifest.cpp
|
|
extensions/assets-manager/Manifest.h
|
|
extensions/cocos-ext.h
|
|
extensions/ExtensionExport.h
|
|
extensions/ExtensionMacros.h
|
|
)
|
|
|
|
list(APPEND COCOS_SOURCE_LIST ${CC_EXTERNAL_SOURCES})
|
|
|
|
### generate source files
|
|
|
|
set(COCOS_DEBUGINFO_SRC
|
|
${CWD}/cocos/core/builtin/DebugInfos.cpp
|
|
)
|
|
|
|
add_custom_target(builtin-res
|
|
COMMAND ${CMAKE_COMMAND} -E echo "Generate builtin resources ..."
|
|
COMMAND ${NODE_EXECUTABLE} ${CWD}/cmake/scripts/gen_debugInfos.js
|
|
${CWD}/../EngineErrorMap.md
|
|
${CWD}/cocos/core/builtin/DebugInfos.cpp.in
|
|
${CWD}/cocos/core/builtin/DebugInfos.cpp
|
|
DEPENDS
|
|
${CWD}/cocos/core/builtin/DebugInfos.cpp.in
|
|
VERBATIM USES_TERMINAL
|
|
)
|
|
set_target_properties(builtin-res PROPERTIES FOLDER Utils)
|
|
|
|
|
|
list(APPEND COCOS_SOURCE_LIST ${COCOS_DEBUGINFO_SRC})
|
|
|
|
if(USE_MODULES)
|
|
add_library(ccmath ${ccmath_SOURCE_LIST})
|
|
add_library(cclog ${cclog_SOURCE_LIST})
|
|
add_library(ccfilesystem ${ccfilesystem_SOURCE_LIST} ${CC_TINYDIR_SOURCES})
|
|
add_library(ccutils ${ccutils_SOURCE_LIST} ${CC_UTILS_SOURCES})
|
|
add_library(ccunzip ${ccunzip_SOURCE_LIST} ${CC_UNZIP_SOURCES})
|
|
add_library(ccbindings ${ccbindings_SOURCE_LIST})
|
|
add_library(ccgeometry ${ccgeometry_SOURCE_LIST})
|
|
|
|
target_include_directories(ccmath PRIVATE
|
|
${CWD}/cocos
|
|
)
|
|
target_include_directories(ccgeometry PRIVATE
|
|
${CWD}/cocos
|
|
)
|
|
target_include_directories(ccunzip PRIVATE
|
|
${CWD}/external/sources/unzip
|
|
${CWD}/external/sources
|
|
${CWD}/cocos
|
|
)
|
|
target_include_directories(cclog PRIVATE
|
|
${CWD}/cocos
|
|
)
|
|
target_include_directories(ccfilesystem PRIVATE
|
|
${CWD}
|
|
${CWD}/cocos
|
|
${CWD}/external/sources
|
|
)
|
|
target_include_directories(ccutils PRIVATE
|
|
${CWD}/cocos
|
|
${CWD}/external/sources
|
|
)
|
|
target_include_directories(ccbindings PRIVATE
|
|
${CWD}/cocos
|
|
${CWD}/cocos/bindings/jswrapper
|
|
${CWD}/cocos/editor-support # TODO: refactor include path
|
|
${CWD}
|
|
${CC_EXTERNAL_INCLUDES}
|
|
)
|
|
target_link_libraries(ccunzip PUBLIC
|
|
${ZLIB}
|
|
)
|
|
target_link_libraries(ccfilesystem PUBLIC
|
|
ccunzip
|
|
ccutils
|
|
cclog
|
|
)
|
|
target_link_libraries(ccbindings PUBLIC
|
|
ccfilesystem
|
|
cclog
|
|
${se_libs_name}
|
|
uv
|
|
)
|
|
target_link_libraries(ccgeometry PUBLIC
|
|
ccmath
|
|
)
|
|
if(ANDROID)
|
|
target_link_libraries(ccmath PUBLIC
|
|
android_platform
|
|
)
|
|
target_link_libraries(cclog PUBLIC
|
|
log
|
|
)
|
|
target_link_libraries(ccfilesystem PUBLIC
|
|
cocos_jni
|
|
)
|
|
elseif(OPENHARMONY)
|
|
|
|
elseif(OHOS)
|
|
target_link_libraries(cclog PUBLIC
|
|
hilog_ndk.z
|
|
)
|
|
target_link_libraries(ccfilesystem PUBLIC
|
|
cocos_jni
|
|
rawfile.z
|
|
)
|
|
elseif(APPLE)
|
|
target_link_libraries(ccfilesystem PUBLIC
|
|
"-framework Foundation"
|
|
"-framework SystemConfiguration"
|
|
)
|
|
endif()
|
|
else()
|
|
list(APPEND COCOS_SOURCE_LIST
|
|
${ccmath_SOURCE_LIST}
|
|
${ccgeometry_SOURCE_LIST}
|
|
${cclog_SOURCE_LIST}
|
|
${ccfilesystem_SOURCE_LIST}
|
|
${ccunzip_SOURCE_LIST}
|
|
${ccbindings_SOURCE_LIST}
|
|
${ccutils_SOURCE_LIST}
|
|
${CC_UNZIP_SOURCES}
|
|
${CC_TINYDIR_SOURCES}
|
|
)
|
|
endif()
|
|
|
|
|
|
if(QNX)
|
|
include(${QNX_PATH}/source.cmake)
|
|
qnx_source_list(ccqnx_SOURCE_LIST ${QNX_PATH})
|
|
source_group(TREE ${QNX_PATH} PREFIX "Source Files" FILES ${ccqnx_SOURCE_LIST}})
|
|
list(APPEND COCOS_SOURCE_LIST ${ccqnx_SOURCE_LIST})
|
|
endif()
|
|
|
|
add_library(${ENGINE_NAME} ${COCOS_SOURCE_LIST})
|
|
|
|
if(CMAKE_GENERATOR STREQUAL "Xcode")
|
|
add_dependencies(${ENGINE_NAME} genbindings)
|
|
endif()
|
|
|
|
|
|
if(USE_MODULES)
|
|
target_link_libraries(${ENGINE_NAME} PUBLIC
|
|
ccmath
|
|
cclog
|
|
ccfilesystem
|
|
ccunzip
|
|
ccbindings
|
|
ccutils
|
|
)
|
|
endif()
|
|
|
|
|
|
if(ANDROID OR (NOT OPENHARMONY AND OHOS))
|
|
cc_enable_werror("${CC_JNI_SRC_FILES}")
|
|
add_library(cocos_jni STATIC ${CC_JNI_SRC_FILES})
|
|
target_include_directories(cocos_jni PUBLIC
|
|
${CWD}
|
|
${CWD}/cocos
|
|
${CC_EXTERNAL_INCLUDES}
|
|
)
|
|
if(ANDROID)
|
|
target_link_libraries(cocos_jni PUBLIC
|
|
android_platform
|
|
android
|
|
log
|
|
)
|
|
# Export GameActivity_onCreate(),
|
|
# Refer to: https://github.com/android-ndk/ndk/issues/381.
|
|
set(CMAKE_SHARED_LINKER_FLAGS
|
|
"${CMAKE_SHARED_LINKER_FLAGS} -u GameActivity_onCreate")
|
|
endif()
|
|
endif()
|
|
|
|
################################# cc_apply_definations ###################################
|
|
function(cc_apply_definations target)
|
|
target_compile_definitions(${target} PUBLIC
|
|
$<IF:$<BOOL:${USE_VIDEO}>,CC_USE_VIDEO=1,CC_USE_VIDEO=0>
|
|
$<IF:$<BOOL:${USE_WEBVIEW}>,CC_USE_WEBVIEW=1,CC_USE_WEBVIEW=0>
|
|
$<IF:$<BOOL:${USE_AUDIO}>,CC_USE_AUDIO=1,CC_USE_AUDIO=0>
|
|
$<IF:$<BOOL:${USE_XR}>,CC_USE_XR=1,CC_USE_XR=0>
|
|
$<IF:$<BOOL:${USE_XR_REMOTE_PREVIEW}>,CC_USE_XR_REMOTE_PREVIEW=1,CC_USE_XR_REMOTE_PREVIEW=0>
|
|
$<IF:$<BOOL:${USE_SOCKET}>,CC_USE_SOCKET=1,CC_USE_SOCKET=0>
|
|
$<IF:$<BOOL:${USE_WEBSOCKET_SERVER}>,CC_USE_WEBSOCKET_SERVER=1,CC_USE_WEBSOCKET_SERVER=0>
|
|
$<IF:$<BOOL:${USE_EDIT_BOX}>,CC_USE_EDITBOX=1,CC_USE_EDITBOX=0>
|
|
# USE_V8_DEBUGGER = USE_V8_DEBUGGER && (in_debug_mode OR USE_V8_DEBUGGER_FORCEON)
|
|
$<IF:$<AND:$<OR:$<CONFIG:Debug>,$<BOOL:${USE_V8_DEBUGGER_FORCE}>>,$<BOOL:${USE_V8_DEBUGGER}>>,USE_V8_DEBUGGER=1,USE_V8_DEBUGGER=0>
|
|
$<IF:$<BOOL:${USE_MIDDLEWARE}>,CC_USE_MIDDLEWARE=1,CC_USE_MIDDLEWARE=0>
|
|
$<IF:$<BOOL:${USE_SPINE}>,CC_USE_SPINE=1,CC_USE_SPINE=0>
|
|
$<IF:$<BOOL:${USE_DRAGONBONES}>,CC_USE_DRAGONBONES=1,CC_USE_DRAGONBONES=0>
|
|
$<IF:$<BOOL:${USE_JOB_SYSTEM_TBB}>,CC_USE_JOB_SYSTEM_TBB=1,CC_USE_JOB_SYSTEM_TBB=0>
|
|
$<IF:$<BOOL:${USE_JOB_SYSTEM_TASKFLOW}>,CC_USE_JOB_SYSTEM_TASKFLOW=1,CC_USE_JOB_SYSTEM_TASKFLOW=0>
|
|
$<IF:$<BOOL:${USE_PHYSICS_PHYSX}>,CC_USE_PHYSICS_PHYSX=1,CC_USE_PHYSICS_PHYSX=0>
|
|
$<IF:$<BOOL:${USE_AR_MODULE}>,CC_USE_AR_MODULE=1,CC_USE_AR_MODULE=0>
|
|
$<IF:$<BOOL:${USE_AR_AUTO}>,CC_USE_AR_AUTO=1,CC_USE_AR_AUTO=0>
|
|
$<IF:$<BOOL:${USE_AR_CORE}>,CC_USE_AR_CORE=1,CC_USE_AR_CORE=0>
|
|
$<IF:$<BOOL:${USE_AR_ENGINE}>,CC_USE_AR_ENGINE=1,CC_USE_AR_ENGINE=0>
|
|
$<IF:$<BOOL:${USE_OCCLUSION_QUERY}>,CC_USE_OCCLUSION_QUERY=1,CC_USE_OCCLUSION_QUERY=0>
|
|
$<IF:$<BOOL:${USE_DEBUG_RENDERER}>,CC_USE_DEBUG_RENDERER=1,CC_USE_DEBUG_RENDERER=0>
|
|
$<IF:$<BOOL:${USE_GEOMETRY_RENDERER}>,CC_USE_GEOMETRY_RENDERER=1,CC_USE_GEOMETRY_RENDERER=0>
|
|
$<IF:$<BOOL:${USE_WEBP}>,CC_USE_WEBP=1,CC_USE_WEBP=0>
|
|
$<IF:$<BOOL:${CC_EDITOR}>,CC_EDITOR=1,CC_EDITOR=0>
|
|
$<IF:$<BOOL:${ENABLE_FLOAT_OUTPUT}>,ENABLE_FLOAT_OUTPUT=1,ENABLE_FLOAT_OUTPUT=0>
|
|
$<$<BOOL:${USE_REMOTE_LOG}>:CC_REMOTE_LOG=1>
|
|
$<$<BOOL:${USE_SE_SM}>:SCRIPT_ENGINE_TYPE=1>
|
|
$<$<BOOL:${USE_SE_V8}>:SCRIPT_ENGINE_TYPE=2>
|
|
$<$<BOOL:${USE_SE_NAPI}>:SCRIPT_ENGINE_TYPE=5>
|
|
$<$<OR:$<CONFIG:Debug>,$<BOOL:${CC_DEBUG_FORCE}>>:CC_DEBUG=1>
|
|
)
|
|
endfunction()
|
|
|
|
# setup default flags
|
|
cc_apply_definations(${ENGINE_NAME})
|
|
|
|
if(USE_MODULES)
|
|
cc_apply_definations(ccmath)
|
|
cc_apply_definations(cclog)
|
|
cc_apply_definations(ccfilesystem)
|
|
cc_apply_definations(ccunzip)
|
|
cc_apply_definations(ccbindings)
|
|
cc_apply_definations(ccutils)
|
|
endif()
|
|
|
|
if(USE_XR)
|
|
cc_xr_apply_definations(${ENGINE_NAME})
|
|
if(USE_MODULES)
|
|
cc_xr_apply_definations(ccmath)
|
|
cc_xr_apply_definations(cclog)
|
|
cc_xr_apply_definations(ccfilesystem)
|
|
cc_xr_apply_definations(ccunzip)
|
|
cc_xr_apply_definations(ccbindings)
|
|
cc_xr_apply_definations(ccutils)
|
|
endif()
|
|
endif()
|
|
|
|
if(MSVC)
|
|
set(V8_DIR
|
|
${CWD}/external/win64/libs/v8
|
|
)
|
|
file(GLOB V8_DLLS
|
|
${CWD}/external/win64/libs/v8/Release/*.dll
|
|
)
|
|
|
|
file(GLOB WINDOWS_DLLS
|
|
${CWD}/external/win64/libs/*.dll
|
|
${CWD}/external/win64/libs/msvcr/*.dll
|
|
)
|
|
target_compile_options(${ENGINE_NAME} PUBLIC /MP
|
|
/bigobj
|
|
/wd4018 # signed/unsigned mismatch
|
|
/wd4221 # no public symbols
|
|
/wd4244 # type conversion data lost
|
|
/wd4267 # conversion from 'size_t' to 'type', possible loss of data
|
|
/wd4305 # truncation from 'type1' to 'type2'
|
|
/wd4309 # truncation of constant value
|
|
/wd4819 # file contains a character that cannot be represented in the current code page
|
|
/wd4996 # deprecated
|
|
/wd4098 # defaultlib conflicts
|
|
/wd4099 # PDB 'filename' was not found with 'object/library' or at 'path'; linking object as if no debug info
|
|
)
|
|
target_link_options(${ENGINE_NAME} PUBLIC
|
|
/ignore:4099 # PDB 'filename' was not found with 'object/library' or at 'path'; linking object as if no debug info
|
|
/ignore:4098 # defaultlib 'library' conflicts with use of other libs; use /NODEFAULTLIB:library
|
|
/ignore:4204 # 'filename' is missing debugging information for referencing module; linking object as if no debug info
|
|
)
|
|
endif()
|
|
|
|
if(CC_USE_VULKAN)
|
|
|
|
target_compile_definitions(${ENGINE_NAME} PUBLIC VK_NO_PROTOTYPES)
|
|
target_compile_definitions(${ENGINE_NAME} PUBLIC CC_USE_VULKAN)
|
|
|
|
if(WIN32)
|
|
target_compile_definitions(${ENGINE_NAME} PUBLIC VK_USE_PLATFORM_WIN32_KHR)
|
|
elseif(NX)
|
|
target_compile_definitions(${ENGINE_NAME} PUBLIC VK_USE_PLATFORM_VI_NN)
|
|
elseif(ANDROID)
|
|
target_compile_definitions(${ENGINE_NAME} PUBLIC VK_USE_PLATFORM_ANDROID_KHR)
|
|
elseif(IOS)
|
|
target_compile_definitions(${ENGINE_NAME} PUBLIC VK_USE_PLATFORM_IOS_MVK)
|
|
elseif(MACOSX)
|
|
target_compile_definitions(${ENGINE_NAME} PUBLIC VK_USE_PLATFORM_MACOS_MVK)
|
|
else()
|
|
target_compile_definitions(${ENGINE_NAME} PUBLIC VK_USE_PLATFORM_XCB_KHR)
|
|
endif()
|
|
endif()
|
|
|
|
if(CC_USE_METAL)
|
|
target_compile_definitions(${ENGINE_NAME} PUBLIC CC_USE_METAL)
|
|
endif()
|
|
|
|
if(CC_USE_GLES3)
|
|
target_compile_definitions(${ENGINE_NAME} PUBLIC CC_USE_GLES3)
|
|
endif()
|
|
|
|
if(CC_USE_GLES2)
|
|
target_compile_definitions(${ENGINE_NAME} PUBLIC CC_USE_GLES2)
|
|
endif()
|
|
|
|
target_include_directories(${ENGINE_NAME}
|
|
PUBLIC
|
|
${CC_EXTERNAL_INCLUDES}
|
|
${CWD}
|
|
${CWD}/cocos
|
|
${CWD}/cocos/renderer
|
|
${CWD}/cocos/platform
|
|
${CWD}/cocos/renderer/core
|
|
${CWD}/cocos/editor-support
|
|
${SWIG_OUTPUT_ROOT}
|
|
${SWIG_OUTPUT_ROOT}/cocos
|
|
$<$<BOOL:USE_SE_V8>:${CWD}/cocos/bindings/jswrapper>
|
|
PRIVATE
|
|
${CC_EXTERNAL_PRIVATE_INCLUDES}
|
|
)
|
|
|
|
target_compile_definitions(${ENGINE_NAME}
|
|
PRIVATE
|
|
${CC_EXTERNAL_PRIVATE_DEFINITIONS}
|
|
)
|
|
|
|
if(NOT APPLE)
|
|
target_include_directories(${ENGINE_NAME} PUBLIC
|
|
${CWD}/external/sources/EGL
|
|
)
|
|
endif()
|
|
|
|
target_include_directories(${ENGINE_NAME} PUBLIC
|
|
${CWD}/external/sources/khronos
|
|
)
|
|
|
|
if(NX)
|
|
include(${CMAKE_CURRENT_LIST_DIR}/platform-nx/setup.cmake)
|
|
elseif(WINDOWS)
|
|
target_link_libraries(${ENGINE_NAME} PUBLIC
|
|
ws2_32 userenv psapi winmm Iphlpapi
|
|
${CC_EXTERNAL_LIBS}
|
|
)
|
|
cc_win32_definations(${ENGINE_NAME})
|
|
|
|
if(USE_MODULES)
|
|
cc_win32_definations(ccmath)
|
|
cc_win32_definations(cclog)
|
|
cc_win32_definations(ccunzip)
|
|
cc_win32_definations(ccfilesystem)
|
|
cc_win32_definations(ccutils)
|
|
cc_win32_definations(ccbindings)
|
|
|
|
target_link_libraries(ccutils PUBLIC
|
|
ws2_32 psapi userenv Iphlpapi
|
|
)
|
|
target_link_libraries(ccbindings PUBLIC
|
|
ws2_32
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
if(ANDROID)
|
|
target_compile_options(${ENGINE_NAME} PRIVATE
|
|
-Wno-comment # nested block comments are actually useful sometimes
|
|
)
|
|
|
|
find_library(LIB_EGL NAMES EGL)
|
|
target_link_libraries(${ENGINE_NAME} PUBLIC
|
|
android
|
|
paddleboat_static
|
|
OpenSLES
|
|
${LIB_EGL}
|
|
jnigraphics
|
|
${CC_EXTERNAL_LIBS}
|
|
)
|
|
endif()
|
|
|
|
if(NOT OPENHARMONY AND OHOS)
|
|
target_link_libraries(${ENGINE_NAME} PUBLIC
|
|
EGL
|
|
GLESv3
|
|
zgraphic.z
|
|
image_pixelmap.z
|
|
rawfile.z
|
|
z
|
|
OpenSLES
|
|
hilog_ndk.z
|
|
${CC_EXTERNAL_LIBS}
|
|
)
|
|
endif()
|
|
|
|
if(OPENHARMONY)
|
|
find_library( # Sets the name of the path variable.
|
|
EGL-lib
|
|
# Specifies the name of the NDK library that
|
|
# you want CMake to locate.
|
|
EGL )
|
|
find_library( # Sets the name of the path variable.
|
|
GLESv3-lib
|
|
# Specifies the name of the NDK library that
|
|
# you want CMake to locate.
|
|
GLESv3)
|
|
|
|
find_library( hilog-lib
|
|
hilog_ndk.z )
|
|
|
|
find_library( libace-lib
|
|
libace_ndk.z )
|
|
|
|
target_link_libraries(${ENGINE_NAME} PUBLIC
|
|
${EGL-lib} ${GLESv3-lib} ${hilog-lib} libace_napi.z.so libace_ndk.z.so libz.so libuv.so libnative_drawing.so librawfile.z.so libOpenSLES.so
|
|
${CC_EXTERNAL_LIBS}
|
|
)
|
|
endif()
|
|
|
|
if(APPLE)
|
|
|
|
target_compile_options(${ENGINE_NAME} PRIVATE
|
|
-Wno-objc-method-access
|
|
)
|
|
|
|
target_include_directories(${ENGINE_NAME} PUBLIC
|
|
${CWD}/cocos/platform/ios
|
|
)
|
|
target_link_libraries(${ENGINE_NAME} PUBLIC
|
|
"-liconv"
|
|
"-framework AudioToolbox"
|
|
"-framework Foundation"
|
|
"-framework OpenAL"
|
|
"-framework GameController"
|
|
"-framework Metal"
|
|
"-framework MetalKit"
|
|
"-framework QuartzCore"
|
|
"-framework MetalPerformanceShaders"
|
|
"-lsqlite3"
|
|
"-framework Security"
|
|
"-framework SystemConfiguration"
|
|
"$(inherited)"
|
|
${CC_EXTERNAL_LIBS}
|
|
)
|
|
set_target_properties(${ENGINE_NAME} PROPERTIES
|
|
XCODE_ATTRIBUTE_ONLY_ACTIVE_ARCH "YES"
|
|
OSX_ARCHITECTURES "arm64;x86_64"
|
|
ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/archives
|
|
)
|
|
if(MACOSX)
|
|
target_link_libraries(${ENGINE_NAME} PUBLIC
|
|
"-framework OpenGL"
|
|
"-framework AppKit"
|
|
)
|
|
target_compile_definitions(${ENGINE_NAME} PUBLIC
|
|
CC_KEYBOARD_SUPPORT
|
|
)
|
|
elseif(IOS)
|
|
|
|
if("${XCODE_VERSION}" VERSION_GREATER_EQUAL "15.0")
|
|
# For Xcode 15 and newer, add extra link flags to fix crash in __cxx_global_var_init.
|
|
message(STATUS "Using Xcode 15 or newer, adding extra link flags: -Wl,-ld_classic.")
|
|
target_link_options(${ENGINE_NAME} PUBLIC -Wl,-ld_classic)
|
|
endif()
|
|
|
|
target_link_libraries(${ENGINE_NAME} PUBLIC
|
|
"-framework QuartzCore"
|
|
"-framework MetalPerformanceShaders"
|
|
"-framework UIKit"
|
|
"-framework AVKit"
|
|
"-framework WebKit"
|
|
"-framework CoreVideo"
|
|
"-framework CoreMotion"
|
|
"-framework CFNetwork"
|
|
"-framework CoreMedia"
|
|
"-framework CoreText"
|
|
"-framework CoreGraphics"
|
|
"-framework AVFoundation"
|
|
"-lz"
|
|
"-framework OpenGLES"
|
|
"-framework JavaScriptCore"
|
|
)
|
|
set_property(TARGET ${ENGINE_NAME} PROPERTY XCODE_ATTRIBUTE_IPHONEOS_DEPLOYMENT_TARGET ${TARGET_IOS_VERSION})
|
|
set_property(TARGET ${ENGINE_NAME} PROPERTY XCODE_ATTRIBUTE_ENABLE_BITCODE "NO")
|
|
endif()
|
|
|
|
endif()
|
|
|
|
if(QNX)
|
|
include(${QNX_PATH}/setup.cmake)
|
|
elseif(LINUX)
|
|
set(LINUX_GRAPHIC_LIBS "")
|
|
if(NOT USE_SERVER_MODE)
|
|
list(APPEND LINUX_GRAPHIC_LIBS X11)
|
|
endif()
|
|
target_link_libraries(${ENGINE_NAME} PUBLIC
|
|
${LINUX_GRAPHIC_LIBS}
|
|
${CC_EXTERNAL_LIBS}
|
|
)
|
|
endif()
|
|
|
|
### set source_group for generated files
|
|
set(COCOS_SOURCE_LIST_EXCLUDE_GENRATED ${COCOS_SOURCE_LIST})
|
|
set(COCOS_GENERATED_LIST)
|
|
foreach(src IN LISTS COCOS_SOURCE_LIST_EXCLUDE_GENRATED)
|
|
get_source_file_property(IS_GENERATED ${src} GENERATED)
|
|
if(IS_GENERATED)
|
|
list(REMOVE_ITEM COCOS_SOURCE_LIST_EXCLUDE_GENRATED ${src})
|
|
list(APPEND COCOS_GENERATED_LIST ${src})
|
|
endif()
|
|
endforeach()
|
|
|
|
source_group(TREE ${SWIG_OUTPUT_ROOT} PREFIX "Source Files/generated" FILES ${COCOS_GENERATED_LIST})
|
|
|
|
add_custom_target(genbindings
|
|
DEPENDS ${COCOS_GENERATED_LIST}
|
|
)
|
|
set_target_properties(genbindings PROPERTIES FOLDER Utils)
|
|
|
|
if(USE_BUILTIN_EXTERNAL)
|
|
set(EXCLUDE_EXTERANL_LIST ${COCOS_SOURCE_LIST_EXCLUDE_GENRATED})
|
|
foreach(x IN LISTS CC_EXTERNAL_SOURCES)
|
|
list(REMOVE_ITEM EXCLUDE_EXTERANL_LIST ${x})
|
|
endforeach()
|
|
if(USE_XR OR USE_AR_MODULE)
|
|
foreach(x IN LISTS XR_COMMON_SOURCES)
|
|
list(REMOVE_ITEM EXCLUDE_EXTERANL_LIST ${x})
|
|
endforeach()
|
|
endif()
|
|
source_group(TREE ${CWD} PREFIX "Source Files" FILES ${EXCLUDE_EXTERANL_LIST})
|
|
source_group(TREE ${EXTERNAL_ROOT} PREFIX "Source Files/external" FILES ${CC_EXTERNAL_SOURCES})
|
|
if(USE_XR OR USE_AR_MODULE)
|
|
source_group(TREE ${XR_COMMON_PATH} PREFIX "Source Files/common" FILES ${XR_COMMON_SOURCES})
|
|
endif()
|
|
else()
|
|
if(USE_XR OR USE_AR_MODULE)
|
|
set(EXCLUDE_XR_LIST ${COCOS_SOURCE_LIST_EXCLUDE_GENRATED})
|
|
foreach(x IN LISTS XR_COMMON_SOURCES)
|
|
list(REMOVE_ITEM EXCLUDE_XR_LIST ${x})
|
|
endforeach()
|
|
source_group(TREE ${CWD} PREFIX "Source Files" FILES ${EXCLUDE_XR_LIST})
|
|
source_group(TREE ${XR_COMMON_PATH} PREFIX "Source Files/common" FILES ${XR_COMMON_SOURCES})
|
|
else()
|
|
source_group(TREE ${CWD} PREFIX "Source Files" FILES ${COCOS_SOURCE_LIST_EXCLUDE_GENRATED})
|
|
endif()
|
|
endif()
|
|
|