Browse Source

Exclude ASIO from RtAudio by default but add RTAUDIO_ASIO Makefile variable to include it.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
cc5b78deba
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      dep/Makefile

+ 6
- 1
dep/Makefile View File

@@ -213,7 +213,12 @@ ifdef ARCH_MAC
RTAUDIO_FLAGS += -DRTAUDIO_API_CORE=ON -DRTAUDIO_API_PULSE=OFF -DRTAUDIO_API_JACK=OFF RTAUDIO_FLAGS += -DRTAUDIO_API_CORE=ON -DRTAUDIO_API_PULSE=OFF -DRTAUDIO_API_JACK=OFF
endif endif
ifdef ARCH_WIN ifdef ARCH_WIN
RTAUDIO_FLAGS += -DRTAUDIO_API_DS=ON -DRTAUDIO_API_WASAPI=ON -DRTAUDIO_API_ASIO=ON
RTAUDIO_FLAGS += -DRTAUDIO_API_DS=ON -DRTAUDIO_API_WASAPI=ON
# ASIO is proprietary software owned by Steinberg, so distributing it with your own VCV Rack build would violate Rack's GPLv3 license.
# However, since VCV owns the copyright of all GPL'd code in the Rack package, we include ASIO in the Windows build for convenience to our users.
ifdef RTAUDIO_ASIO
RTAUDIO_FLAGS += -DRTAUDIO_API_ASIO=ON
endif
endif endif


$(rtaudio): | rtaudio $(rtaudio): | rtaudio


Loading…
Cancel
Save