2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
|
2020-09-04 17:19:51 +08:00
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
if(BUILD_SHARED_LIBS)
|
|
|
|
cmake_policy(SET CMP0079 NEW)
|
|
|
|
endif()
|
|
|
|
|
2022-08-11 15:41:10 +08:00
|
|
|
function(setup_ax_extension_config target_name)
|
2020-10-17 16:32:16 +08:00
|
|
|
set(options DNTLINK opt_DNTLINK)
|
|
|
|
cmake_parse_arguments(opt "" "${options}" ""
|
|
|
|
"" ${ARGN} )
|
|
|
|
|
2020-08-03 20:31:47 +08:00
|
|
|
if(ANDROID)
|
2022-08-08 18:02:17 +08:00
|
|
|
target_link_libraries(${target_name} INTERFACE ${_AX_CORE_LIB})
|
|
|
|
target_include_directories(${target_name} PRIVATE $<TARGET_PROPERTY:${_AX_CORE_LIB},INTERFACE_INCLUDE_DIRECTORIES>)
|
2020-08-03 20:31:47 +08:00
|
|
|
else()
|
2022-10-30 23:00:33 +08:00
|
|
|
target_link_libraries(${target_name} PUBLIC ${_AX_CORE_LIB})
|
2020-08-03 20:31:47 +08:00
|
|
|
endif()
|
2020-10-17 16:32:16 +08:00
|
|
|
|
|
|
|
if(BUILD_SHARED_LIBS)
|
|
|
|
target_compile_definitions(${target_name} PRIVATE _USREXDLL=1)
|
|
|
|
endif()
|
|
|
|
|
2020-08-03 20:31:47 +08:00
|
|
|
set_target_properties(${target_name}
|
|
|
|
PROPERTIES
|
|
|
|
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
|
|
|
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
2021-04-22 22:01:47 +08:00
|
|
|
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
|
2020-08-03 20:31:47 +08:00
|
|
|
FOLDER "Extensions"
|
|
|
|
)
|
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
if(NOT opt_DNTLINK)
|
2022-05-13 21:06:17 +08:00
|
|
|
set(_AX_EXTENSION_LIBS "${target_name};${_AX_EXTENSION_LIBS}" CACHE INTERNAL "extensions for auto link to target application")
|
2020-10-17 16:32:16 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(XCODE OR VS)
|
2022-08-11 15:41:10 +08:00
|
|
|
ax_mark_code_files("${target_name}")
|
2020-10-17 16:32:16 +08:00
|
|
|
endif()
|
|
|
|
|
2020-08-03 20:31:47 +08:00
|
|
|
endfunction()
|
|
|
|
|
2022-02-17 17:11:17 +08:00
|
|
|
if(AX_ENABLE_EXT_GUI)
|
2020-10-18 12:31:45 +08:00
|
|
|
add_subdirectory(GUI)
|
|
|
|
endif()
|
|
|
|
|
2022-02-17 17:11:17 +08:00
|
|
|
if(AX_ENABLE_EXT_ASSETMANAGER)
|
2020-08-03 20:31:47 +08:00
|
|
|
add_subdirectory(assets-manager)
|
|
|
|
endif()
|
|
|
|
|
2022-02-17 17:11:17 +08:00
|
|
|
if(AX_ENABLE_EXT_PARTICLE3D)
|
2020-08-03 20:31:47 +08:00
|
|
|
add_subdirectory(Particle3D)
|
|
|
|
endif()
|
|
|
|
|
2022-02-17 17:11:17 +08:00
|
|
|
if(AX_ENABLE_EXT_PHYSICS_NODE)
|
2020-08-03 20:31:47 +08:00
|
|
|
add_subdirectory(physics-nodes)
|
|
|
|
endif()
|
|
|
|
|
2022-02-17 17:11:17 +08:00
|
|
|
if(AX_ENABLE_EXT_SPINE)
|
2020-08-03 20:31:47 +08:00
|
|
|
add_subdirectory(spine)
|
|
|
|
endif()
|
|
|
|
|
2022-02-17 17:11:17 +08:00
|
|
|
if(AX_ENABLE_EXT_DRAGONBONES)
|
2020-10-18 00:27:23 +08:00
|
|
|
add_subdirectory(DragonBones)
|
2020-08-03 20:31:47 +08:00
|
|
|
endif()
|
|
|
|
|
2022-02-17 17:11:17 +08:00
|
|
|
if(AX_ENABLE_EXT_FAIRYGUI)
|
2020-08-04 12:31:33 +08:00
|
|
|
add_subdirectory(fairygui)
|
2020-10-17 16:32:16 +08:00
|
|
|
if(BUILD_SHARED_LIBS)
|
|
|
|
target_link_libraries(fairygui spine)
|
|
|
|
else()
|
|
|
|
target_include_directories(fairygui PUBLIC ${CMAKE_CURRENT_LIST_DIR}/spine/runtime/include)
|
|
|
|
endif()
|
2020-08-04 12:31:33 +08:00
|
|
|
endif()
|
|
|
|
|
2022-02-17 17:11:17 +08:00
|
|
|
if(AX_ENABLE_EXT_IMGUI)
|
2022-02-25 19:03:09 +08:00
|
|
|
add_subdirectory(ImGui)
|
2020-09-04 17:19:51 +08:00
|
|
|
endif()
|
|
|
|
|
2022-02-17 17:11:17 +08:00
|
|
|
if(AX_ENABLE_EXT_COCOSTUDIO)
|
2020-10-21 10:12:00 +08:00
|
|
|
add_subdirectory(cocostudio)
|
2022-02-17 17:11:17 +08:00
|
|
|
if(AX_ENABLE_EXT_SPINE)
|
2022-07-08 07:17:41 +08:00
|
|
|
target_compile_definitions(cocostudio PUBLIC AX_BUILD_WITH_SPINE=1)
|
2020-10-17 16:32:16 +08:00
|
|
|
if(BUILD_SHARED_LIBS)
|
2020-10-21 10:12:00 +08:00
|
|
|
target_link_libraries(cocostudio spine particle3d)
|
2020-10-17 16:32:16 +08:00
|
|
|
else()
|
2020-10-21 10:12:00 +08:00
|
|
|
target_include_directories(cocostudio PUBLIC ${CMAKE_CURRENT_LIST_DIR}/spine/runtime/include)
|
2020-10-17 16:32:16 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
2022-02-17 17:11:17 +08:00
|
|
|
if(AX_ENABLE_EXT_DRAGONBONES)
|
2022-07-08 07:17:41 +08:00
|
|
|
target_compile_definitions(cocostudio PRIVATE AX_BUILD_WITH_DRANGBONES=1)
|
2020-10-17 16:32:16 +08:00
|
|
|
if(BUILD_SHARED_LIBS)
|
2020-10-21 10:12:00 +08:00
|
|
|
target_link_libraries(cocostudio DragonBones)
|
2020-10-17 16:32:16 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2022-06-24 16:23:26 +08:00
|
|
|
if(AX_ENABLE_EXT_LIVE2D)
|
|
|
|
add_subdirectory(Live2D)
|
|
|
|
endif()
|
|
|
|
|
2022-10-30 23:00:33 +08:00
|
|
|
if (AX_ENABLE_EXT_EFFEKSEER)
|
|
|
|
add_subdirectory(Effekseer)
|
|
|
|
endif()
|
|
|
|
|
2022-02-17 21:31:39 +08:00
|
|
|
if(AX_ENABLE_EXT_LUA)
|
2020-10-17 16:32:16 +08:00
|
|
|
add_subdirectory(scripting/lua-bindings)
|
|
|
|
endif()
|
|
|
|
|
2022-10-01 16:24:52 +08:00
|
|
|
message(STATUS "Enabled ${_AX_CORE_LIB} extensions:${_AX_EXTENSION_LIBS}")
|