mirror of https://github.com/axmolengine/axmol.git
8 lines
193 B
CMake
8 lines
193 B
CMake
|
set(target_name particle3d)
|
||
|
|
||
|
FILE(GLOB PARTICLE3D_SOURCES *.h;*.cpp;./**/*.h;./**/*.cpp)
|
||
|
|
||
|
add_library(${target_name} STATIC ${PARTICLE3D_SOURCES})
|
||
|
|
||
|
setup_cocos_extension_config(${target_name})
|