Move src/plugin-bridge to src/bridges/vst2

This commit is contained in:
Robbert van der Helm
2020-11-28 13:58:32 +01:00
parent 9d40e04a62
commit 6195caf53e
5 changed files with 11 additions and 11 deletions
@@ -14,15 +14,15 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#include "plugin-bridge.h"
#include "vst2.h"
// Generated inside of the build directory
#include <src/common/config/config.h>
#include <src/common/config/version.h>
#include "../common/communication.h"
#include "../common/utils.h"
#include "utils.h"
#include "../../common/communication.h"
#include "../../common/utils.h"
#include "../utils.h"
namespace bp = boost::process;
// I'd rather use std::filesystem instead, but Boost.Process depends on
@@ -23,10 +23,10 @@
#include <mutex>
#include <thread>
#include "../common/communication.h"
#include "../common/configuration.h"
#include "../common/logging.h"
#include "host-process.h"
#include "../../common/communication.h"
#include "../../common/configuration.h"
#include "../../common/logging.h"
#include "../host-process.h"
/**
* This handles the communication between the Linux native VST plugin and the
+1 -1
View File
@@ -20,7 +20,7 @@
#include <memory>
#include "../common/logging.h"
#include "plugin-bridge.h"
#include "bridges/vst2.h"
#define VST_EXPORT __attribute__((visibility("default")))