9 lines
274 B
CMake
9 lines
274 B
CMake
FILE(GLOB SRC *.cpp)
|
|
|
|
ADD_EXECUTABLE(shape2obj ${SRC})
|
|
|
|
TARGET_LINK_LIBRARIES(shape2obj nelmisc nel3d)
|
|
NL_DEFAULT_PROPS(shape2obj "NeL, Tools, 3D: shape2obj")
|
|
NL_ADD_RUNTIME_FLAGS(shape2obj)
|
|
|
|
INSTALL(TARGETS shape2obj RUNTIME DESTINATION ${NL_BIN_PREFIX} COMPONENT tools3d)
|