commit 57d4f1a87c82a016e3e4cc7a8692e4fd10ee1582 parent f14c62609b02556458865ff952cfe2410df5d7db Author: Matt Demanett <matt@demanett.net> Date: Mon, 16 Mar 2020 19:20:31 -0400 Move ffft library to lib/. Diffstat:
24 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/LICENSE.md b/LICENSE.md @@ -1,3 +1,3 @@ -All **source code** is copyright © 2020 Matt Demanett and is licensed under the [GNU General Public License v3.0](gpl-3.0.txt). +All **source code**, excluding the contents of lib/, is copyright © 2020 Matt Demanett and is licensed under the [GNU General Public License v3.0](gpl-3.0.txt). See [LICENSE-dist.md](LICENSE-dist.md). All **graphics** in the `res` and `res-src` directories are copyright 2020 Matt Demanett and licensed under [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/). diff --git a/Makefile b/Makefile @@ -14,7 +14,7 @@ DISTRIBUTABLES += $(wildcard LICENSE* README*) res RACK_DIR ?= ../.. include $(RACK_DIR)/plugin.mk -CXXFLAGS += -Isrc -Isrc/dsp +CXXFLAGS += -Isrc -Isrc/dsp -Ilib BENCHMARK_SOURCES = $(wildcard benchmarks/*.cpp src/dsp/*cpp) BENCHMARK_OBJECTS = $(patsubst %, build/%.o, $(BENCHMARK_SOURCES)) diff --git a/src/dsp/ffft/Array.h b/lib/ffft/Array.h diff --git a/src/dsp/ffft/Array.hpp b/lib/ffft/Array.hpp diff --git a/src/dsp/ffft/DynArray.h b/lib/ffft/DynArray.h diff --git a/src/dsp/ffft/DynArray.hpp b/lib/ffft/DynArray.hpp diff --git a/src/dsp/ffft/FFTReal.h b/lib/ffft/FFTReal.h diff --git a/src/dsp/ffft/FFTReal.hpp b/lib/ffft/FFTReal.hpp diff --git a/src/dsp/ffft/FFTRealFixLen.h b/lib/ffft/FFTRealFixLen.h diff --git a/src/dsp/ffft/FFTRealFixLen.hpp b/lib/ffft/FFTRealFixLen.hpp diff --git a/src/dsp/ffft/FFTRealFixLenParam.h b/lib/ffft/FFTRealFixLenParam.h diff --git a/src/dsp/ffft/FFTRealPassDirect.h b/lib/ffft/FFTRealPassDirect.h diff --git a/src/dsp/ffft/FFTRealPassDirect.hpp b/lib/ffft/FFTRealPassDirect.hpp diff --git a/src/dsp/ffft/FFTRealPassInverse.h b/lib/ffft/FFTRealPassInverse.h diff --git a/src/dsp/ffft/FFTRealPassInverse.hpp b/lib/ffft/FFTRealPassInverse.hpp diff --git a/src/dsp/ffft/FFTRealSelect.h b/lib/ffft/FFTRealSelect.h diff --git a/src/dsp/ffft/FFTRealSelect.hpp b/lib/ffft/FFTRealSelect.hpp diff --git a/src/dsp/ffft/FFTRealUseTrigo.h b/lib/ffft/FFTRealUseTrigo.h diff --git a/src/dsp/ffft/FFTRealUseTrigo.hpp b/lib/ffft/FFTRealUseTrigo.hpp diff --git a/src/dsp/ffft/OscSinCos.h b/lib/ffft/OscSinCos.h diff --git a/src/dsp/ffft/OscSinCos.hpp b/lib/ffft/OscSinCos.hpp diff --git a/src/dsp/ffft/def.h b/lib/ffft/def.h diff --git a/src/dsp/ffft/license.txt b/lib/ffft/license.txt diff --git a/src/dsp/ffft/readme.txt b/lib/ffft/readme.txt