0876456a22
Further GUI Editor improvements
9 lines
260 B
CMake
9 lines
260 B
CMake
FILE(GLOB SRC *.cpp *.h)
|
|
|
|
ADD_EXECUTABLE(tga_cut ${SRC})
|
|
|
|
TARGET_LINK_LIBRARIES(tga_cut nelmisc)
|
|
NL_DEFAULT_PROPS(tga_cut "NeL, Tools, 3D: tga_cut")
|
|
NL_ADD_RUNTIME_FLAGS(tga_cut)
|
|
|
|
INSTALL(TARGETS tga_cut RUNTIME DESTINATION ${NL_BIN_PREFIX} COMPONENT tools3d)
|