From 2cd7c130c39175505b73fe07fe657c6038ad6cb9 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 31 Jan 2015 14:29:44 +0100 Subject: [PATCH] Makefile.osx: set default sdk to 2.5, look for precompiled binaries --- Makefile.osx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile.osx b/Makefile.osx index 9450b9d..5873dee 100644 --- a/Makefile.osx +++ b/Makefile.osx @@ -16,11 +16,14 @@ CFLAGS := -Wall -Wextra -O3 -ftree-vectorize -fPIC ARCHFLAGS ?= -mmacosx-version-min=10.6 -arch x86_64 # Location of Vamp plugin SDK relative to the project directory -VAMPSDK_DIR := ../vamp-plugin-sdk +VAMPSDK_DIR := ../vamp-plugin-sdk-2.5 + +# Location of libvamp-sdk.dylib +VAMPDLL_DIR ?= ../vamp-plugin-sdk-2.5-binaries-osx # Libraries and linker flags required by plugin: add any -l # options here -PLUGIN_LDFLAGS := -dynamiclib -exported_symbols_list vamp-plugin.list -lvamp-sdk +PLUGIN_LDFLAGS := -dynamiclib -exported_symbols_list=vamp-plugin.list -L$(VAMPDLL_DIR) -lvamp-sdk # File extension for plugin library on this platform PLUGIN_EXT := .dylib -- 2.11.0