gitextract_b0ewfza2/ ├── .appveyor.yml ├── .azure-pipelines.yml ├── .cirrus.yml ├── .clang-format ├── .github/ │ └── pull_request_template.md ├── .gitignore ├── .readthedocs.yaml ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Jucer2CMake/ │ ├── CMakeLists.txt │ ├── src/ │ │ ├── argh.hpp │ │ ├── juce6.hpp │ │ ├── juce_core.hpp │ │ ├── main.cpp │ │ ├── reprojucer.hpp │ │ └── utils.hpp │ └── tests/ │ ├── .gitignore │ ├── apply-Jucer2CMake-juce6-to-test-jucers.cmake │ ├── audioplug6/ │ │ ├── CMakeLists.txt │ │ ├── Source/ │ │ │ ├── PluginEditor.cpp │ │ │ ├── PluginEditor.h │ │ │ ├── PluginProcessor.cpp │ │ │ └── PluginProcessor.h │ │ └── audioplug6.jucer │ ├── audioplug6-default/ │ │ ├── CMakeLists.txt │ │ ├── Source/ │ │ │ ├── PluginEditor.cpp │ │ │ ├── PluginEditor.h │ │ │ ├── PluginProcessor.cpp │ │ │ └── PluginProcessor.h │ │ └── audioplug6.jucer │ ├── consoleapp6/ │ │ ├── CMakeLists.txt │ │ ├── Source/ │ │ │ └── Main.cpp │ │ └── consoleapp6.jucer │ ├── consoleapp6-default/ │ │ ├── CMakeLists.txt │ │ ├── Source/ │ │ │ └── Main.cpp │ │ └── consoleapp6.jucer │ ├── guiapp6/ │ │ ├── CMakeLists.txt │ │ ├── Source/ │ │ │ ├── Main.cpp │ │ │ ├── MainComponent.cpp │ │ │ └── MainComponent.h │ │ └── guiapp6.jucer │ └── guiapp6-default/ │ ├── CMakeLists.txt │ ├── Source/ │ │ ├── Main.cpp │ │ ├── MainComponent.cpp │ │ └── MainComponent.h │ └── guiapp6.jucer ├── LICENSE ├── README.rst ├── ci/ │ ├── AllJuceProjects/ │ │ └── CMakeLists.txt │ ├── apply-Jucer2CMake-reprojucer-to-JUCE-jucers.cmake │ ├── apply-Jucer2CMake-reprojucer-to-test-jucers.cmake │ ├── azure-pipelines/ │ │ ├── steps-Makefiles.yml │ │ ├── steps-VS.yml │ │ ├── steps-Xcode.yml │ │ └── steps-iOS.yml │ └── fake-SDKs/ │ ├── AAX/ │ │ └── Interfaces/ │ │ └── AAX_Exports.cpp │ ├── VST/ │ │ ├── pluginterfaces/ │ │ │ └── vst2.x/ │ │ │ └── aeffect.h │ │ └── public.sdk/ │ │ └── source/ │ │ └── vst2.x/ │ │ └── audioeffectx.h │ └── VST3/ │ └── base/ │ └── source/ │ └── baseiids.cpp ├── cmake/ │ ├── Reprojucer.cmake │ ├── data/ │ │ ├── AppConfig-4.h.in │ │ ├── AppConfig-5.h.in │ │ ├── AppConfig.h.in │ │ ├── Info.plist.in │ │ ├── JuceHeader.h.in │ │ ├── JuceLibraryCode-Wrapper.cpp.in │ │ ├── JucePluginDefines.h.in │ │ ├── LaunchScreen.storyboard │ │ ├── PkgInfo │ │ ├── UnityScript.cs.in │ │ ├── failed-to.md.in │ │ ├── juce_runtime_arch_detection.cpp │ │ ├── resources.rc.in │ │ ├── script.in │ │ └── target.entitlements.in │ └── tools/ │ ├── BinaryDataBuilder/ │ │ ├── CMakeLists.txt │ │ ├── extras/ │ │ │ └── Projucer/ │ │ │ └── Source/ │ │ │ ├── Project/ │ │ │ │ └── jucer_Project.h │ │ │ ├── Project Saving/ │ │ │ │ ├── jucer_ResourceFile.cpp │ │ │ │ └── jucer_ResourceFile.h │ │ │ ├── Utility/ │ │ │ │ ├── jucer_CodeHelpers.cpp │ │ │ │ ├── jucer_CodeHelpers.h │ │ │ │ ├── jucer_FileHelpers.cpp │ │ │ │ ├── jucer_FileHelpers.h │ │ │ │ ├── jucer_MiscUtilities.cpp │ │ │ │ └── jucer_MiscUtilities.h │ │ │ └── jucer_Headers.h │ │ ├── main.cpp │ │ └── modules/ │ │ └── juce_gui_extra/ │ │ ├── code_editor/ │ │ │ ├── juce_CPlusPlusCodeTokeniser.cpp │ │ │ ├── juce_CPlusPlusCodeTokeniser.h │ │ │ └── juce_CPlusPlusCodeTokeniserFunctions.h │ │ ├── juce_gui_extra.cpp │ │ └── juce_gui_extra.h │ ├── CMakeLists.txt │ ├── IconBuilder/ │ │ ├── CMakeLists.txt │ │ ├── Source/ │ │ │ ├── Project Saving/ │ │ │ │ ├── jucer_ProjectExport_MSVC.h │ │ │ │ ├── jucer_ProjectExport_XCode.h │ │ │ │ ├── jucer_ProjectExporter.cpp │ │ │ │ └── jucer_ProjectExporter.h │ │ │ ├── Utility/ │ │ │ │ ├── jucer_FileHelpers.cpp │ │ │ │ └── jucer_FileHelpers.h │ │ │ └── jucer_Headers.h │ │ └── main.cpp │ ├── PListMerger/ │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── XcassetsBuilder/ │ │ ├── CMakeLists.txt │ │ ├── Source/ │ │ │ ├── ProjectSaving/ │ │ │ │ ├── jucer_ProjectExport_Xcode.h │ │ │ │ ├── jucer_ProjectExporter.cpp │ │ │ │ └── jucer_ProjectExporter.h │ │ │ ├── Utility/ │ │ │ │ ├── jucer_FileHelpers.cpp │ │ │ │ └── jucer_FileHelpers.h │ │ │ └── jucer_Headers.h │ │ └── main.cpp │ ├── juce_core.cmake │ └── juce_gui_basics.cmake ├── docs/ │ ├── Reprojucer.cmake/ │ │ ├── command/ │ │ │ ├── jucer_appconfig_header.rst │ │ │ ├── jucer_audio_plugin_settings.rst │ │ │ ├── jucer_export_target.rst │ │ │ ├── jucer_export_target_configuration.rst │ │ │ ├── jucer_project_begin.rst │ │ │ ├── jucer_project_end.rst │ │ │ ├── jucer_project_files.rst │ │ │ ├── jucer_project_module.rst │ │ │ └── jucer_project_settings.rst │ │ └── index.rst │ ├── conf.py │ ├── index.rst │ └── requirements.txt ├── generated/ │ ├── JUCE-4.2.0/ │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── examples/ │ │ │ ├── AUv3Synth/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── AnimationAppExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── AudioAppExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── BouncingBallWavetableDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── ComponentTutorialExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── Demo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── HelloWorld/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── MPETest/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── MidiTest/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── NetworkGraphicsDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OSCMonitor/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OSCReceiver/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OSCSender/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OpenGLAppExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── PluckedStringsDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── PlugInSamples/ │ │ │ │ ├── Arpeggiator/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── GainPlugIn/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── MultiOutSynth/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── NoiseGate/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── Surround/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── SimpleFFTExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── audio plugin demo/ │ │ │ │ └── CMakeLists.txt │ │ │ └── audio plugin host/ │ │ │ └── CMakeLists.txt │ │ └── extras/ │ │ ├── AudioPerformanceTest/ │ │ │ └── CMakeLists.txt │ │ ├── Projucer/ │ │ │ └── CMakeLists.txt │ │ ├── UnitTestRunner/ │ │ │ └── CMakeLists.txt │ │ ├── binarybuilder/ │ │ │ └── CMakeLists.txt │ │ └── windows dll/ │ │ └── CMakeLists.txt │ ├── JUCE-4.3.1/ │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── examples/ │ │ │ ├── AUv3Synth/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── AnimationAppExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── AudioAppExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── BLOCKS/ │ │ │ │ ├── BlocksDrawing/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── BlocksMonitor/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── BlocksSynth/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── BouncingBallWavetableDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── ComponentTutorialExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── Demo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── HelloWorld/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── MPETest/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── MidiTest/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── NetworkGraphicsDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OSCMonitor/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OSCReceiver/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OSCSender/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OpenGLAppExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── PluckedStringsDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── PlugInSamples/ │ │ │ │ ├── Arpeggiator/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── GainPlugIn/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── MultiOutSynth/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── NoiseGate/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── Surround/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── SimpleFFTExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── audio plugin demo/ │ │ │ │ └── CMakeLists.txt │ │ │ └── audio plugin host/ │ │ │ └── CMakeLists.txt │ │ └── extras/ │ │ ├── AudioPerformanceTest/ │ │ │ └── CMakeLists.txt │ │ ├── Projucer/ │ │ │ └── CMakeLists.txt │ │ ├── UnitTestRunner/ │ │ │ └── CMakeLists.txt │ │ ├── binarybuilder/ │ │ │ └── CMakeLists.txt │ │ └── windows dll/ │ │ └── CMakeLists.txt │ ├── JUCE-5.0.0/ │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── examples/ │ │ │ ├── AUv3Synth/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── AnimationAppExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── AudioAppExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── BLOCKS/ │ │ │ │ ├── BlocksDrawing/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── BlocksMonitor/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── BlocksSynth/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── BouncingBallWavetableDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── ComponentTutorialExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── Demo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── HelloWorld/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── MPETest/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── MidiTest/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── NetworkGraphicsDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OSCMonitor/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OSCReceiver/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OSCSender/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OpenGLAppExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── PluckedStringsDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── PlugInSamples/ │ │ │ │ ├── Arpeggiator/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── GainPlugIn/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── InterAppAudioEffect/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── MultiOutSynth/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── NoiseGate/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── Surround/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── SimpleFFTExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── audio plugin demo/ │ │ │ │ └── CMakeLists.txt │ │ │ └── audio plugin host/ │ │ │ └── CMakeLists.txt │ │ └── extras/ │ │ ├── AudioPerformanceTest/ │ │ │ └── CMakeLists.txt │ │ ├── Projucer/ │ │ │ └── CMakeLists.txt │ │ ├── UnitTestRunner/ │ │ │ └── CMakeLists.txt │ │ ├── binarybuilder/ │ │ │ └── CMakeLists.txt │ │ └── windows dll/ │ │ └── CMakeLists.txt │ ├── JUCE-5.2.1/ │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── examples/ │ │ │ ├── AUv3Synth/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── AnalyticsCollection/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── AnimationAppExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── AudioAppExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── BLOCKS/ │ │ │ │ ├── BlocksDrawing/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── BlocksMonitor/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── BlocksSynth/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── BouncingBallWavetableDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── ComponentTutorialExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── DSP module plugin demo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── DSPDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── Demo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── HelloWorld/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── InAppPurchase/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── MPETest/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── MidiTest/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── NetworkGraphicsDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OSCMonitor/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OSCReceiver/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OSCSender/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── OpenGLAppExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── PluckedStringsDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── PlugInSamples/ │ │ │ │ ├── Arpeggiator/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── GainPlugIn/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── InterAppAudioEffect/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── MultiOutSynth/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── NoiseGate/ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── Surround/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── PushNotificationsDemo/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── SimpleFFTExample/ │ │ │ │ └── CMakeLists.txt │ │ │ ├── audio plugin demo/ │ │ │ │ └── CMakeLists.txt │ │ │ └── audio plugin host/ │ │ │ └── CMakeLists.txt │ │ └── extras/ │ │ ├── AudioPerformanceTest/ │ │ │ └── CMakeLists.txt │ │ ├── Projucer/ │ │ │ └── CMakeLists.txt │ │ ├── UnitTestRunner/ │ │ │ └── CMakeLists.txt │ │ ├── binarybuilder/ │ │ │ └── CMakeLists.txt │ │ └── windows dll/ │ │ └── CMakeLists.txt │ ├── JUCE-5.3.1/ │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── examples/ │ │ │ └── DemoRunner/ │ │ │ └── CMakeLists.txt │ │ └── extras/ │ │ ├── AudioPerformanceTest/ │ │ │ └── CMakeLists.txt │ │ ├── AudioPluginHost/ │ │ │ └── CMakeLists.txt │ │ ├── BinaryBuilder/ │ │ │ └── CMakeLists.txt │ │ ├── NetworkGraphicsDemo/ │ │ │ └── CMakeLists.txt │ │ ├── Projucer/ │ │ │ └── CMakeLists.txt │ │ ├── UnitTestRunner/ │ │ │ └── CMakeLists.txt │ │ └── WindowsDLL/ │ │ └── CMakeLists.txt │ ├── JUCE-5.4.3/ │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── examples/ │ │ │ └── DemoRunner/ │ │ │ └── CMakeLists.txt │ │ └── extras/ │ │ ├── AudioPerformanceTest/ │ │ │ └── CMakeLists.txt │ │ ├── AudioPluginHost/ │ │ │ └── CMakeLists.txt │ │ ├── BinaryBuilder/ │ │ │ └── CMakeLists.txt │ │ ├── NetworkGraphicsDemo/ │ │ │ └── CMakeLists.txt │ │ ├── Projucer/ │ │ │ └── CMakeLists.txt │ │ ├── UnitTestRunner/ │ │ │ └── CMakeLists.txt │ │ └── WindowsDLL/ │ │ └── CMakeLists.txt │ ├── JUCE-5.4.7/ │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── examples/ │ │ │ └── DemoRunner/ │ │ │ └── CMakeLists.txt │ │ └── extras/ │ │ ├── AudioPerformanceTest/ │ │ │ └── CMakeLists.txt │ │ ├── AudioPluginHost/ │ │ │ └── CMakeLists.txt │ │ ├── BinaryBuilder/ │ │ │ └── CMakeLists.txt │ │ ├── NetworkGraphicsDemo/ │ │ │ └── CMakeLists.txt │ │ ├── Projucer/ │ │ │ └── CMakeLists.txt │ │ ├── UnitTestRunner/ │ │ │ └── CMakeLists.txt │ │ └── WindowsDLL/ │ │ └── CMakeLists.txt │ ├── JUCE-6.0.5/ │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── examples/ │ │ │ └── DemoRunner/ │ │ │ └── CMakeLists.txt │ │ └── extras/ │ │ ├── AudioPerformanceTest/ │ │ │ └── CMakeLists.txt │ │ ├── AudioPluginHost/ │ │ │ └── CMakeLists.txt │ │ ├── BinaryBuilder/ │ │ │ └── CMakeLists.txt │ │ ├── NetworkGraphicsDemo/ │ │ │ └── CMakeLists.txt │ │ ├── Projucer/ │ │ │ └── CMakeLists.txt │ │ ├── UnitTestRunner/ │ │ │ └── CMakeLists.txt │ │ └── WindowsDLL/ │ │ └── CMakeLists.txt │ ├── JUCE-6.1.6/ │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── examples/ │ │ │ └── DemoRunner/ │ │ │ └── CMakeLists.txt │ │ └── extras/ │ │ ├── AudioPerformanceTest/ │ │ │ └── CMakeLists.txt │ │ ├── AudioPluginHost/ │ │ │ └── CMakeLists.txt │ │ ├── BinaryBuilder/ │ │ │ └── CMakeLists.txt │ │ ├── NetworkGraphicsDemo/ │ │ │ └── CMakeLists.txt │ │ ├── Projucer/ │ │ │ └── CMakeLists.txt │ │ ├── UnitTestRunner/ │ │ │ └── CMakeLists.txt │ │ └── WindowsDLL/ │ │ └── CMakeLists.txt │ └── JUCE-7.0.7/ │ ├── CMakeLists.txt │ ├── README.rst │ ├── examples/ │ │ └── DemoRunner/ │ │ └── CMakeLists.txt │ └── extras/ │ ├── AudioPerformanceTest/ │ │ └── CMakeLists.txt │ ├── AudioPluginHost/ │ │ └── CMakeLists.txt │ ├── BinaryBuilder/ │ │ └── CMakeLists.txt │ ├── NetworkGraphicsDemo/ │ │ └── CMakeLists.txt │ ├── Projucer/ │ │ └── CMakeLists.txt │ ├── UnitTestRunner/ │ │ └── CMakeLists.txt │ └── WindowsDLL/ │ └── CMakeLists.txt ├── tests/ │ ├── diff-compiler-args.cmake │ ├── issue-246/ │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── test-projects/ │ │ ├── entitlements-generation/ │ │ │ ├── .gitignore │ │ │ ├── guiapp-MacOSX/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── binary_dir/ │ │ │ │ ├── AllSettings.entitlements │ │ │ │ ├── PushNotificationsCapability.entitlements │ │ │ │ ├── UseAppSandbox_Inheritance.entitlements │ │ │ │ ├── UseAppSandbox_NoOptions.entitlements │ │ │ │ ├── UseAppSandbox_OneOption.entitlements │ │ │ │ ├── UseAppSandbox_SeveralOptions.entitlements │ │ │ │ ├── UseHardenedRuntime_NoOptions.entitlements │ │ │ │ ├── UseHardenedRuntime_OneOption.entitlements │ │ │ │ ├── UseHardenedRuntime_SeveralOptions.entitlements │ │ │ │ └── default.entitlements │ │ │ ├── guiapp-iOS/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── binary_dir/ │ │ │ │ ├── AppGroupsCapability-empty.entitlements │ │ │ │ ├── AppGroupsCapability-one_ID.entitlements │ │ │ │ ├── AppGroupsCapability-three_IDs.entitlements │ │ │ │ ├── PushNotificationsCapability.entitlements │ │ │ │ ├── default.entitlements │ │ │ │ └── iCloudPermissions.entitlements │ │ │ ├── plugin-MacOSX/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── binary_dir/ │ │ │ │ ├── AUv3-AllSettings.entitlements │ │ │ │ ├── AUv3-PushNotificationsCapability.entitlements │ │ │ │ ├── AUv3-UseAppSandbox_Inheritance.entitlements │ │ │ │ ├── AUv3-UseAppSandbox_NoOptions.entitlements │ │ │ │ ├── AUv3-UseAppSandbox_OneOption.entitlements │ │ │ │ ├── AUv3-UseAppSandbox_SeveralOptions.entitlements │ │ │ │ ├── AUv3-UseHardenedRuntime_NoOptions.entitlements │ │ │ │ ├── AUv3-UseHardenedRuntime_OneOption.entitlements │ │ │ │ ├── AUv3-UseHardenedRuntime_SeveralOptions.entitlements │ │ │ │ ├── AUv3-default.entitlements │ │ │ │ ├── AllSettings.entitlements │ │ │ │ ├── PushNotificationsCapability.entitlements │ │ │ │ ├── UseAppSandbox_Inheritance.entitlements │ │ │ │ ├── UseAppSandbox_NoOptions.entitlements │ │ │ │ ├── UseAppSandbox_OneOption.entitlements │ │ │ │ ├── UseAppSandbox_SeveralOptions.entitlements │ │ │ │ ├── UseHardenedRuntime_NoOptions.entitlements │ │ │ │ ├── UseHardenedRuntime_OneOption.entitlements │ │ │ │ ├── UseHardenedRuntime_SeveralOptions.entitlements │ │ │ │ └── default.entitlements │ │ │ └── plugin-iOS/ │ │ │ ├── CMakeLists.txt │ │ │ └── binary_dir/ │ │ │ ├── AUv3-EnableIAA.entitlements │ │ │ ├── AUv3-PushNotificationsCapability.entitlements │ │ │ ├── AUv3-default.entitlements │ │ │ ├── EnableIAA.entitlements │ │ │ ├── PushNotificationsCapability.entitlements │ │ │ └── default.entitlements │ │ ├── no-modules/ │ │ │ ├── consoleapp420/ │ │ │ │ ├── .gitignore │ │ │ │ ├── Builds/ │ │ │ │ │ ├── CodeBlocksLinux/ │ │ │ │ │ │ └── consoleapp420.cbp │ │ │ │ │ ├── CodeBlocksWindows/ │ │ │ │ │ │ └── consoleapp420.cbp │ │ │ │ │ ├── LinuxMakefile/ │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── MacOSX/ │ │ │ │ │ │ ├── RecentFilesMenuTemplate.nib │ │ │ │ │ │ └── consoleapp420.xcodeproj/ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── VisualStudio2013/ │ │ │ │ │ │ ├── consoleapp420.sln │ │ │ │ │ │ ├── consoleapp420.vcxproj │ │ │ │ │ │ ├── consoleapp420.vcxproj.filters │ │ │ │ │ │ └── resources.rc │ │ │ │ │ └── VisualStudio2015/ │ │ │ │ │ ├── consoleapp420.sln │ │ │ │ │ ├── consoleapp420.vcxproj │ │ │ │ │ ├── consoleapp420.vcxproj.filters │ │ │ │ │ └── resources.rc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── JuceLibraryCode/ │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ ├── JuceHeader.h │ │ │ │ │ └── ReadMe.txt │ │ │ │ ├── Source/ │ │ │ │ │ └── foo.cpp │ │ │ │ └── consoleapp420.jucer │ │ │ ├── consoleapp431/ │ │ │ │ ├── .gitignore │ │ │ │ ├── Builds/ │ │ │ │ │ ├── CodeBlocksLinux/ │ │ │ │ │ │ └── consoleapp431.cbp │ │ │ │ │ ├── CodeBlocksWindows/ │ │ │ │ │ │ └── consoleapp431.cbp │ │ │ │ │ ├── LinuxMakefile/ │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── MacOSX/ │ │ │ │ │ │ ├── RecentFilesMenuTemplate.nib │ │ │ │ │ │ └── consoleapp431.xcodeproj/ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── VisualStudio2013/ │ │ │ │ │ │ ├── consoleapp431.sln │ │ │ │ │ │ ├── consoleapp431.vcxproj │ │ │ │ │ │ ├── consoleapp431.vcxproj.filters │ │ │ │ │ │ └── resources.rc │ │ │ │ │ └── VisualStudio2015/ │ │ │ │ │ ├── consoleapp431.sln │ │ │ │ │ ├── consoleapp431.vcxproj │ │ │ │ │ ├── consoleapp431.vcxproj.filters │ │ │ │ │ └── resources.rc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── JuceLibraryCode/ │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ ├── JuceHeader.h │ │ │ │ │ └── ReadMe.txt │ │ │ │ ├── Source/ │ │ │ │ │ └── foo.cpp │ │ │ │ └── consoleapp431.jucer │ │ │ ├── consoleapp500/ │ │ │ │ ├── .gitignore │ │ │ │ ├── Builds/ │ │ │ │ │ ├── CodeBlocksLinux/ │ │ │ │ │ │ └── consoleapp500.cbp │ │ │ │ │ ├── CodeBlocksWindows/ │ │ │ │ │ │ └── consoleapp500.cbp │ │ │ │ │ ├── LinuxMakefile/ │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── MacOSX/ │ │ │ │ │ │ ├── RecentFilesMenuTemplate.nib │ │ │ │ │ │ └── consoleapp500.xcodeproj/ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── VisualStudio2013/ │ │ │ │ │ │ ├── consoleapp500.sln │ │ │ │ │ │ ├── consoleapp500_ConsoleApp.vcxproj │ │ │ │ │ │ └── resources.rc │ │ │ │ │ ├── VisualStudio2015/ │ │ │ │ │ │ ├── consoleapp500.sln │ │ │ │ │ │ ├── consoleapp500_ConsoleApp.vcxproj │ │ │ │ │ │ └── resources.rc │ │ │ │ │ └── VisualStudio2017/ │ │ │ │ │ ├── consoleapp500.sln │ │ │ │ │ ├── consoleapp500_ConsoleApp.vcxproj │ │ │ │ │ └── resources.rc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── JuceLibraryCode/ │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ ├── JuceHeader.h │ │ │ │ │ └── ReadMe.txt │ │ │ │ ├── Source/ │ │ │ │ │ └── foo.cpp │ │ │ │ └── consoleapp500.jucer │ │ │ ├── consoleapp521/ │ │ │ │ ├── .gitignore │ │ │ │ ├── Builds/ │ │ │ │ │ ├── CodeBlocksLinux/ │ │ │ │ │ │ └── consoleapp521.cbp │ │ │ │ │ ├── CodeBlocksWindows/ │ │ │ │ │ │ └── consoleapp521.cbp │ │ │ │ │ ├── LinuxMakefile/ │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── MacOSX/ │ │ │ │ │ │ ├── RecentFilesMenuTemplate.nib │ │ │ │ │ │ └── consoleapp521.xcodeproj/ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── VisualStudio2013/ │ │ │ │ │ │ ├── consoleapp521.sln │ │ │ │ │ │ ├── consoleapp521_ConsoleApp.vcxproj │ │ │ │ │ │ ├── consoleapp521_ConsoleApp.vcxproj.filters │ │ │ │ │ │ └── resources.rc │ │ │ │ │ ├── VisualStudio2015/ │ │ │ │ │ │ ├── consoleapp521.sln │ │ │ │ │ │ ├── consoleapp521_ConsoleApp.vcxproj │ │ │ │ │ │ ├── consoleapp521_ConsoleApp.vcxproj.filters │ │ │ │ │ │ └── resources.rc │ │ │ │ │ └── VisualStudio2017/ │ │ │ │ │ ├── consoleapp521.sln │ │ │ │ │ ├── consoleapp521_ConsoleApp.vcxproj │ │ │ │ │ ├── consoleapp521_ConsoleApp.vcxproj.filters │ │ │ │ │ └── resources.rc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── JuceLibraryCode/ │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ ├── JuceHeader.h │ │ │ │ │ └── ReadMe.txt │ │ │ │ ├── Source/ │ │ │ │ │ └── foo.cpp │ │ │ │ └── consoleapp521.jucer │ │ │ ├── consoleapp531/ │ │ │ │ ├── .gitignore │ │ │ │ ├── Builds/ │ │ │ │ │ ├── CodeBlocksLinux/ │ │ │ │ │ │ └── consoleapp531.cbp │ │ │ │ │ ├── CodeBlocksWindows/ │ │ │ │ │ │ └── consoleapp531.cbp │ │ │ │ │ ├── LinuxMakefile/ │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── MacOSX/ │ │ │ │ │ │ ├── RecentFilesMenuTemplate.nib │ │ │ │ │ │ └── consoleapp531.xcodeproj/ │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── VisualStudio2013/ │ │ │ │ │ │ ├── consoleapp531.sln │ │ │ │ │ │ ├── consoleapp531_ConsoleApp.vcxproj │ │ │ │ │ │ ├── consoleapp531_ConsoleApp.vcxproj.filters │ │ │ │ │ │ └── resources.rc │ │ │ │ │ ├── VisualStudio2015/ │ │ │ │ │ │ ├── consoleapp531.sln │ │ │ │ │ │ ├── consoleapp531_ConsoleApp.vcxproj │ │ │ │ │ │ ├── consoleapp531_ConsoleApp.vcxproj.filters │ │ │ │ │ │ └── resources.rc │ │ │ │ │ └── VisualStudio2017/ │ │ │ │ │ ├── consoleapp531.sln │ │ │ │ │ ├── consoleapp531_ConsoleApp.vcxproj │ │ │ │ │ ├── consoleapp531_ConsoleApp.vcxproj.filters │ │ │ │ │ └── resources.rc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── JuceLibraryCode/ │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ ├── JuceHeader.h │ │ │ │ │ └── ReadMe.txt │ │ │ │ ├── Source/ │ │ │ │ │ └── foo.cpp │ │ │ │ └── consoleapp531.jucer │ │ │ └── consoleapp543/ │ │ │ ├── .gitignore │ │ │ ├── Builds/ │ │ │ │ ├── CodeBlocksLinux/ │ │ │ │ │ ├── consoleapp543.cbp │ │ │ │ │ └── resources.rc │ │ │ │ ├── CodeBlocksWindows/ │ │ │ │ │ ├── consoleapp543.cbp │ │ │ │ │ └── resources.rc │ │ │ │ ├── LinuxMakefile/ │ │ │ │ │ └── Makefile │ │ │ │ ├── MacOSX/ │ │ │ │ │ ├── RecentFilesMenuTemplate.nib │ │ │ │ │ └── consoleapp543.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ ├── VisualStudio2013/ │ │ │ │ │ ├── consoleapp543.sln │ │ │ │ │ ├── consoleapp543_ConsoleApp.vcxproj │ │ │ │ │ ├── consoleapp543_ConsoleApp.vcxproj.filters │ │ │ │ │ └── resources.rc │ │ │ │ ├── VisualStudio2015/ │ │ │ │ │ ├── consoleapp543.sln │ │ │ │ │ ├── consoleapp543_ConsoleApp.vcxproj │ │ │ │ │ ├── consoleapp543_ConsoleApp.vcxproj.filters │ │ │ │ │ └── resources.rc │ │ │ │ └── VisualStudio2017/ │ │ │ │ ├── consoleapp543.sln │ │ │ │ ├── consoleapp543_ConsoleApp.vcxproj │ │ │ │ ├── consoleapp543_ConsoleApp.vcxproj.filters │ │ │ │ └── resources.rc │ │ │ ├── CMakeLists.txt │ │ │ ├── JuceLibraryCode/ │ │ │ │ ├── AppConfig.h │ │ │ │ ├── JuceHeader.h │ │ │ │ └── ReadMe.txt │ │ │ ├── Source/ │ │ │ │ └── foo.cpp │ │ │ └── consoleapp543.jucer │ │ └── plist-generation/ │ │ ├── .gitignore │ │ ├── guiapp-MacOSX/ │ │ │ ├── CMakeLists.txt │ │ │ └── binary_dir/ │ │ │ ├── Info-App-BluetoothUsage-custom.plist │ │ │ ├── Info-App-BluetoothUsage-default.plist │ │ │ ├── Info-App-BundleIdentifier.plist │ │ │ ├── Info-App-CameraUsage-custom.plist │ │ │ ├── Info-App-CameraUsage-default.plist │ │ │ ├── Info-App-Copyright-pre-5.2.0.plist │ │ │ ├── Info-App-Copyright.plist │ │ │ ├── Info-App-DocumentTypes.plist │ │ │ ├── Info-App-ExporterBundleIdentifier.plist │ │ │ ├── Info-App-IconFile.plist │ │ │ ├── Info-App-MicrophoneUsage-custom.plist │ │ │ ├── Info-App-MicrophoneUsage-default.plist │ │ │ ├── Info-App-SendAppleEvents-custom.plist │ │ │ ├── Info-App-SendAppleEvents-default.plist │ │ │ ├── Info-App-Version.plist │ │ │ ├── Info-App-default.plist │ │ │ └── Info-App-pre-5.2.0.plist │ │ ├── guiapp-iOS/ │ │ │ ├── CMakeLists.txt │ │ │ └── binary_dir/ │ │ │ ├── Info-App-AllBackgroundCapabilities.plist │ │ │ ├── Info-App-AudioBackgroundCapability.plist │ │ │ ├── Info-App-BluetoothMIDIBackgroundCapability.plist │ │ │ ├── Info-App-BluetoothUsage-custom.plist │ │ │ ├── Info-App-BluetoothUsage-default.plist │ │ │ ├── Info-App-BundleIdentifier.plist │ │ │ ├── Info-App-CameraUsage-custom.plist │ │ │ ├── Info-App-CameraUsage-default.plist │ │ │ ├── Info-App-Copyright.plist │ │ │ ├── Info-App-ExporterBundleIdentifier.plist │ │ │ ├── Info-App-FileSharingEnabled.plist │ │ │ ├── Info-App-MicrophoneUsage-custom.plist │ │ │ ├── Info-App-MicrophoneUsage-default.plist │ │ │ ├── Info-App-PushNotificationsCapability.plist │ │ │ ├── Info-App-RequiresFullScreen-off.plist │ │ │ ├── Info-App-ScreenOrientations-default.plist │ │ │ ├── Info-App-ScreenOrientations-different.plist │ │ │ ├── Info-App-ScreenOrientations-identical.plist │ │ │ ├── Info-App-StatusBarHidden-pre-6.0.8.plist │ │ │ ├── Info-App-StatusBarHidden.plist │ │ │ ├── Info-App-SupportDocumentBrowser.plist │ │ │ ├── Info-App-Version.plist │ │ │ ├── Info-App-default.plist │ │ │ └── Info-App-pre-6.0.8.plist │ │ ├── plugin-MacOSX/ │ │ │ ├── CMakeLists.txt │ │ │ └── binary_dir/ │ │ │ ├── Info-AAX-default.plist │ │ │ ├── Info-AU-default.plist │ │ │ ├── Info-AU-factoryFunction.plist │ │ │ ├── Info-AU-pre-5.4.0.plist │ │ │ ├── Info-AU-sandboxSafe.plist │ │ │ ├── Info-AUv3_AppExtension-ExporterBundleIdentifier.plist │ │ │ ├── Info-AUv3_AppExtension-Synth.plist │ │ │ ├── Info-AUv3_AppExtension-default.plist │ │ │ ├── Info-AUv3_AppExtension-factoryFunction.plist │ │ │ ├── Info-AUv3_AppExtension-pre-5.0.0.plist │ │ │ ├── Info-AUv3_Standalone-pre-5.0.0.plist │ │ │ ├── Info-RTAS-default.plist │ │ │ ├── Info-Standalone_Plugin-default.plist │ │ │ ├── Info-Unity_Plugin-default.plist │ │ │ ├── Info-VST-default.plist │ │ │ ├── Info-VST3-default.plist │ │ │ └── Info-VST3-pre-5.2.0.plist │ │ └── plugin-iOS/ │ │ ├── CMakeLists.txt │ │ └── binary_dir/ │ │ ├── Info-AUv3_AppExtension-ExporterBundleIdentifier.plist │ │ ├── Info-AUv3_AppExtension-Synth.plist │ │ ├── Info-AUv3_AppExtension-default.plist │ │ ├── Info-AUv3_AppExtension-factoryFunction.plist │ │ ├── Info-AUv3_AppExtension-pre-6.0.8.plist │ │ ├── Info-Standalone_Plugin-IAA.plist │ │ └── Info-Standalone_Plugin-default.plist │ └── test-utils/ │ ├── cmake_make_program/ │ │ └── CMakeLists.txt │ └── simplediff/ │ ├── simplediff.cmake │ └── test_simplediff.cmake └── third-party/ ├── .clang-format └── argh/ ├── LICENSE └── argh.h