clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit 09621fb37e09e058f5007acedcced3d3c21fa642
parent b72556cb03ada4f6abc1a7f80240f6afe85b0c0a
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date:   Fri, 10 Sep 2021 09:07:00 +0200

More refactoring

Diffstat:
Mexamples/CMakeLists.txt | 5-----
Mexamples/plugins/CMakeLists.txt | 3+++
Rexamples/gui/CMakeLists.txt -> examples/plugins/gui/CMakeLists.txt | 0
Rexamples/gui/application.cc -> examples/plugins/gui/application.cc | 0
Rexamples/gui/application.hh -> examples/plugins/gui/application.hh | 0
Rexamples/gui/main.cc -> examples/plugins/gui/main.cc | 0
Rexamples/gui/parameter-proxy.cc -> examples/plugins/gui/parameter-proxy.cc | 0
Rexamples/gui/parameter-proxy.hh -> examples/plugins/gui/parameter-proxy.hh | 0
Rexamples/gui/plugin-proxy.cc -> examples/plugins/gui/plugin-proxy.cc | 0
Rexamples/gui/plugin-proxy.hh -> examples/plugins/gui/plugin-proxy.hh | 0
Rexamples/io/CMakeLists.txt -> examples/plugins/io/CMakeLists.txt | 0
Rexamples/io/buffer.hh -> examples/plugins/io/buffer.hh | 0
Rexamples/io/messages.hh -> examples/plugins/io/messages.hh | 0
Rexamples/io/remote-channel.cc -> examples/plugins/io/remote-channel.cc | 0
Rexamples/io/remote-channel.hh -> examples/plugins/io/remote-channel.hh | 0
Mexamples/plugins/path-provider.cc | 2+-
16 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt @@ -8,11 +8,6 @@ if(ENABLE_CLAP_HOST) add_subdirectory(host) endif() -if(ENABLE_CLAP_GUI OR ENABLE_CLAP_PLUGINS) - add_subdirectory(io) - add_subdirectory(gui) -endif() - if(ENABLE_CLAP_PLUGINS) add_subdirectory(plugins) endif() diff --git a/examples/plugins/CMakeLists.txt b/examples/plugins/CMakeLists.txt @@ -1,5 +1,8 @@ find_package(Boost REQUIRED COMPONENTS serialization iostreams) +add_subdirectory(io) +add_subdirectory(gui) + add_library( clap-plugins SHARED clap-entry.cc diff --git a/examples/gui/CMakeLists.txt b/examples/plugins/gui/CMakeLists.txt diff --git a/examples/gui/application.cc b/examples/plugins/gui/application.cc diff --git a/examples/gui/application.hh b/examples/plugins/gui/application.hh diff --git a/examples/gui/main.cc b/examples/plugins/gui/main.cc diff --git a/examples/gui/parameter-proxy.cc b/examples/plugins/gui/parameter-proxy.cc diff --git a/examples/gui/parameter-proxy.hh b/examples/plugins/gui/parameter-proxy.hh diff --git a/examples/gui/plugin-proxy.cc b/examples/plugins/gui/plugin-proxy.cc diff --git a/examples/gui/plugin-proxy.hh b/examples/plugins/gui/plugin-proxy.hh diff --git a/examples/io/CMakeLists.txt b/examples/plugins/io/CMakeLists.txt diff --git a/examples/io/buffer.hh b/examples/plugins/io/buffer.hh diff --git a/examples/io/messages.hh b/examples/plugins/io/messages.hh diff --git a/examples/io/remote-channel.cc b/examples/plugins/io/remote-channel.cc diff --git a/examples/io/remote-channel.hh b/examples/plugins/io/remote-channel.hh diff --git a/examples/plugins/path-provider.cc b/examples/plugins/path-provider.cc @@ -57,7 +57,7 @@ namespace clap { return m[1]; } - std::string getGuiExecutable() const override { return buildRoot_ / "examples/gui/clap-gui"; } + std::string getGuiExecutable() const override { return buildRoot_ / "examples/plugins/gui/clap-gui"; } std::string getSkinDirectory() const override { return srcRoot_ / "examples/plugins/qml" / pluginName_; }