1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 18:55:08 +00:00
serenity/Userland/Libraries/LibAudio/CMakeLists.txt
kleines Filmröllchen 5d01db3493 LibAudio: Split Buffer.{h, cpp} into three files
The Buffer files had contained both the ResampleHelper and the
sample format utilities. Because the Buffer class (and its file) is
going to be deleted soon, this commit separates those two things into
their own files.
2022-02-26 17:57:55 +01:00

19 lines
394 B
CMake

set(SOURCES
Buffer.cpp
Resampler.cpp
SampleFormats.cpp
ConnectionFromClient.cpp
Loader.cpp
WavLoader.cpp
FlacLoader.cpp
WavWriter.cpp
MP3Loader.cpp
)
set(GENERATED_SOURCES
../../Services/AudioServer/AudioClientEndpoint.h
../../Services/AudioServer/AudioServerEndpoint.h
)
serenity_lib(LibAudio audio)
target_link_libraries(LibAudio LibCore LibIPC)