From ebaa70b05a25e87c950c0cd49b4009970e7edee0 Mon Sep 17 00:00:00 2001 From: falkTX Date: Fri, 30 Dec 2022 16:02:28 +0000 Subject: [PATCH] A few more build fixes Signed-off-by: falkTX --- plugins/Makefile | 2 ++ src/PluginContext.hpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/plugins/Makefile b/plugins/Makefile index 3f6cdcd..d61043f 100644 --- a/plugins/Makefile +++ b/plugins/Makefile @@ -610,6 +610,8 @@ MINIPLUGIN_FILES += BogaudioModules/src/dsp/noise.cpp MINIPLUGIN_FILES += BogaudioModules/src/dsp/oscillator.cpp MINIPLUGIN_FILES += BogaudioModules/src/dsp/signal.cpp MINIPLUGIN_FILES += BogaudioModules/src/dsp/table.cpp +MINIPLUGIN_FILES += BogaudioModules/src/dsp/filters/experiments.cpp +MINIPLUGIN_FILES += BogaudioModules/src/dsp/filters/filter.cpp MINIPLUGIN_FILES += BogaudioModules/src/dsp/filters/multimode.cpp MINIPLUGIN_FILES += BogaudioModules/src/dsp/filters/resample.cpp diff --git a/src/PluginContext.hpp b/src/PluginContext.hpp index 43c22d8..1217c69 100644 --- a/src/PluginContext.hpp +++ b/src/PluginContext.hpp @@ -53,6 +53,8 @@ enum CardinalVariant { kCardinalVariantSynth, }; +class UI; + // ----------------------------------------------------------------------------------------------------------- struct CardinalPluginContext : rack::Context {