From 93a815ec8db4a4a095d29c6bcc45bab6e0c73c60 Mon Sep 17 00:00:00 2001 From: reuk Date: Mon, 23 May 2022 20:01:17 +0100 Subject: [PATCH] DemoRunner: Add AccessibilityDemo to iOS and Android builds --- examples/DemoRunner/Source/Demos/DemoPIPs2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp b/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp index 898f5fb8e2..992b4a63b3 100644 --- a/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp +++ b/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp @@ -30,7 +30,7 @@ #include "../../../Assets/AudioLiveScrollingDisplay.h" //============================================================================== -#if JUCE_MAC || JUCE_WINDOWS +#if JUCE_MAC || JUCE_WINDOWS || JUCE_IOS || JUCE_ANDROID #include "../../../GUI/AccessibilityDemo.h" #endif #include "../../../GUI/AnimationAppDemo.h" @@ -70,7 +70,7 @@ void registerDemos_Two() noexcept { - #if JUCE_MAC || JUCE_WINDOWS + #if JUCE_MAC || JUCE_WINDOWS || JUCE_IOS || JUCE_ANDROID REGISTER_DEMO (AccessibilityDemo, GUI, false) #endif REGISTER_DEMO (AnimationAppDemo, GUI, false)