commit e464828a0c0dbfa829c6cb13250cb4c0bb5869a8
parent 6717d3d367ffd21fae775906e64bbcbd272faa31
Author: cfillion <cfillion@users.noreply.github.com>
Date: Wed, 16 Dec 2015 21:59:43 -0500
append the architecture to the target filename on OSX too
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
@@ -36,8 +36,8 @@ vendor
2. Install [tup](http://gittup.org/tup/) and [boost](http://www.boost.org/):
`brew tap homebrew/fuse && brew install tup boost`
3. Run `tup --quiet && x64/bin/test` from this directory
-4. Copy or link `x64/bin/reaper_reapack.dylib` to REAPER's extension directory
- (replace x64 with x86 for 32-bit)
+4. Copy or link `x64/bin/reaper_reapack_x64.dylib` to REAPER's extension
+ directory (replace x64 with x86 for 32-bit)
### Windows
@@ -66,5 +66,5 @@ vendor
to `<reapack directory>\vendor` as `libcurl_x86`
7. Run `tup --quiet && x64\bin\test` from this directory using
"Developer Command Prompt for VS2013"
-8. Copy `x64\bin\reaper_reapack.dll` to your REAPER
+8. Copy `x64\bin\reaper_reapack_x64.dll` to your REAPER
plugin folder (replace x64 with x86 for 32-bit)
diff --git a/macosx.tup b/macosx.tup
@@ -19,7 +19,7 @@ WDLSOURCE += $(SWELL)/swell-misc.mm $(SWELL)/swell-dlg.mm $(SWELL)/swell-wnd.mm
LDFLAGS := -framework Cocoa -framework Carbon -lcurl
SOFLAGS := -dynamiclib
-SOTARGET := bin/reaper_reapack.dylib
+SOTARGET := bin/reaper_reapack_@(OSXARCH).dylib
TSTARGET := bin/test
!build = |> $(CXX) $(CXXFLAGS) -c %f -o %o |>