#[[
SampleTrack extends Track with an interface for random access into a range of
stored samples.

WritableSampleTrack extends SampleTrack to support appending.

These interfaces are sufficient for the audio engine to play and record tracks,
so the engine will not depend on a particular realization of sample storage.
]]

set( TARGET au3-sample-track )

set( SOURCES
   SampleTrack.cpp
   SampleTrack.h
)
set( LIBRARIES
   au3-mixer-interface
   au3-playable-track-interface
   au3-strings-interface
   wxBase
)
audacity_library( ${TARGET} "${SOURCES}" "${LIBRARIES}"
   "" ""
)
