axmol/extensions/DragonBones/CMakeLists.txt

9 lines
255 B
CMake
Raw Normal View History

set(target_name DragonBones)
FILE(GLOB_RECURSE DRAGONBONES_SOURCES *.h;*.cpp;./**/*.h;./**/*.cpp)
add_library(${target_name} STATIC ${DRAGONBONES_SOURCES})
target_include_directories(${target_name} PUBLIC src)
2022-08-11 15:41:10 +08:00
setup_ax_extension_config(${target_name})