mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
This is the main widget, and is never replaced by something else, so having "AdvancedView" in there is a bit confusing.
23 lines
548 B
CMake
23 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)
|