1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 13:55:08 +00:00
serenity/Userland/Libraries/LibAudio/CMakeLists.txt
kleines Filmröllchen ab49fcfb7c LibAudio+Userland: Remove Audio::LegacyBuffer
The file is now renamed to Queue.h, and the Resampler APIs with
LegacyBuffer are also removed. These changes look large because nobody
actually needs Buffer.h (or Queue.h). It was mostly transitive
dependencies on the massive list of includes in that header, which are
now almost all gone. Instead, we include common things like Sample.h
directly, which should give faster compile times as very few files
actually need Queue.h.
2022-05-03 23:09:20 +02:00

18 lines
398 B
CMake

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