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

Piano now has a toolbar allowing the playback to be paused, or to be stepped forward or back a note.
23 lines
397 B
CMake
23 lines
397 B
CMake
serenity_component(
|
|
Piano
|
|
RECOMMENDED
|
|
TARGETS Piano
|
|
DEPENDS AudioServer
|
|
)
|
|
|
|
set(SOURCES
|
|
AudioPlayerLoop.cpp
|
|
Track.cpp
|
|
TrackManager.cpp
|
|
KeysWidget.cpp
|
|
KnobsWidget.cpp
|
|
main.cpp
|
|
MainWidget.cpp
|
|
PlayerWidget.cpp
|
|
RollWidget.cpp
|
|
SamplerWidget.cpp
|
|
WaveWidget.cpp
|
|
)
|
|
|
|
serenity_app(Piano ICON app-piano)
|
|
target_link_libraries(Piano LibAudio LibGUI)
|