view Makefile.osx @ 137:109c3a2ad930 vamp-fft-revision

Make use of new Vamp FFT interface. This reduces the runtime of the regression test from 5.7 to 2.2 seconds on this machine, but it does need the right version of the SDK, which is currently only available in the vampipe branch.
author Chris Cannam
date Fri, 19 Aug 2016 13:26:40 +0100
parents 5c1572dd225a
children 72bda34e0e64
line wrap: on
line source
ARCHFLAGS := -arch x86_64 -mmacosx-version-min=10.7 -stdlib=libc++
CFLAGS := $(ARCHFLAGS) -O3 -I../vamp-plugin-sdk -I../../vamp-plugin-sdk -I/usr/local/boost -Wall -fPIC 
CXXFLAGS := $(CFLAGS)

LDFLAGS := -L../vamp-plugin-sdk -L../../vamp-plugin-sdk -lvamp-sdk $(ARCHFLAGS) 
PLUGIN_LDFLAGS := -dynamiclib $(LDFLAGS) -exported_symbols_list vamp-plugin.list
TEST_LDFLAGS := $(LDFLAGS) -lboost_unit_test_framework
PLUGIN_EXT := .dylib

include Makefile.inc