1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added support for Bela in the form of an AudioIODeviceType

This commit is contained in:
jules 2018-03-19 15:50:38 +00:00
parent 26e31ff7d6
commit 5a122e124a
6 changed files with 400 additions and 0 deletions

View file

@ -142,6 +142,15 @@
*/
#include <jack/jack.h>
#endif
#if JUCE_BELA
/* Got an include error here? If so, you've either not got the bela headers
installed, or you've not got your paths set up correctly to find its header
files.
*/
#include <Bela.h>
#endif
#undef SIZEOF
//==============================================================================
@ -207,6 +216,10 @@
#include "native/juce_linux_JackAudio.cpp"
#endif
#if JUCE_BELA
#include "native/juce_linux_Bela.cpp"
#endif
//==============================================================================
#elif JUCE_ANDROID
#include "native/juce_android_Audio.cpp"