mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:18:13 +00:00
22 lines
560 B
CMake
22 lines
560 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
|
|
SoundPlayerWidgetAdvancedView.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)
|