mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:08:11 +00:00

This is the main widget, and is never replaced by something else, so having "AdvancedView" in there is a bit confusing.
22 lines
548 B
CMake
22 lines
548 B
CMake
serenity_component(
|
|
SoundPlayer
|
|
RECOMMENDED
|
|
TARGETS SoundPlayer
|
|
DEPENDS AudioServer
|
|
)
|
|
|
|
set(SOURCES
|
|
AlbumCoverVisualizationWidget.cpp
|
|
BarsVisualizationWidget.cpp
|
|
M3UParser.cpp
|
|
PlaybackManager.cpp
|
|
Player.cpp
|
|
Playlist.cpp
|
|
PlaylistWidget.cpp
|
|
SampleWidget.cpp
|
|
SoundPlayerWidget.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_app(SoundPlayer ICON app-sound-player)
|
|
target_link_libraries(SoundPlayer PRIVATE LibAudio LibConfig LibCore LibFileSystem LibDSP LibGfx LibGUI LibIPC LibMain LibThreading LibImageDecoderClient)
|