Browse Source

Don't build Notes and StereoEnhancer plugins, not ready

tags/1.9.4
falkTX 11 years ago
parent
commit
c5f0d648f2
4 changed files with 10 additions and 12 deletions
  1. +2
    -2
      source/backend/CarlaNative.h
  2. +4
    -4
      source/backend/native/Makefile
  3. +2
    -4
      source/backend/native/distrho-notes.cpp
  4. +2
    -2
      source/backend/plugin/NativePlugin.cpp

+ 2
- 2
source/backend/CarlaNative.h View File

@@ -251,11 +251,11 @@ void carla_register_native_plugin_3BandEQ();
void carla_register_native_plugin_3BandSplitter();
void carla_register_native_plugin_Nekobi();
void carla_register_native_plugin_PingPongPan();
void carla_register_native_plugin_StereoEnhancer();
// void carla_register_native_plugin_StereoEnhancer();
#endif

// DISTRHO plugins (Qt)
void carla_register_native_plugin_Notes();
// void carla_register_native_plugin_Notes();

#ifdef WANT_ZYNADDSUBFX
// ZynAddSubFX


+ 4
- 4
source/backend/native/Makefile View File

@@ -80,13 +80,13 @@ OBJS += \
distrho-3bandeq.cpp.o \
distrho-3bandsplitter.cpp.o \
distrho-nekobi.cpp.o \
distrho-pingpongpan.cpp.o \
distrho-stereoenhancer.cpp.o
distrho-pingpongpan.cpp.o
# distrho-stereoenhancer.cpp.o
endif

# DISTRHO plugins (Qt)
OBJS += \
distrho-notes.cpp.o
# OBJS += \
# distrho-notes.cpp.o

ifeq ($(HAVE_ZYN_DEPS),true)
# ZynAddSubFX


+ 2
- 4
source/backend/native/distrho-notes.cpp View File

@@ -17,7 +17,6 @@

#include "CarlaNative.hpp"

#if 0
// Plugin Code
#include "notes/DistrhoPluginNotes.cpp"
#include "notes/DistrhoUINotes.cpp"
@@ -46,14 +45,13 @@ static const PluginDescriptor notesDesc = {
};

END_NAMESPACE_DISTRHO
#endif

// -----------------------------------------------------------------------

void carla_register_native_plugin_Notes()
{
//USE_NAMESPACE_DISTRHO
//carla_register_native_plugin(&notesDesc);
USE_NAMESPACE_DISTRHO
carla_register_native_plugin(&notesDesc);
}

// -----------------------------------------------------------------------

+ 2
- 2
source/backend/plugin/NativePlugin.cpp View File

@@ -62,11 +62,11 @@ void carla_register_all_plugins()
carla_register_native_plugin_3BandSplitter();
carla_register_native_plugin_Nekobi();
carla_register_native_plugin_PingPongPan();
carla_register_native_plugin_StereoEnhancer();
//carla_register_native_plugin_StereoEnhancer(); // unfinished
#endif

// DISTRHO plugins (Qt)
carla_register_native_plugin_Notes();
//carla_register_native_plugin_Notes(); // unfinished

#ifdef WANT_ZYNADDSUBFX
// ZynAddSubFX


Loading…
Cancel
Save