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