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

Disabled VideoComponent on linux to prevent build errors

This commit is contained in:
jules 2017-07-06 16:59:49 +01:00
parent 7fe3e13489
commit 50dce5079d

View file

@ -22,6 +22,8 @@
============================================================================== ==============================================================================
*/ */
#if JUCE_MAC || JUCE_IOS || JUCE_WINDOWS || JUCE_ANDROID
#if JUCE_MAC || JUCE_IOS #if JUCE_MAC || JUCE_IOS
#include "../native/juce_mac_Video.h" #include "../native/juce_mac_Video.h"
#elif JUCE_WINDOWS #elif JUCE_WINDOWS
@ -114,3 +116,5 @@ void VideoComponent::timerCallback()
{ {
resized(); resized();
} }
#endif