diff --git a/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp b/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp index a1759e6558..f123526633 100644 --- a/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp +++ b/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp @@ -30,6 +30,9 @@ #include "../../../Assets/AudioLiveScrollingDisplay.h" //============================================================================== +#if JUCE_MAC || JUCE_WINDOWS + #include "../../../GUI/AccessibilityDemo.h" +#endif #include "../../../GUI/AnimationAppDemo.h" #include "../../../GUI/AnimationDemo.h" #include "../../../GUI/BouncingBallWavetableDemo.h" @@ -67,6 +70,9 @@ void registerDemos_Two() noexcept { + #if JUCE_MAC || JUCE_WINDOWS + REGISTER_DEMO (AccessibilityDemo, GUI, false) + #endif REGISTER_DEMO (AnimationAppDemo, GUI, false) REGISTER_DEMO (AnimationDemo, GUI, false) REGISTER_DEMO (BouncingBallWavetableDemo, GUI, false)