0876456a22
Further GUI Editor improvements
9 lines
296 B
CMake
9 lines
296 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 ${NL_BIN_PREFIX} COMPONENT tools3d)
|