aboutsummaryrefslogtreecommitdiffstats
path: root/src/s-ol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/s-ol.cpp')
-rw-r--r--src/s-ol.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/s-ol.cpp b/src/s-ol.cpp
new file mode 100644
index 0000000..3fd0f1e
--- /dev/null
+++ b/src/s-ol.cpp
@@ -0,0 +1,18 @@
+#include "s-ol.hpp"
+
+Plugin *plugin;
+
+void init(rack::Plugin *p) {
+ plugin = p;
+
+ p->slug = "s-ol";
+#ifdef VERSION
+ p->version = TOSTRING(VERSION);
+#endif
+ p->website = "https://github.com/s-ol/vcvmods";
+ p->manual = "https://github.com/s-ol/vcvmods";
+
+ p->addModel(createModel<CircleVCOWidget>("s-ol", "CircleVCO", "Circle VCO", OSCILLATOR_TAG, VISUAL_TAG));
+ p->addModel(createModel<WrapCompWidget>("s-ol", "WrapComp", "Wrapping Comparator", LOGIC_TAG));
+ p->addModel(createModel<ModuloWidget>("s-ol", "Modulo", "Modulo", LOGIC_TAG));
+}