1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-10 11:37:35 +00:00
serenity/Userland/Libraries/LibDSP/CMakeLists.txt
kleines Filmröllchen 3ca059da2d LibDSP: Create Classic synth
The Classic synthesizer is a replication of Piano's old synthesizer
engine that is removed in the next commit.
2021-11-22 22:26:17 +01:00

9 lines
142 B
CMake

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