Browse Source

Fix lv2-bundles build

tags/v2.3.0-RC1
falkTX 3 years ago
parent
commit
23df92baf1
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 5 additions and 4 deletions
  1. +4
    -4
      source/native-plugins/audio-file.cpp
  2. +1
    -0
      source/plugin/Makefile

+ 4
- 4
source/native-plugins/audio-file.cpp View File

@@ -101,10 +101,10 @@ protected:
{
static NativeParameter param;

param.scalePointCount = 0;
param.scalePoints = nullptr;
param.unit = nullptr;
param.ranges.step = 1.0f;
param.scalePointCount = 0;
param.scalePoints = nullptr;
param.unit = nullptr;
param.ranges.step = 1.0f;
param.ranges.stepSmall = 1.0f;
param.ranges.stepLarge = 1.0f;



+ 1
- 0
source/plugin/Makefile View File

@@ -238,6 +238,7 @@ BUNDLE_LIBS += $(WATER_LIBS)

BUNDLE_FILES_LIBS += $(MODULEDIR)/audio_decoder.a
BUNDLE_FILES_LIBS += $(MODULEDIR)/water.a
BUNDLE_FILES_LIBS += $(MODULEDIR)/zita-resampler.a
BUNDLE_FILES_LIBS += $(AUDIO_DECODER_LIBS)
BUNDLE_FILES_LIBS += $(WATER_LIBS)



Loading…
Cancel
Save