mirror of
https://github.com/RGBCube/serenity
synced 2025-10-17 14:12:27 +00:00

This is a basic MPEG-1 layer 3 audio decoder. It supports all sample rates and stereo modes except for freeformat.
17 lines
354 B
CMake
17 lines
354 B
CMake
set(SOURCES
|
|
Buffer.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)
|