Mercurial > hg > qm-dsp
changeset 403:cf08ede39abf
mingw32 build
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Tue, 05 Aug 2014 11:07:54 +0100 |
parents | 852facc90e39 |
children | 5517f75625c3 |
files | build/mingw32/Makefile.mingw32 |
diffstat | 1 files changed, 14 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/build/mingw32/Makefile.mingw32 Tue Aug 05 11:07:54 2014 +0100 @@ -0,0 +1,14 @@ + +TOOLPREFIX ?= i586-mingw32msvc- +CXX = $(TOOLPREFIX)g++ +CC = $(TOOLPREFIX)gcc +LD = $(TOOLPREFIX)g++ +AR = $(TOOLPREFIX)ar +RANLIB = $(TOOLPREFIX)ranlib + +CFLAGS := -I../vamp-plugin-sdk -Ibuild/mingw32 -Iinclude -DNDEBUG -O3 -msse -msse2 -Wall -Wextra +CXXFLAGS := $(CFLAGS) + +MAKEFILE_EXT := .mingw32 + +include build/general/Makefile.inc