1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 00:15:08 +00:00
serenity/Userland/Libraries/LibDSP/CMakeLists.txt
kleines Filmröllchen 37b340a698 LibDSP: Introduce the Keyboard
This is a class for handling user MIDI input, which is combined by the
Track with roll note data if applicable.
2022-05-26 10:24:43 +01:00

10 lines
159 B
CMake

set(SOURCES
Clip.cpp
Track.cpp
Effects.cpp
Synthesizers.cpp
Keyboard.cpp
)
serenity_lib(LibDSP dsp)
target_link_libraries(LibDSP LibCore)