Skip to content

Commit

Permalink
Merge commit '231132e108804db7f832faf0d9d0dce238118e2a' into lib-rede…
Browse files Browse the repository at this point in the history
…sign-conflicts
  • Loading branch information
gramanas committed Feb 25, 2018
2 parents 2812b5f + 231132e commit 8de673f
Show file tree
Hide file tree
Showing 70 changed files with 2,802 additions and 900 deletions.
9 changes: 5 additions & 4 deletions build/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ def sources(self, build):

class Vamp(Feature):
INTERNAL_LINK = False
INTERNAL_VAMP_PATH = '#lib/vamp-2.6'
INTERNAL_VAMP_PATH = '#lib/vamp'

def description(self):
return "Vamp Analyzer support"
Expand All @@ -393,9 +393,10 @@ def configure(self, build, conf):
build.env.Append(CPPDEFINES='__VAMP__')
build.env.Append(CPPDEFINES='kiss_fft_scalar=double')

# If there is no system vamp-hostdk installed, then we'll directly link
# the vamp-hostsdk.
if not conf.CheckLib(['vamp-hostsdk']):
# If there is no system vamp-hostsdk is installed or if the version
# of the installed vamp-hostsdk is less than the bundled version,
# then we'll directly link the bundled vamp-hostsdk
if not conf.CheckLib('vamp-hostsdk') or not conf.CheckForPKG('vamp-plugin-sdk', '2.7.1'):
# For header includes
build.env.Append(CPPPATH=[self.INTERNAL_VAMP_PATH])
self.INTERNAL_LINK = True
Expand Down
75 changes: 0 additions & 75 deletions lib/vamp-2.6/src/vamp-sdk/FFT.cpp

This file was deleted.

116 changes: 0 additions & 116 deletions lib/vamp-2.6/src/vamp-sdk/FFTimpl.cpp

This file was deleted.

100 changes: 0 additions & 100 deletions lib/vamp-2.6/vamp-sdk/FFT.h

This file was deleted.

Loading

0 comments on commit 8de673f

Please sign in to comment.