File tree 4 files changed +8
-4
lines changed
4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 35
35
1 . Install [ Homebrew] ( http://brew.sh/ ) and Xcode Command Line Tools
36
36
2 . Install [ tup] ( http://gittup.org/tup/ ) and [ boost] ( http://www.boost.org/ ) :
37
37
` brew tap homebrew/fuse && brew install tup boost `
38
- 3 . Run ` tup --quiet && x64/bin/test ` from this directory
38
+ 3 . Run ` tup --quiet ` from this directory
39
39
4 . Copy or link ` x64/bin/reaper_reapack_x64.dylib ` to REAPER's extension
40
40
directory (replace x64 with x86 for 32-bit)
41
41
64
64
to ` <reapack directory>\vendor ` as ` libcurl_x64 `
65
65
6 . Copy ` <curl directory>\builds\libcurl-vc-x86-release-static-ipv6-sspi-winssl `
66
66
to ` <reapack directory>\vendor ` as ` libcurl_x86 `
67
- 7 . Run ` tup --quiet && x64\bin\test ` from this directory using
67
+ 7 . Run ` tup --quiet ` from this directory using
68
68
"Developer Command Prompt for VS2013"
69
69
8 . Copy ` x64\bin\reaper_reapack_x64.dll ` to your REAPER
70
70
plugin folder (replace x64 with x86 for 32-bit)
Original file line number Diff line number Diff line change @@ -13,3 +13,4 @@ include @(TUP_PLATFORM).tup
13
13
: foreach test/*.cpp |> !build -Isrc |> build/test/%B.o
14
14
: foreach test/helper/*.cpp |> !build -Isrc |> build/test/helper_%B.o
15
15
: build/*.o build/test/*.o | $(LINKDEPS) |> !link $(TSFLAGS) |> $(TSTARGET)
16
+ : $(TSTARGET) |> $(TEST) --force-colour |>
Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ LDFLAGS := -framework Cocoa -framework Carbon -lcurl
20
20
21
21
SOFLAGS := -dynamiclib
22
22
SOTARGET := bin/reaper_reapack_@(OSXARCH).dylib
23
- TSTARGET := bin/test
23
+
24
+ TEST := bin/test
25
+ TSTARGET := $(TEST)
24
26
25
27
!build = |> $(CXX) $(CXXFLAGS) -c %f -o %o |>
26
28
!link = |> $(CXX) $(CXXFLAGS) %f $(LDFLAGS) -o %o |>
Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ SOFLAGS := /DLL /OUT:$(TUP_VARIANTDIR)/bin/reaper_reapack_@(WINARCH).dll
21
21
SOTARGET := bin/reaper_reapack_@(WINARCH).dll
22
22
SOTARGET += bin/reaper_reapack_@(WINARCH).lib bin/reaper_reapack_@(WINARCH).exp
23
23
24
- TSFLAGS := /OUT:$(TUP_VARIANTDIR)/bin/test.exe
24
+ TEST := $(TUP_VARIANTDIR)/bin/test.exe
25
+ TSFLAGS := /OUT:$(TEST)
25
26
TSTARGET := bin/test.exe bin/test.lib bin/test.exp
26
27
27
28
LINKDEPS := src/resource.res
You can’t perform that action at this time.
0 commit comments