commit 26c20e6b3e57d5c85cff6927c7d74049898a9f05
parent d859fa575763d6b39debe55473f7aa4e61019f83
Author: cfillion <cfillion@users.noreply.github.com>
Date: Wed, 13 Jan 2016 15:41:53 -0500
use sws's reaper_plugin.h, which is more recent than the one from cockos
also, work around the hardcoded #include "../../WDL/swell/swell.h" it contains
Diffstat:
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
@@ -5,9 +5,9 @@
Download these files into the `vendor` directory:
1. reaper_plugin.h from
- [reaper.fm](http://www.reaper.fm/sdk/plugin/reaper_plugin.h)
+ [Jeff0S/sws](https://github.com/Jeff0S/sws/raw/master/reaper/reaper_plugin.h)
2. catch.hpp from
- [github.com](https://github.com/philsquared/Catch/raw/master/single_include/catch.hpp)
+ [philsquared/Catch](https://github.com/philsquared/Catch/raw/master/single_include/catch.hpp)
3. [WDL](http://www.cockos.com/wdl/) from Cockos:
`git clone http://www-dev.cockos.com/wdl/WDL.git vendor/WDL`
4. reaper_plugin_functions.h from the REAPER action
diff --git a/macosx.tup b/macosx.tup
@@ -5,7 +5,7 @@ CXXFLAGS += -Wno-unused-parameter -Wno-missing-field-initializers
CXXFLAGS += -Wno-unused-function
CXXFLAGS += -fdiagnostics-color -fstack-protector-strong
CXXFLAGS += -pipe -fPIC -O2 -std=c++14
-CXXFLAGS += -Ivendor -Ivendor/WDL -Ivendor/WDL/WDL
+CXXFLAGS += -Ivendor -Ivendor/WDL -Ivendor/WDL/WDL -Ivendor/WDL/WDL/swell
CXXFLAGS += -DWDL_NO_DEFINE_MINMAX
CXXFLAGS += -arch @(OSXARCH)
diff --git a/win32.tup b/win32.tup
@@ -4,7 +4,7 @@ WRAP := cmd /C wrapper.bat @(WINARCH)
CXX := $(WRAP) cl
CXXFLAGS := /nologo /W3 /WX /wd4996 /O2 /EHsc /MT
-CXXFLAGS += /Ivendor /Ivendor/WDL /Ivendor/WDL/WDL
+CXXFLAGS += /Ivendor /Ivendor/WDL /Ivendor/WDL/WDL /Ivendor/WDL/WDL/tinyxml
CXXFLAGS += /Ivendor/libcurl_@(WINARCH)/include
CXXFLAGS += /DWDL_NO_DEFINE_MINMAX
CXXFLAGS += /DCURL_STATICLIB /DUNICODE