Mercurial > hg > vamp-plugin-sdk
comparison build/Makefile.mingw32 @ 298:5940dd0a399f
* Add NoShift option to PluginInputDomainAdapter as well, for completeness
* Minor & doc updates
author | cannam |
---|---|
date | Tue, 22 Sep 2009 13:01:56 +0000 |
parents | 38c638894360 |
children | 7d4aeb0d0d6c |
comparison
equal
deleted
inserted
replaced
297:f3db7ba66fea | 298:5940dd0a399f |
---|---|
66 AR = i586-mingw32msvc-ar | 66 AR = i586-mingw32msvc-ar |
67 RANLIB = i586-mingw32msvc-ranlib | 67 RANLIB = i586-mingw32msvc-ranlib |
68 | 68 |
69 # Compile flags | 69 # Compile flags |
70 # | 70 # |
71 CXXFLAGS = $(CXXFLAGS) -O2 -Wall -I. -I../include -fpic | 71 CXXFLAGS = -O2 -Wall -I. -I../include |
72 | 72 |
73 # Libraries required for the plugins. | 73 # Libraries required for the plugins. |
74 # | 74 # |
75 PLUGIN_LIBS = ./libvamp-sdk.a | 75 PLUGIN_LIBS = ./libvamp-sdk.a |
76 | 76 |
78 # | 78 # |
79 PLUGIN_EXT = .dll | 79 PLUGIN_EXT = .dll |
80 | 80 |
81 # Libraries required for the host. | 81 # Libraries required for the host. |
82 # | 82 # |
83 HOST_LIBS = ./libvamp-hostsdk.a -l../lib -lsndfile | 83 HOST_LIBS = ./libvamp-hostsdk.a -L../lib -lsndfile |
84 | 84 |
85 # Libraries required for the RDF template generator. | 85 # Libraries required for the RDF template generator. |
86 # | 86 # |
87 RDFGEN_LIBS = ./libvamp-hostsdk.a | 87 RDFGEN_LIBS = ./libvamp-hostsdk.a |
88 | 88 |