mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02: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.
20 lines
394 B
CMake
20 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)
|