Browse Source

obxd: Fix meson.build files

pull/115/head
Damien Zammit 2 years ago
parent
commit
126d309733
3 changed files with 7 additions and 3 deletions
  1. +0
    -2
      ports-juce5/meson.build
  2. +3
    -1
      ports-juce7/meson.build
  3. +4
    -0
      ports-juce7/obxd/meson.build

+ 0
- 2
ports-juce5/meson.build View File

@@ -10,7 +10,6 @@ if linux_embed
'drowaudio-reverb',
'drowaudio-tremolo',
'luftikus',
'obxd',
'tal-dub-3',
'tal-filter',
'tal-filter-2',
@@ -42,7 +41,6 @@ else
'LUFSMeter',
'LUFSMeter-Multi',
'luftikus',
'obxd',
'pitchedDelay',
'refine',
'stereosourceseparation',


+ 3
- 1
ports-juce7/meson.build View File

@@ -2,9 +2,11 @@

if linux_embed
plugins = [
'obxd',
]
else
plugins = [
'obxd',
]
endif

@@ -21,7 +23,7 @@ plugin_include_dirs = [
# build flags for plugins

build_flags_plugin = [
'-Werror=deprecated-declarations',
'-Wno-deprecated-declarations', # FIXME
]

build_flag_plugin_cpp = [


+ 4
- 0
ports-juce7/obxd/meson.build View File

@@ -1,5 +1,9 @@
###############################################################################

plugin_extra_include_dirs = include_directories([
'source',
])

if linux_embed
plugin_srcs = files([
'source/PluginProcessor.cpp',


Loading…
Cancel
Save