From 0fa2908f7f76bbf5ac71bfc93ded0e2155c20eb6 Mon Sep 17 00:00:00 2001 From: Vesa Date: Thu, 20 Mar 2014 11:46:47 +0200 Subject: [PATCH] Start wavetable synth --- plugins/CMakeLists.txt | 1 + plugins/wtsynth/CMakeLists.txt | 3 +++ plugins/wtsynth/WTSynth.h | 38 ++++++++++++++++++++++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 plugins/wtsynth/CMakeLists.txt create mode 100644 plugins/wtsynth/WTSynth.h diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index 59aadfbe3..aba116025 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -29,5 +29,6 @@ ADD_SUBDIRECTORY(vestige) ADD_SUBDIRECTORY(vst_base) ADD_SUBDIRECTORY(VstEffect) ADD_SUBDIRECTORY(waveshaper) +ADD_SUBDIRECTORY(wtsynth) ADD_SUBDIRECTORY(vibed) ADD_SUBDIRECTORY(zynaddsubfx) diff --git a/plugins/wtsynth/CMakeLists.txt b/plugins/wtsynth/CMakeLists.txt new file mode 100644 index 000000000..82e03fcd9 --- /dev/null +++ b/plugins/wtsynth/CMakeLists.txt @@ -0,0 +1,3 @@ +INCLUDE(BuildPlugin) + +BUILD_PLUGIN(wtsynth WTSynth.cpp WTSynth.h MOCFILES WTSynth.h EMBEDDED_RESOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.png) diff --git a/plugins/wtsynth/WTSynth.h b/plugins/wtsynth/WTSynth.h new file mode 100644 index 000000000..286c23cb7 --- /dev/null +++ b/plugins/wtsynth/WTSynth.h @@ -0,0 +1,38 @@ +/* + * WTSynth.h - work in process, name pending + * + * Copyright (c) 2014 Vesa Kivimäki + * + * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program (see COPYING); if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + */ + + +#ifndef WTSYNTH_H +#define WTSYNTH_H + +#include "Instrument.h" +#include "InstrumentView.h" +#include "graph.h" +#include "knob.h" +#include "pixmap_button.h" + + + + +#endif