annotate build/osx/Makefile.osx @ 189:4e3bd932c195
Poking around towards an MSVC build (maybe)
author |
Chris Cannam <c.cannam@qmul.ac.uk> |
date |
Tue, 30 Jan 2018 20:24:17 +0000 |
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
|