mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 18:55:08 +00:00

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.
19 lines
394 B
CMake
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)
|