mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-06 07:19:05 +00:00
13 lines
403 B
CMake
13 lines
403 B
CMake
FILE(GLOB SRC *.cpp *.h)
|
|
|
|
ADD_EXECUTABLE(build_samplebank ${SRC})
|
|
|
|
ADD_DEFINITIONS( ${LIBXML2_DEFINITIONS})
|
|
|
|
INCLUDE_DIRECTORIES(${LIBXML2_INCLUDE_DIR})
|
|
|
|
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 bin COMPONENT toolssound)
|