mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
1e67435ff5
This is what this function really does, it doesn't compile anything.
31 lines
706 B
CMake
31 lines
706 B
CMake
serenity_component(
|
|
Piano
|
|
RECOMMENDED
|
|
TARGETS Piano
|
|
DEPENDS AudioServer
|
|
)
|
|
|
|
stringify_gml(ExportProgressWidget.gml ExportProgressWidget.h export_progress_widget)
|
|
|
|
set(SOURCES
|
|
AudioPlayerLoop.cpp
|
|
ExportProgressWindow.cpp
|
|
KeysWidget.cpp
|
|
main.cpp
|
|
MainWidget.cpp
|
|
PlayerWidget.cpp
|
|
RollWidget.cpp
|
|
SamplerWidget.cpp
|
|
TrackControlsWidget.cpp
|
|
TrackManager.cpp
|
|
WaveWidget.cpp
|
|
ProcessorParameterWidget/ParameterWidget.cpp
|
|
ProcessorParameterWidget/Slider.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
ExportProgressWidget.h
|
|
)
|
|
|
|
serenity_app(Piano ICON app-piano)
|
|
target_link_libraries(Piano PRIVATE LibAudio LibCore LibDSP LibGfx LibGUI LibIPC LibMain LibThreading)
|