diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-12-10 17:11:13 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-12-10 17:11:13 +0100 |
commit | 30e1c8d1e6b232b5a8a3ad8c1926a138c9249f7e (patch) | |
tree | ea9ec384a048ae8b5993b0d94fd973802e1e2b0b /plugin/vst | |
parent | d422bfddee23069071a5d911ebca73f6c0b403ed (diff) |
Make sure we don't present warnings as errors when compiling VSTSDK source code.
Diffstat (limited to 'plugin/vst')
-rw-r--r-- | plugin/vst/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/vst/Makefile.am b/plugin/vst/Makefile.am index 489fd13..0f3df84 100644 --- a/plugin/vst/Makefile.am +++ b/plugin/vst/Makefile.am @@ -2,6 +2,9 @@ if ENABLE_VST noinst_LTLIBRARIES = libvstsdk.la endif +# We know there are warnings in the VSTSDK code, so don't consider them errors. +CXXFLAGS:=$(filter-out -Werror -Wall ,$(CXXFLAGS)) + # Targets to copy vst source files pluginterfaces/vst2.x: $(MKDIR_P) pluginterfaces/vst2.x |