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

Added a compile error if you try to enable both Oboe and openSL

This commit is contained in:
jules 2018-11-06 11:58:11 +00:00
parent b434434d07
commit 1ab38ab874

View file

@ -166,6 +166,10 @@
#endif
#if JUCE_USE_ANDROID_OBOE
#if JUCE_USE_ANDROID_OPENSLES
#error "Oboe cannot be enabled at the same time as openSL! Please disable JUCE_USE_ANDROID_OPENSLES"
#endif
#include <oboe/Oboe.h>
#endif