9 lines
329 B
CMake
9 lines
329 B
CMake
FILE(GLOB SRC *.cpp *.h)
|
|
|
|
ADD_EXECUTABLE(build_samplebank ${SRC})
|
|
|
|
TARGET_LINK_LIBRARIES(build_samplebank nelmisc nelsound)
|
|
NL_DEFAULT_PROPS(build_samplebank "NeL, Tools, Sound: build_samplebank")
|
|
NL_ADD_RUNTIME_FLAGS(build_samplebank)
|
|
|
|
INSTALL(TARGETS build_samplebank RUNTIME DESTINATION ${NL_BIN_PREFIX} COMPONENT toolssound)
|