mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
63a36fc2f8
--HG-- branch : develop
10 lines
354 B
CMake
10 lines
354 B
CMake
FILE(GLOB SRC *.cpp *.h)
|
|
|
|
ADD_EXECUTABLE(nl_sample_stream_file ${SRC})
|
|
|
|
TARGET_LINK_LIBRARIES(nl_sample_stream_file nelmisc nelsound)
|
|
NL_DEFAULT_PROPS(nl_sample_stream_file "NeL, Samples: Sound: Stream File")
|
|
NL_ADD_RUNTIME_FLAGS(nl_sample_stream_file)
|
|
|
|
INSTALL(TARGETS nl_sample_stream_file RUNTIME DESTINATION ${NL_BIN_PREFIX} COMPONENT samplessound)
|
|
|