Mercurial > hg > qm-vamp-plugins
annotate build/osx/Makefile.osx @ 266:d04675d44928 tip master
Refer to SDK from Github
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Wed, 02 Jun 2021 14:41:26 +0100 |
parents | 258939b7c810 |
children |
rev | line source |
---|---|
c@138 | 1 |
c@183 | 2 ARCHFLAGS ?= -mmacosx-version-min=10.7 -arch x86_64 -stdlib=libc++ |
c@138 | 3 |
c@183 | 4 CFLAGS += $(ARCHFLAGS) -Wall -O3 -ftree-vectorize -DUSE_PTHREADS |
c@183 | 5 |
c@183 | 6 CXXFLAGS += $(CFLAGS) -std=c++11 -I../vamp-plugin-sdk |
c@138 | 7 |
c@162 | 8 LDFLAGS += $(ARCHFLAGS) -dynamiclib -lqm-dsp ../vamp-plugin-sdk/libvamp-sdk.a -framework Accelerate -lpthread -exported_symbols_list vamp-plugin.list -install_name qm-vamp-plugins.dylib |
c@138 | 9 |
c@138 | 10 PLUGIN_EXT := .dylib |
c@138 | 11 |
c@160 | 12 MAKEFILE_EXT := .osx |
c@160 | 13 |
c@138 | 14 include build/general/Makefile.inc |
c@138 | 15 |