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

Added a missing guard to avoid including movie components on iOS

This commit is contained in:
hogliux 2017-02-01 17:28:22 +00:00
parent ffe1323fcf
commit 95d0d50d85

View file

@ -102,7 +102,9 @@ namespace juce
#include "native/juce_mac_CameraDevice.mm"
#endif
#include "native/juce_mac_MovieComponent.mm"
#if JUCE_MAC
#include "native/juce_mac_MovieComponent.mm"
#endif
#elif JUCE_WINDOWS