mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
9 lines
292 B
CMake
9 lines
292 B
CMake
FILE(GLOB SRC *.cpp *.h)
|
|
|
|
ADD_EXECUTABLE(anim_builder ${SRC})
|
|
|
|
TARGET_LINK_LIBRARIES(anim_builder nelmisc nel3d)
|
|
NL_DEFAULT_PROPS(anim_builder "NeL, Tools, 3D: anim_builder")
|
|
NL_ADD_RUNTIME_FLAGS(anim_builder)
|
|
|
|
INSTALL(TARGETS anim_builder RUNTIME DESTINATION bin COMPONENT tools3d)
|