Browse Source

Re-save all projects.

tags/2021-05-28
Lukasz Kozakiewicz 7 years ago
parent
commit
774c1f5bed
25 changed files with 668 additions and 580 deletions
  1. +21
    -3
      examples/DemoRunner/Builds/Android/app/src/main/java/com/roli/juce/demorunner/DemoRunner.java
  2. +268
    -268
      examples/DemoRunner/Builds/MacOSX/DemoRunner.xcodeproj/project.pbxproj
  3. +5
    -5
      examples/DemoRunner/Builds/VisualStudio2013/DemoRunner.sln
  4. +1
    -1
      examples/DemoRunner/Builds/VisualStudio2013/DemoRunner_App.vcxproj
  5. +5
    -5
      examples/DemoRunner/Builds/VisualStudio2015/DemoRunner.sln
  6. +1
    -1
      examples/DemoRunner/Builds/VisualStudio2015/DemoRunner_App.vcxproj
  7. +5
    -5
      examples/DemoRunner/Builds/VisualStudio2017/DemoRunner.sln
  8. +1
    -1
      examples/DemoRunner/Builds/VisualStudio2017/DemoRunner_App.vcxproj
  9. +282
    -282
      examples/DemoRunner/Builds/iOS/DemoRunner.xcodeproj/project.pbxproj
  10. +1
    -1
      examples/DemoRunner/JuceLibraryCode/AppConfig.h
  11. +2
    -0
      extras/AudioPerformanceTest/Builds/Android/app/CMakeLists.txt
  12. +21
    -3
      extras/AudioPerformanceTest/Builds/Android/app/src/main/java/com/juce/audioperformancetest/AudioPerformanceTest.java
  13. +3
    -0
      extras/AudioPerformanceTest/Builds/VisualStudio2015/AudioPerformanceTest_App.vcxproj
  14. +3
    -0
      extras/AudioPerformanceTest/Builds/VisualStudio2015/AudioPerformanceTest_App.vcxproj.filters
  15. +2
    -0
      extras/NetworkGraphicsDemo/Builds/Android/app/CMakeLists.txt
  16. +21
    -3
      extras/NetworkGraphicsDemo/Builds/Android/app/src/main/java/com/juce/networkgraphicsdemo/JUCENetworkGraphicsDemo.java
  17. +3
    -0
      extras/NetworkGraphicsDemo/Builds/VisualStudio2013/NetworkGraphicsDemo_App.vcxproj
  18. +3
    -0
      extras/NetworkGraphicsDemo/Builds/VisualStudio2013/NetworkGraphicsDemo_App.vcxproj.filters
  19. +3
    -0
      extras/NetworkGraphicsDemo/Builds/VisualStudio2017/NetworkGraphicsDemo_App.vcxproj
  20. +3
    -0
      extras/NetworkGraphicsDemo/Builds/VisualStudio2017/NetworkGraphicsDemo_App.vcxproj.filters
  21. +2
    -2
      extras/UnitTestRunner/Builds/MacOSX/UnitTestRunner.xcodeproj/project.pbxproj
  22. +3
    -0
      extras/UnitTestRunner/Builds/VisualStudio2017/UnitTestRunner_ConsoleApp.vcxproj
  23. +3
    -0
      extras/UnitTestRunner/Builds/VisualStudio2017/UnitTestRunner_ConsoleApp.vcxproj.filters
  24. +3
    -0
      extras/WindowsDLL/Builds/VisualStudio2017/WindowsDLL_StaticLibrary.vcxproj
  25. +3
    -0
      extras/WindowsDLL/Builds/VisualStudio2017/WindowsDLL_StaticLibrary.vcxproj.filters

+ 21
- 3
examples/DemoRunner/Builds/Android/app/src/main/java/com/roli/juce/demorunner/DemoRunner.java View File

@@ -1823,19 +1823,37 @@ public class DemoRunner extends Activity
private class TreeObserver implements ViewTreeObserver.OnGlobalLayoutListener
{
TreeObserver()
{
keyboardShown = false;
}
@Override
public void onGlobalLayout()
{
Rect r = new Rect();
view.getWindowVisibleDisplayFrame(r);
ViewGroup parentView = (ViewGroup) getParent();
if (parentView == null)
return;
parentView.getWindowVisibleDisplayFrame (r);
int diff = view.getHeight() - (r.bottom - r.top);
int diff = parentView.getHeight() - (r.bottom - r.top);
// Arbitrary threshold, surely keyboard would take more than 20 pix.
if (diff < 20)
if (diff < 20 && keyboardShown)
{
keyboardShown = false;
handleKeyboardHidden (view.host);
}
if (! keyboardShown && diff > 20)
keyboardShown = true;
};
private boolean keyboardShown;
};
private ComponentPeerView view;


+ 268
- 268
examples/DemoRunner/Builds/MacOSX/DemoRunner.xcodeproj/project.pbxproj View File

@@ -6,213 +6,213 @@
objectVersion = 46;
objects = {

A266A9AEE20E948B1B729AB1 = {isa = PBXBuildFile; fileRef = 5CB8CE1A1C9A67298F80FC04; };
3DE670A035B1815A22D83557 = {isa = PBXBuildFile; fileRef = 6835BDC8CD881018B80F9BF9; };
7433A7AA49D69A058F59DE2A = {isa = PBXBuildFile; fileRef = 2D1EE4D99A4B85CB3108F8A0; };
35AD3766DD48594FD02ECB97 = {isa = PBXBuildFile; fileRef = 1FD7405FF78E20016EABB63E; };
6DEE05786F8FB0012977BA15 = {isa = PBXBuildFile; fileRef = ADE7347A208511B04EC8A5C2; };
F6E47370C9D39FD1A3A72805 = {isa = PBXBuildFile; fileRef = 019EBC88B11618DD18730925; };
2D13EAB2602C3C8A65F2097F = {isa = PBXBuildFile; fileRef = 45FB80AAAC9E2B75838924D7; };
BCDB3345B6ED2457B7423309 = {isa = PBXBuildFile; fileRef = 622F457A3ADC194B7AE7B6D5; };
7F6333DA7C84D86E3F354A45 = {isa = PBXBuildFile; fileRef = 0BF6AC7C3E9C2C4ADB63397F; };
7E1228B51FFBB3D9BE8B9390 = {isa = PBXBuildFile; fileRef = 6BC2B25532F0E7A50D0950E0; };
268440CEB7722C1D55E7727C = {isa = PBXBuildFile; fileRef = DA96C22C5FD5ADC7239F9188; };
352AF78063DC95EBD4564DF7 = {isa = PBXBuildFile; fileRef = 6E08C83F669533B53D9359F2; };
23CB425319BF975B9C963D4D = {isa = PBXBuildFile; fileRef = E64890468C71BD9906029F5F; };
7922BD029CE0E987D1E33710 = {isa = PBXBuildFile; fileRef = E797D62E22B740939E60F37C; };
872D5C0CBC0B5B59481B2961 = {isa = PBXBuildFile; fileRef = 2CF81B3ABE96FFE702CFC8F9; };
1985F3EFD2ACBF3DEC07EEEB = {isa = PBXBuildFile; fileRef = 5045655787524A0B1AA4EB5D; };
4C7AD8D88472B26449C4CF63 = {isa = PBXBuildFile; fileRef = A91213924D6106A524DDED04; };
2A3DC87FFD79EAE6BFA94622 = {isa = PBXBuildFile; fileRef = 8691567B1218B7A9EFE5F6C7; };
BD04F47A8820F3C1020BBBCB = {isa = PBXBuildFile; fileRef = 59B0D7D99BF3FDFB63FDAA21; };
20B3995FB3715E6ED47B76F1 = {isa = PBXBuildFile; fileRef = 188A412FD9FB8C262DB1B444; };
D95C28AED57175F32AA87EFA = {isa = PBXBuildFile; fileRef = D2A37539D32DF3DC3E992A33; };
4AEDB85AEFDA4CB199CB3D5F = {isa = PBXBuildFile; fileRef = E516E7CE15094FFB686C8643; };
604E46FE23C850D75D07D08B = {isa = PBXBuildFile; fileRef = 781637A1252E41252BEA8C7A; };
6E8B3995F69016C86D869C29 = {isa = PBXBuildFile; fileRef = 3F812A57EB3193F93597F5A8; };
F3CEC3F0AC9F3447817D782D = {isa = PBXBuildFile; fileRef = 2C3FB13D8116CFB722F669C4; };
6AFF5F67E3B6392E41E3606F = {isa = PBXBuildFile; fileRef = A9BC810DF7833B6D3C313637; };
9AE05CC0F9FF63FF0E51B28F = {isa = PBXBuildFile; fileRef = 48B5EFBCC352B1E56CC8EA77; };
EF3D92F535606C53B1240C2F = {isa = PBXBuildFile; fileRef = 18CAC970F893E24D1B3183D7; };
872B4E257083F2B28696BA5C = {isa = PBXBuildFile; fileRef = D88B5641B51118EE150CF147; };
7FB0A6A8EBDFC2C9BF2B4407 = {isa = PBXBuildFile; fileRef = 4B33E4D3B0A5A5EEF1EEDC0C; };
5235D05C85F2D645F9993677 = {isa = PBXBuildFile; fileRef = A586573C8C0B7578EA62D38B; };
698B4D0BB29EA820DD4C1202 = {isa = PBXBuildFile; fileRef = C94CC76F1D4D709FD552A1D4; };
E9032722067CC37D915FCF76 = {isa = PBXBuildFile; fileRef = 9B555A796D4240CC3D24AD9E; };
77327439358C4FED6F1818B5 = {isa = PBXBuildFile; fileRef = DDA9C2C25E953F94889C5E6B; };
DBE748AC5DA12DE3A8D16BBD = {isa = PBXBuildFile; fileRef = EED6F3D4A63A3ABFB9B3A6DB; };
24D22C16FC23E24654A82A65 = {isa = PBXBuildFile; fileRef = DC8F2762B31C384F881CF47E; };
CC1431712E73E25191E693D5 = {isa = PBXBuildFile; fileRef = BB9C201B975D7CCCDEAB0BB9; };
76233E3A9E20841862403C46 = {isa = PBXBuildFile; fileRef = F37F38C06CE8F2A6437C0D22; };
12972133C0EF4AFA095643D2 = {isa = PBXBuildFile; fileRef = 85228A3DF090D1AE2190FFCC; };
85FB78873995DA4E86D1BD35 = {isa = PBXBuildFile; fileRef = 021817818723EC1D3B162B41; };
A5271659E0DEACA9158A2316 = {isa = PBXBuildFile; fileRef = A967B9F6AB128BDF89E29864; };
7FFE403B9AAD39F7F14CE2AC = {isa = PBXBuildFile; fileRef = 3912433EEB5FA820AE1FDDF7; };
BB0BB0C53C5A130F8F2FFFCB = {isa = PBXBuildFile; fileRef = DA7A61D9CE7D7CEA925FEBA6; };
019EBC88B11618DD18730925 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
021817818723EC1D3B162B41 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_opengl.mm"; path = "../../JuceLibraryCode/include_juce_opengl.mm"; sourceTree = "SOURCE_ROOT"; };
05341E4A228EAF40564BB4C9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = "SOURCE_ROOT"; };
0BF6AC7C3E9C2C4ADB63397F = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
0C0321717BB631605CC77711 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_graphics"; path = "../../../../modules/juce_graphics"; sourceTree = "SOURCE_ROOT"; };
188A412FD9FB8C262DB1B444 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = JUCEDemos.cpp; path = ../../Source/Demos/JUCEDemos.cpp; sourceTree = "SOURCE_ROOT"; };
18CAC970F893E24D1B3183D7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_processors.mm"; path = "../../JuceLibraryCode/include_juce_audio_processors.mm"; sourceTree = "SOURCE_ROOT"; };
1D33F6301F948D4F97601306 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_cryptography"; path = "../../../../modules/juce_cryptography"; sourceTree = "SOURCE_ROOT"; };
1F7A8FBF84EE7B0603BE1816 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_product_unlocking"; path = "../../../../modules/juce_product_unlocking"; sourceTree = "SOURCE_ROOT"; };
1FD7405FF78E20016EABB63E = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
29AB67D1988BBE77DDBD7C70 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_video"; path = "../../../../modules/juce_video"; sourceTree = "SOURCE_ROOT"; };
2C3FB13D8116CFB722F669C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_basics.mm"; path = "../../JuceLibraryCode/include_juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
2CF81B3ABE96FFE702CFC8F9 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
2D1EE4D99A4B85CB3108F8A0 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
384212A5859CDFC803FB14D6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainComponent.h; path = ../../Source/UI/MainComponent.h; sourceTree = "SOURCE_ROOT"; };
3912433EEB5FA820AE1FDDF7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_product_unlocking.mm"; path = "../../JuceLibraryCode/include_juce_product_unlocking.mm"; sourceTree = "SOURCE_ROOT"; };
3D28684BC99063A7E66316B8 = {isa = PBXFileReference; lastKnownFileType = image.png; name = JUCEAppIcon.png; path = ../../Source/JUCEAppIcon.png; sourceTree = "SOURCE_ROOT"; };
3F812A57EB3193F93597F5A8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_analytics.cpp"; path = "../../JuceLibraryCode/include_juce_analytics.cpp"; sourceTree = "SOURCE_ROOT"; };
45FB80AAAC9E2B75838924D7 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
48B5EFBCC352B1E56CC8EA77 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_formats.mm"; path = "../../JuceLibraryCode/include_juce_audio_formats.mm"; sourceTree = "SOURCE_ROOT"; };
4B33E4D3B0A5A5EEF1EEDC0C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_blocks_basics.cpp"; path = "../../JuceLibraryCode/include_juce_blocks_basics.cpp"; sourceTree = "SOURCE_ROOT"; };
4BA5697853D5B9CA909E768E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IntroScreen.h; path = ../../Source/Demos/IntroScreen.h; sourceTree = "SOURCE_ROOT"; };
5045655787524A0B1AA4EB5D = {isa = PBXFileReference; lastKnownFileType = file.nib; name = RecentFilesMenuTemplate.nib; path = RecentFilesMenuTemplate.nib; sourceTree = "SOURCE_ROOT"; };
59B0D7D99BF3FDFB63FDAA21 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DemoPIPs2.cpp; path = ../../Source/Demos/DemoPIPs2.cpp; sourceTree = "SOURCE_ROOT"; };
5CB8CE1A1C9A67298F80FC04 = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DemoRunner.app; sourceTree = "BUILT_PRODUCTS_DIR"; };
620DC92F472D32235843D916 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_data_structures"; path = "../../../../modules/juce_data_structures"; sourceTree = "SOURCE_ROOT"; };
622F457A3ADC194B7AE7B6D5 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
676A5FFC15765D73779FE43D = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_dsp"; path = "../../../../modules/juce_dsp"; sourceTree = "SOURCE_ROOT"; };
6835BDC8CD881018B80F9BF9 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
68EBDC98E9EE2665F60F0B88 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SettingsContent.h; path = ../../Source/UI/SettingsContent.h; sourceTree = "SOURCE_ROOT"; };
6BC2B25532F0E7A50D0950E0 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
6DD92F919D764DDD7AAFC518 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_processors"; path = "../../../../modules/juce_audio_processors"; sourceTree = "SOURCE_ROOT"; };
6E08C83F669533B53D9359F2 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
6E9E2ACFA0F89810D6888B8B = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_blocks_basics"; path = "../../../../modules/juce_blocks_basics"; sourceTree = "SOURCE_ROOT"; };
7170D7A8EB78C005FB4CCD41 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_core"; path = "../../../../modules/juce_core"; sourceTree = "SOURCE_ROOT"; };
781637A1252E41252BEA8C7A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = "SOURCE_ROOT"; };
81227E353AB0F6DFEB740346 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_osc"; path = "../../../../modules/juce_osc"; sourceTree = "SOURCE_ROOT"; };
85106095564D7799E47D8D85 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_devices"; path = "../../../../modules/juce_audio_devices"; sourceTree = "SOURCE_ROOT"; };
85228A3DF090D1AE2190FFCC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_gui_extra.mm"; path = "../../JuceLibraryCode/include_juce_gui_extra.mm"; sourceTree = "SOURCE_ROOT"; };
8570E0A99252209A13D6D4D9 = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "Info-App.plist"; path = "Info-App.plist"; sourceTree = "SOURCE_ROOT"; };
8691567B1218B7A9EFE5F6C7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DemoPIPs1.cpp; path = ../../Source/Demos/DemoPIPs1.cpp; sourceTree = "SOURCE_ROOT"; };
893E1E27D370304B9EACC661 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_formats"; path = "../../../../modules/juce_audio_formats"; sourceTree = "SOURCE_ROOT"; };
9178F78EECDBCB3F664152F4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = "SOURCE_ROOT"; };
9B555A796D4240CC3D24AD9E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_cryptography.mm"; path = "../../JuceLibraryCode/include_juce_cryptography.mm"; sourceTree = "SOURCE_ROOT"; };
9CD69846F1B1C8950DB6E835 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = DemoContentComponent.h; path = ../../Source/UI/DemoContentComponent.h; sourceTree = "SOURCE_ROOT"; };
9F8CA6716C6582F1EA6A56FE = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_events"; path = "../../../../modules/juce_events"; sourceTree = "SOURCE_ROOT"; };
A494543F1EC3C22C202B6489 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_gui_extra"; path = "../../../../modules/juce_gui_extra"; sourceTree = "SOURCE_ROOT"; };
A586573C8C0B7578EA62D38B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_box2d.cpp"; path = "../../JuceLibraryCode/include_juce_box2d.cpp"; sourceTree = "SOURCE_ROOT"; };
A91213924D6106A524DDED04 = {isa = PBXFileReference; lastKnownFileType = file.icns; name = Icon.icns; path = Icon.icns; sourceTree = "SOURCE_ROOT"; };
A967B9F6AB128BDF89E29864 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_osc.cpp"; path = "../../JuceLibraryCode/include_juce_osc.cpp"; sourceTree = "SOURCE_ROOT"; };
A9BC810DF7833B6D3C313637 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_devices.mm"; path = "../../JuceLibraryCode/include_juce_audio_devices.mm"; sourceTree = "SOURCE_ROOT"; };
ADE7347A208511B04EC8A5C2 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVKit.framework; path = System/Library/Frameworks/AVKit.framework; sourceTree = SDKROOT; };
BB9C201B975D7CCCDEAB0BB9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_graphics.mm"; path = "../../JuceLibraryCode/include_juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
C4CF8B1AED1919259339456A = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_box2d"; path = "../../../../modules/juce_box2d"; sourceTree = "SOURCE_ROOT"; };
C94CC76F1D4D709FD552A1D4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_core.mm"; path = "../../JuceLibraryCode/include_juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
D2A37539D32DF3DC3E992A33 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DemoContentComponent.cpp; path = ../../Source/UI/DemoContentComponent.cpp; sourceTree = "SOURCE_ROOT"; };
D357B5F02B40640C7B41A349 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_basics"; path = "../../../../modules/juce_audio_basics"; sourceTree = "SOURCE_ROOT"; };
D47FB181DE399C5657C1DB1D = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_gui_basics"; path = "../../../../modules/juce_gui_basics"; sourceTree = "SOURCE_ROOT"; };
D88B5641B51118EE150CF147 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_utils.mm"; path = "../../JuceLibraryCode/include_juce_audio_utils.mm"; sourceTree = "SOURCE_ROOT"; };
DA7A61D9CE7D7CEA925FEBA6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_video.mm"; path = "../../JuceLibraryCode/include_juce_video.mm"; sourceTree = "SOURCE_ROOT"; };
DA96C22C5FD5ADC7239F9188 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiscRecording.framework; path = System/Library/Frameworks/DiscRecording.framework; sourceTree = SDKROOT; };
DB868FB32A00548DFAC10A1B = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_utils"; path = "../../../../modules/juce_audio_utils"; sourceTree = "SOURCE_ROOT"; };
DC8F2762B31C384F881CF47E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_events.mm"; path = "../../JuceLibraryCode/include_juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
DDA9C2C25E953F94889C5E6B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_data_structures.mm"; path = "../../JuceLibraryCode/include_juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
DDBC5EE25C9FCA6E1616A2CF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JUCEDemos.h; path = ../../Source/Demos/JUCEDemos.h; sourceTree = "SOURCE_ROOT"; };
E21A883AFFDD1E5A0964B166 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_analytics"; path = "../../../../modules/juce_analytics"; sourceTree = "SOURCE_ROOT"; };
E516E7CE15094FFB686C8643 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainComponent.cpp; path = ../../Source/UI/MainComponent.cpp; sourceTree = "SOURCE_ROOT"; };
E64890468C71BD9906029F5F = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
E797D62E22B740939E60F37C = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
EED6F3D4A63A3ABFB9B3A6DB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_dsp.mm"; path = "../../JuceLibraryCode/include_juce_dsp.mm"; sourceTree = "SOURCE_ROOT"; };
EF6DEF68FC21A130CEEF8A9D = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_opengl"; path = "../../../../modules/juce_opengl"; sourceTree = "SOURCE_ROOT"; };
F37F38C06CE8F2A6437C0D22 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_gui_basics.mm"; path = "../../JuceLibraryCode/include_juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
43AA2D96A9A6D0D82AC4A261 = {isa = PBXGroup; children = (
8691567B1218B7A9EFE5F6C7,
59B0D7D99BF3FDFB63FDAA21,
4BA5697853D5B9CA909E768E,
188A412FD9FB8C262DB1B444,
DDBC5EE25C9FCA6E1616A2CF, ); name = Demos; sourceTree = "<group>"; };
4BAFEB8B502C0277D25AC146 = {isa = PBXGroup; children = (
D2A37539D32DF3DC3E992A33,
9CD69846F1B1C8950DB6E835,
E516E7CE15094FFB686C8643,
384212A5859CDFC803FB14D6,
68EBDC98E9EE2665F60F0B88, ); name = UI; sourceTree = "<group>"; };
435B73ABD91BB6755FB0FAC0 = {isa = PBXGroup; children = (
43AA2D96A9A6D0D82AC4A261,
4BAFEB8B502C0277D25AC146,
781637A1252E41252BEA8C7A,
3D28684BC99063A7E66316B8, ); name = Source; sourceTree = "<group>"; };
765B33C999F36263EAD17877 = {isa = PBXGroup; children = (
435B73ABD91BB6755FB0FAC0, ); name = DemoRunner; sourceTree = "<group>"; };
97201B81C922CA4A94B80EC8 = {isa = PBXGroup; children = (
E21A883AFFDD1E5A0964B166,
D357B5F02B40640C7B41A349,
85106095564D7799E47D8D85,
893E1E27D370304B9EACC661,
6DD92F919D764DDD7AAFC518,
DB868FB32A00548DFAC10A1B,
6E9E2ACFA0F89810D6888B8B,
C4CF8B1AED1919259339456A,
7170D7A8EB78C005FB4CCD41,
1D33F6301F948D4F97601306,
620DC92F472D32235843D916,
676A5FFC15765D73779FE43D,
9F8CA6716C6582F1EA6A56FE,
0C0321717BB631605CC77711,
D47FB181DE399C5657C1DB1D,
A494543F1EC3C22C202B6489,
EF6DEF68FC21A130CEEF8A9D,
81227E353AB0F6DFEB740346,
1F7A8FBF84EE7B0603BE1816,
29AB67D1988BBE77DDBD7C70, ); name = "JUCE Modules"; sourceTree = "<group>"; };
EA3924214601843C7E476093 = {isa = PBXGroup; children = (
9178F78EECDBCB3F664152F4,
3F812A57EB3193F93597F5A8,
2C3FB13D8116CFB722F669C4,
A9BC810DF7833B6D3C313637,
48B5EFBCC352B1E56CC8EA77,
18CAC970F893E24D1B3183D7,
D88B5641B51118EE150CF147,
4B33E4D3B0A5A5EEF1EEDC0C,
A586573C8C0B7578EA62D38B,
C94CC76F1D4D709FD552A1D4,
9B555A796D4240CC3D24AD9E,
DDA9C2C25E953F94889C5E6B,
EED6F3D4A63A3ABFB9B3A6DB,
DC8F2762B31C384F881CF47E,
BB9C201B975D7CCCDEAB0BB9,
F37F38C06CE8F2A6437C0D22,
85228A3DF090D1AE2190FFCC,
021817818723EC1D3B162B41,
A967B9F6AB128BDF89E29864,
3912433EEB5FA820AE1FDDF7,
DA7A61D9CE7D7CEA925FEBA6,
05341E4A228EAF40564BB4C9, ); name = "JUCE Library Code"; sourceTree = "<group>"; };
E217BA20E866F42794C0387A = {isa = PBXGroup; children = (
8570E0A99252209A13D6D4D9,
5045655787524A0B1AA4EB5D,
A91213924D6106A524DDED04, ); name = Resources; sourceTree = "<group>"; };
8BFA802D5F51FB8D8A3C69D3 = {isa = PBXGroup; children = (
6835BDC8CD881018B80F9BF9,
2D1EE4D99A4B85CB3108F8A0,
1FD7405FF78E20016EABB63E,
ADE7347A208511B04EC8A5C2,
019EBC88B11618DD18730925,
45FB80AAAC9E2B75838924D7,
622F457A3ADC194B7AE7B6D5,
0BF6AC7C3E9C2C4ADB63397F,
6BC2B25532F0E7A50D0950E0,
DA96C22C5FD5ADC7239F9188,
6E08C83F669533B53D9359F2,
E64890468C71BD9906029F5F,
E797D62E22B740939E60F37C,
2CF81B3ABE96FFE702CFC8F9, ); name = Frameworks; sourceTree = "<group>"; };
15ECAA0F85F36697AFC22312 = {isa = PBXGroup; children = (
5CB8CE1A1C9A67298F80FC04, ); name = Products; sourceTree = "<group>"; };
BDBE5F3993573C2D57291C50 = {isa = PBXGroup; children = (
765B33C999F36263EAD17877,
97201B81C922CA4A94B80EC8,
EA3924214601843C7E476093,
E217BA20E866F42794C0387A,
8BFA802D5F51FB8D8A3C69D3,
15ECAA0F85F36697AFC22312, ); name = Source; sourceTree = "<group>"; };
DAD00A3C4CFDBAA7DBE203BC = {isa = XCBuildConfiguration; buildSettings = {
50D7EC5612ECA5BC19DC03AF = {isa = PBXBuildFile; fileRef = 52DD88A0571B22A2EAB16445; };
235DB857C0318115A36E1FD8 = {isa = PBXBuildFile; fileRef = BB8199F77CA512412BFDCEDC; };
4EA2E1D2BEFD70EF4239A160 = {isa = PBXBuildFile; fileRef = 5C0CF35870042C7BE2A6A68B; };
D37D3F59BB7393C56E4E3050 = {isa = PBXBuildFile; fileRef = A104D06660FCADD6564CB69B; };
774DD2A4590ADA2A24262496 = {isa = PBXBuildFile; fileRef = C844AB13344EC6FA5644D0D9; };
7DB362F361486862FE54940A = {isa = PBXBuildFile; fileRef = EA9F4445A92B8C7BE0810232; };
D308BA5E5C1811AC6C44EDFC = {isa = PBXBuildFile; fileRef = 35F9C30E153C5C48AF1733AF; };
2A68004C28A81913A821CC94 = {isa = PBXBuildFile; fileRef = 9B1096EBD851547AE49BFF6F; };
5ABAF00E78591326E387AD39 = {isa = PBXBuildFile; fileRef = 783F90586A39742058A6AC29; };
7C93C578BEE56CD3CB250175 = {isa = PBXBuildFile; fileRef = 4BC20D4B7B55559D33BC50BB; };
DC8B40B76AE95FEE8EBA359B = {isa = PBXBuildFile; fileRef = 5420C63792327D6BB1C7F41B; };
F939FEDC64D0D4EADF109CDD = {isa = PBXBuildFile; fileRef = 3C97FF1A6139D8573BCE2AB1; };
C59B6412FA12941D9ED61067 = {isa = PBXBuildFile; fileRef = 6593797BAA19F37E614C4655; };
7E67B8AB4B2909C35D3E2386 = {isa = PBXBuildFile; fileRef = D4C9064D6711F109753D34AA; };
79DD7616F9022EFA04D1B2E1 = {isa = PBXBuildFile; fileRef = 74774F52EEACC628140014A3; };
74F9A01EE52DC18E74FFA34B = {isa = PBXBuildFile; fileRef = 22C4BB6C255195C3C2D25225; };
4A3655E361EC1B03EF09D54B = {isa = PBXBuildFile; fileRef = 2D1D30A1004CBF4A364F2004; };
B2A550E1C003E7B654FC1722 = {isa = PBXBuildFile; fileRef = F343A7819D9BBCDEB03F6C41; };
B3E83A7CC44632BEDDA5B73A = {isa = PBXBuildFile; fileRef = 41315DB9D8B568903AC964F3; };
5F217A44FAFD627F491E71FF = {isa = PBXBuildFile; fileRef = 5E559FE0D9248408457927A9; };
2182FE531AA58F1DFD5FCDEB = {isa = PBXBuildFile; fileRef = 211DD57331CC6CF28D163192; };
9331745E5C20E9B8A5D509A7 = {isa = PBXBuildFile; fileRef = 6EC4EEE9366753B957B90266; };
383DC09F3EC7AFB1B61C351D = {isa = PBXBuildFile; fileRef = F34969DDDB31A7713C9F291C; };
674A1FD0180D7CF171896CFC = {isa = PBXBuildFile; fileRef = 1D58E4FB4EA5970BFB26231A; };
2150D7DA563A6C19B8071C17 = {isa = PBXBuildFile; fileRef = 298D6C3C010A7BCBD5F01545; };
B69DA5734711405A4ACABFC4 = {isa = PBXBuildFile; fileRef = 63D98DD55754719379AC258C; };
8EAE660D53E40322E2B49C73 = {isa = PBXBuildFile; fileRef = DC2EF8A07D50074459B30B93; };
4296AC056D705152A8C357AE = {isa = PBXBuildFile; fileRef = F51DA2621242E34FBDC0CD06; };
6A1E551983F2A2E827D938AE = {isa = PBXBuildFile; fileRef = 121C259EED65785C4A85535B; };
4B48F2831DB6FD31A7718120 = {isa = PBXBuildFile; fileRef = D30470E2881E0181F682E9A5; };
8CCA132255089E80FAA8EA03 = {isa = PBXBuildFile; fileRef = F8812167FDFCFBFE0D05FC17; };
BA950CC38FAAE11B8E3243BA = {isa = PBXBuildFile; fileRef = 0AD53D057886F21AAE26E0A0; };
F954EA939409C662007ED285 = {isa = PBXBuildFile; fileRef = 8D9C3A26048B31C0C23E567A; };
0298170457F80FF4CB91790D = {isa = PBXBuildFile; fileRef = 6D8043D067516328D4718AEA; };
594198546E16F0C5BE6C1B65 = {isa = PBXBuildFile; fileRef = AAAF903A427FC83660569500; };
81397D4FA4BA55720A0FF9DD = {isa = PBXBuildFile; fileRef = AF7E26FB6AD2AB4C7593A3A3; };
025323EAF1009AA4A79EC846 = {isa = PBXBuildFile; fileRef = 52F9A1204810F0A03F35CEDC; };
7DF4017ED75A0B5D2B7EB4DB = {isa = PBXBuildFile; fileRef = A1DA970B67BBCF392E6C3FFF; };
CFB525DB3C003F96FD553D1C = {isa = PBXBuildFile; fileRef = BA73EB5EB98D126E725B1613; };
0D20EAAB69F578AD1EF54CB7 = {isa = PBXBuildFile; fileRef = DB7451D145A1A71F7AEA7330; };
1E29846A20A7EBE541A145AC = {isa = PBXBuildFile; fileRef = 2A2EC9703E7BE3965C9D0C76; };
FDFEF1AFCF0507CF29D6D71D = {isa = PBXBuildFile; fileRef = 6174AEB1C72D88986636FED3; };
FC0133FF090F142117AFE992 = {isa = PBXBuildFile; fileRef = A320CAB90C0D9F56F146FE33; };
0AD53D057886F21AAE26E0A0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_core.mm"; path = "../../JuceLibraryCode/include_juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
0DBBFD550BC7F957FB559CF2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = "SOURCE_ROOT"; };
121C259EED65785C4A85535B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_utils.mm"; path = "../../JuceLibraryCode/include_juce_audio_utils.mm"; sourceTree = "SOURCE_ROOT"; };
1D58E4FB4EA5970BFB26231A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_analytics.cpp"; path = "../../JuceLibraryCode/include_juce_analytics.cpp"; sourceTree = "SOURCE_ROOT"; };
204247FBC06A8EFA05CC4666 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_graphics"; path = "../../../../modules/juce_graphics"; sourceTree = "SOURCE_ROOT"; };
211DD57331CC6CF28D163192 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DemoContentComponent.cpp; path = ../../Source/UI/DemoContentComponent.cpp; sourceTree = "SOURCE_ROOT"; };
22C4BB6C255195C3C2D25225 = {isa = PBXFileReference; lastKnownFileType = file.nib; name = RecentFilesMenuTemplate.nib; path = RecentFilesMenuTemplate.nib; sourceTree = "SOURCE_ROOT"; };
298D6C3C010A7BCBD5F01545 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_basics.mm"; path = "../../JuceLibraryCode/include_juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
2A2EC9703E7BE3965C9D0C76 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_osc.cpp"; path = "../../JuceLibraryCode/include_juce_osc.cpp"; sourceTree = "SOURCE_ROOT"; };
2D1D30A1004CBF4A364F2004 = {isa = PBXFileReference; lastKnownFileType = file.icns; name = Icon.icns; path = Icon.icns; sourceTree = "SOURCE_ROOT"; };
35F9C30E153C5C48AF1733AF = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
3C97FF1A6139D8573BCE2AB1 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
3E46B16206F098D5F44BF88C = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_osc"; path = "../../../../modules/juce_osc"; sourceTree = "SOURCE_ROOT"; };
3E853853607FD4B738AEA0DA = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_events"; path = "../../../../modules/juce_events"; sourceTree = "SOURCE_ROOT"; };
41315DB9D8B568903AC964F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DemoPIPs2.cpp; path = ../../Source/Demos/DemoPIPs2.cpp; sourceTree = "SOURCE_ROOT"; };
484FD168F0024304495EFF68 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_blocks_basics"; path = "../../../../modules/juce_blocks_basics"; sourceTree = "SOURCE_ROOT"; };
4B2DC1A59CAEC821B4D3C196 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_gui_extra"; path = "../../../../modules/juce_gui_extra"; sourceTree = "SOURCE_ROOT"; };
4BC20D4B7B55559D33BC50BB = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
52DD88A0571B22A2EAB16445 = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DemoRunner.app; sourceTree = "BUILT_PRODUCTS_DIR"; };
52F9A1204810F0A03F35CEDC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_graphics.mm"; path = "../../JuceLibraryCode/include_juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
5420C63792327D6BB1C7F41B = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiscRecording.framework; path = System/Library/Frameworks/DiscRecording.framework; sourceTree = SDKROOT; };
5C0CF35870042C7BE2A6A68B = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
5DAC92D581D6D6CFF1E07B91 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_formats"; path = "../../../../modules/juce_audio_formats"; sourceTree = "SOURCE_ROOT"; };
5E559FE0D9248408457927A9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = JUCEDemos.cpp; path = ../../Source/Demos/JUCEDemos.cpp; sourceTree = "SOURCE_ROOT"; };
6174AEB1C72D88986636FED3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_product_unlocking.mm"; path = "../../JuceLibraryCode/include_juce_product_unlocking.mm"; sourceTree = "SOURCE_ROOT"; };
63D98DD55754719379AC258C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_devices.mm"; path = "../../JuceLibraryCode/include_juce_audio_devices.mm"; sourceTree = "SOURCE_ROOT"; };
6593797BAA19F37E614C4655 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
6941DAFA67B497FBEEF7A0C3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainComponent.h; path = ../../Source/UI/MainComponent.h; sourceTree = "SOURCE_ROOT"; };
6D8043D067516328D4718AEA = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_data_structures.mm"; path = "../../JuceLibraryCode/include_juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
6EC4EEE9366753B957B90266 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainComponent.cpp; path = ../../Source/UI/MainComponent.cpp; sourceTree = "SOURCE_ROOT"; };
74774F52EEACC628140014A3 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
7491A14134C1C369F4E80109 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_product_unlocking"; path = "../../../../modules/juce_product_unlocking"; sourceTree = "SOURCE_ROOT"; };
74CE55F05F43C304BD7CFE76 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_devices"; path = "../../../../modules/juce_audio_devices"; sourceTree = "SOURCE_ROOT"; };
783F90586A39742058A6AC29 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
810FAB85AAB9E725DE47ECC2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SettingsContent.h; path = ../../Source/UI/SettingsContent.h; sourceTree = "SOURCE_ROOT"; };
8D9C3A26048B31C0C23E567A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_cryptography.mm"; path = "../../JuceLibraryCode/include_juce_cryptography.mm"; sourceTree = "SOURCE_ROOT"; };
8FE62EF873A01A2E376BD645 = {isa = PBXFileReference; lastKnownFileType = image.png; name = JUCEAppIcon.png; path = ../../Source/JUCEAppIcon.png; sourceTree = "SOURCE_ROOT"; };
9565389CAD64FB2A5D454DC6 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_processors"; path = "../../../../modules/juce_audio_processors"; sourceTree = "SOURCE_ROOT"; };
9986F409F240C0729B7CCF07 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_video"; path = "../../../../modules/juce_video"; sourceTree = "SOURCE_ROOT"; };
9A4E6F77C3CA15BA9D532DC6 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_basics"; path = "../../../../modules/juce_audio_basics"; sourceTree = "SOURCE_ROOT"; };
9AEA8477D8A19314EB08762F = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_analytics"; path = "../../../../modules/juce_analytics"; sourceTree = "SOURCE_ROOT"; };
9B1096EBD851547AE49BFF6F = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
9C12C7893B76C4349D15A830 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_cryptography"; path = "../../../../modules/juce_cryptography"; sourceTree = "SOURCE_ROOT"; };
A104D06660FCADD6564CB69B = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
A19B5449B5A42CDC3E0ACCDD = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_gui_basics"; path = "../../../../modules/juce_gui_basics"; sourceTree = "SOURCE_ROOT"; };
A1DA970B67BBCF392E6C3FFF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_gui_basics.mm"; path = "../../JuceLibraryCode/include_juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
A320CAB90C0D9F56F146FE33 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_video.mm"; path = "../../JuceLibraryCode/include_juce_video.mm"; sourceTree = "SOURCE_ROOT"; };
AAAF903A427FC83660569500 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_dsp.mm"; path = "../../JuceLibraryCode/include_juce_dsp.mm"; sourceTree = "SOURCE_ROOT"; };
AF7E26FB6AD2AB4C7593A3A3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_events.mm"; path = "../../JuceLibraryCode/include_juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
B00744743E4A63538519579B = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_dsp"; path = "../../../../modules/juce_dsp"; sourceTree = "SOURCE_ROOT"; };
BA73EB5EB98D126E725B1613 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_gui_extra.mm"; path = "../../JuceLibraryCode/include_juce_gui_extra.mm"; sourceTree = "SOURCE_ROOT"; };
BB8199F77CA512412BFDCEDC = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
C844AB13344EC6FA5644D0D9 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVKit.framework; path = System/Library/Frameworks/AVKit.framework; sourceTree = SDKROOT; };
CF09557E4C6B3C7E1A48BB22 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_utils"; path = "../../../../modules/juce_audio_utils"; sourceTree = "SOURCE_ROOT"; };
CFC68DD1F149B09C1D6C6443 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IntroScreen.h; path = ../../Source/Demos/IntroScreen.h; sourceTree = "SOURCE_ROOT"; };
D30470E2881E0181F682E9A5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_blocks_basics.cpp"; path = "../../JuceLibraryCode/include_juce_blocks_basics.cpp"; sourceTree = "SOURCE_ROOT"; };
D4C9064D6711F109753D34AA = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
D6014664C491D54229A32A09 = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "Info-App.plist"; path = "Info-App.plist"; sourceTree = "SOURCE_ROOT"; };
D86C6503261D59DC20A38FF3 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_opengl"; path = "../../../../modules/juce_opengl"; sourceTree = "SOURCE_ROOT"; };
DB7451D145A1A71F7AEA7330 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_opengl.mm"; path = "../../JuceLibraryCode/include_juce_opengl.mm"; sourceTree = "SOURCE_ROOT"; };
DC2EF8A07D50074459B30B93 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_formats.mm"; path = "../../JuceLibraryCode/include_juce_audio_formats.mm"; sourceTree = "SOURCE_ROOT"; };
DF1A27EF702BF58D597C94E9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JUCEDemos.h; path = ../../Source/Demos/JUCEDemos.h; sourceTree = "SOURCE_ROOT"; };
E081B2AAF4D711C406E6F0FD = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_core"; path = "../../../../modules/juce_core"; sourceTree = "SOURCE_ROOT"; };
EA2829D1177D20590806BA8B = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_box2d"; path = "../../../../modules/juce_box2d"; sourceTree = "SOURCE_ROOT"; };
EA9F4445A92B8C7BE0810232 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
F343A7819D9BBCDEB03F6C41 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DemoPIPs1.cpp; path = ../../Source/Demos/DemoPIPs1.cpp; sourceTree = "SOURCE_ROOT"; };
F34969DDDB31A7713C9F291C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = "SOURCE_ROOT"; };
F358612A22315D629DA2D366 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_data_structures"; path = "../../../../modules/juce_data_structures"; sourceTree = "SOURCE_ROOT"; };
F51DA2621242E34FBDC0CD06 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_processors.mm"; path = "../../JuceLibraryCode/include_juce_audio_processors.mm"; sourceTree = "SOURCE_ROOT"; };
F8812167FDFCFBFE0D05FC17 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_box2d.cpp"; path = "../../JuceLibraryCode/include_juce_box2d.cpp"; sourceTree = "SOURCE_ROOT"; };
FD9BD7FF8B972A3C574B55B5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = DemoContentComponent.h; path = ../../Source/UI/DemoContentComponent.h; sourceTree = "SOURCE_ROOT"; };
FEAB6375C022FB28EA046544 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = "SOURCE_ROOT"; };
BCA43D68C5F209DD05309228 = {isa = PBXGroup; children = (
F343A7819D9BBCDEB03F6C41,
41315DB9D8B568903AC964F3,
CFC68DD1F149B09C1D6C6443,
5E559FE0D9248408457927A9,
DF1A27EF702BF58D597C94E9, ); name = Demos; sourceTree = "<group>"; };
79E3D9AB56303997BB4318A1 = {isa = PBXGroup; children = (
211DD57331CC6CF28D163192,
FD9BD7FF8B972A3C574B55B5,
6EC4EEE9366753B957B90266,
6941DAFA67B497FBEEF7A0C3,
810FAB85AAB9E725DE47ECC2, ); name = UI; sourceTree = "<group>"; };
6F4DABC7EE606C8FC2DAE56F = {isa = PBXGroup; children = (
BCA43D68C5F209DD05309228,
79E3D9AB56303997BB4318A1,
F34969DDDB31A7713C9F291C,
8FE62EF873A01A2E376BD645, ); name = Source; sourceTree = "<group>"; };
DA956DD927033492135DF1EA = {isa = PBXGroup; children = (
6F4DABC7EE606C8FC2DAE56F, ); name = DemoRunner; sourceTree = "<group>"; };
B84A2F79721C12113779D8D9 = {isa = PBXGroup; children = (
9AEA8477D8A19314EB08762F,
9A4E6F77C3CA15BA9D532DC6,
74CE55F05F43C304BD7CFE76,
5DAC92D581D6D6CFF1E07B91,
9565389CAD64FB2A5D454DC6,
CF09557E4C6B3C7E1A48BB22,
484FD168F0024304495EFF68,
EA2829D1177D20590806BA8B,
E081B2AAF4D711C406E6F0FD,
9C12C7893B76C4349D15A830,
F358612A22315D629DA2D366,
B00744743E4A63538519579B,
3E853853607FD4B738AEA0DA,
204247FBC06A8EFA05CC4666,
A19B5449B5A42CDC3E0ACCDD,
4B2DC1A59CAEC821B4D3C196,
D86C6503261D59DC20A38FF3,
3E46B16206F098D5F44BF88C,
7491A14134C1C369F4E80109,
9986F409F240C0729B7CCF07, ); name = "JUCE Modules"; sourceTree = "<group>"; };
8E1B39E03898EF9E2AE47C26 = {isa = PBXGroup; children = (
FEAB6375C022FB28EA046544,
1D58E4FB4EA5970BFB26231A,
298D6C3C010A7BCBD5F01545,
63D98DD55754719379AC258C,
DC2EF8A07D50074459B30B93,
F51DA2621242E34FBDC0CD06,
121C259EED65785C4A85535B,
D30470E2881E0181F682E9A5,
F8812167FDFCFBFE0D05FC17,
0AD53D057886F21AAE26E0A0,
8D9C3A26048B31C0C23E567A,
6D8043D067516328D4718AEA,
AAAF903A427FC83660569500,
AF7E26FB6AD2AB4C7593A3A3,
52F9A1204810F0A03F35CEDC,
A1DA970B67BBCF392E6C3FFF,
BA73EB5EB98D126E725B1613,
DB7451D145A1A71F7AEA7330,
2A2EC9703E7BE3965C9D0C76,
6174AEB1C72D88986636FED3,
A320CAB90C0D9F56F146FE33,
0DBBFD550BC7F957FB559CF2, ); name = "JUCE Library Code"; sourceTree = "<group>"; };
22CEA2C099CBC5F9A49496E8 = {isa = PBXGroup; children = (
D6014664C491D54229A32A09,
22C4BB6C255195C3C2D25225,
2D1D30A1004CBF4A364F2004, ); name = Resources; sourceTree = "<group>"; };
02954A9CC7FFFF6C74A9BD29 = {isa = PBXGroup; children = (
BB8199F77CA512412BFDCEDC,
5C0CF35870042C7BE2A6A68B,
A104D06660FCADD6564CB69B,
C844AB13344EC6FA5644D0D9,
EA9F4445A92B8C7BE0810232,
35F9C30E153C5C48AF1733AF,
9B1096EBD851547AE49BFF6F,
783F90586A39742058A6AC29,
4BC20D4B7B55559D33BC50BB,
5420C63792327D6BB1C7F41B,
3C97FF1A6139D8573BCE2AB1,
6593797BAA19F37E614C4655,
D4C9064D6711F109753D34AA,
74774F52EEACC628140014A3, ); name = Frameworks; sourceTree = "<group>"; };
7E5FD96ECD7E7C168E1BA960 = {isa = PBXGroup; children = (
52DD88A0571B22A2EAB16445, ); name = Products; sourceTree = "<group>"; };
92CC79F0DFEF150612CEED4A = {isa = PBXGroup; children = (
DA956DD927033492135DF1EA,
B84A2F79721C12113779D8D9,
8E1B39E03898EF9E2AE47C26,
22CEA2C099CBC5F9A49496E8,
02954A9CC7FFFF6C74A9BD29,
7E5FD96ECD7E7C168E1BA960, ); name = Source; sourceTree = "<group>"; };
FB4F3C00DE2E01C90770D32D = {isa = XCBuildConfiguration; buildSettings = {
CLANG_CXX_LANGUAGE_STANDARD = "c++14";
CLANG_LINK_OBJC_RUNTIME = NO;
COMBINE_HIDPI_IMAGES = YES;
@@ -246,7 +246,7 @@
PRODUCT_BUNDLE_IDENTIFIER = com.roli.juce.demorunner;
SDKROOT_ppc = macosx10.5;
USE_HEADERMAP = NO; }; name = Debug; };
A2F568D2305D0AE37A4B9B8E = {isa = XCBuildConfiguration; buildSettings = {
B784DEEF4650EDA00FBB583D = {isa = XCBuildConfiguration; buildSettings = {
CLANG_CXX_LANGUAGE_STANDARD = "c++14";
CLANG_LINK_OBJC_RUNTIME = NO;
COMBINE_HIDPI_IMAGES = YES;
@@ -282,7 +282,7 @@
PRODUCT_BUNDLE_IDENTIFIER = com.roli.juce.demorunner;
SDKROOT_ppc = macosx10.5;
USE_HEADERMAP = NO; }; name = Release; };
29860132E5245D03F8BF0BC4 = {isa = XCBuildConfiguration; buildSettings = {
0AEFDA9D08CBB2EC6CE38FD0 = {isa = XCBuildConfiguration; buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
@@ -320,7 +320,7 @@
PRODUCT_NAME = "DemoRunner";
WARNING_CFLAGS = -Wreorder;
ZERO_LINK = NO; }; name = Debug; };
468BBF873C1B07B1B3296EAA = {isa = XCBuildConfiguration; buildSettings = {
0CCFB47BC23BAB1126EFEB9D = {isa = XCBuildConfiguration; buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
@@ -356,63 +356,63 @@
PRODUCT_NAME = "DemoRunner";
WARNING_CFLAGS = -Wreorder;
ZERO_LINK = NO; }; name = Release; };
10BB8EE3673A90F9F2D2F035 = {isa = PBXTargetDependency; target = 81A8C6E72044569D61BEE0ED; };
AB27A220DAD7362BB34239E5 = {isa = XCConfigurationList; buildConfigurations = (
29860132E5245D03F8BF0BC4,
468BBF873C1B07B1B3296EAA, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
924B0C2D71B0B30A64E8E5D1 = {isa = XCConfigurationList; buildConfigurations = (
DAD00A3C4CFDBAA7DBE203BC,
A2F568D2305D0AE37A4B9B8E, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
8D37B56F0EF41F9285A22D72 = {isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = (
1985F3EFD2ACBF3DEC07EEEB,
4C7AD8D88472B26449C4CF63, ); runOnlyForDeploymentPostprocessing = 0; };
89295DB538192845CB054D91 = {isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = (
2A3DC87FFD79EAE6BFA94622,
BD04F47A8820F3C1020BBBCB,
20B3995FB3715E6ED47B76F1,
D95C28AED57175F32AA87EFA,
4AEDB85AEFDA4CB199CB3D5F,
604E46FE23C850D75D07D08B,
6E8B3995F69016C86D869C29,
F3CEC3F0AC9F3447817D782D,
6AFF5F67E3B6392E41E3606F,
9AE05CC0F9FF63FF0E51B28F,
EF3D92F535606C53B1240C2F,
872B4E257083F2B28696BA5C,
7FB0A6A8EBDFC2C9BF2B4407,
5235D05C85F2D645F9993677,
698B4D0BB29EA820DD4C1202,
E9032722067CC37D915FCF76,
77327439358C4FED6F1818B5,
DBE748AC5DA12DE3A8D16BBD,
24D22C16FC23E24654A82A65,
CC1431712E73E25191E693D5,
76233E3A9E20841862403C46,
12972133C0EF4AFA095643D2,
85FB78873995DA4E86D1BD35,
A5271659E0DEACA9158A2316,
7FFE403B9AAD39F7F14CE2AC,
BB0BB0C53C5A130F8F2FFFCB, ); runOnlyForDeploymentPostprocessing = 0; };
86F549D5E74CB50126072AD2 = {isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
3DE670A035B1815A22D83557,
7433A7AA49D69A058F59DE2A,
35AD3766DD48594FD02ECB97,
6DEE05786F8FB0012977BA15,
F6E47370C9D39FD1A3A72805,
2D13EAB2602C3C8A65F2097F,
BCDB3345B6ED2457B7423309,
7F6333DA7C84D86E3F354A45,
7E1228B51FFBB3D9BE8B9390,
268440CEB7722C1D55E7727C,
352AF78063DC95EBD4564DF7,
23CB425319BF975B9C963D4D,
7922BD029CE0E987D1E33710,
872D5C0CBC0B5B59481B2961, ); runOnlyForDeploymentPostprocessing = 0; };
81A8C6E72044569D61BEE0ED = {isa = PBXNativeTarget; buildConfigurationList = 924B0C2D71B0B30A64E8E5D1; buildPhases = (
8D37B56F0EF41F9285A22D72,
89295DB538192845CB054D91,
86F549D5E74CB50126072AD2, ); buildRules = ( ); dependencies = ( ); name = "DemoRunner - App"; productName = DemoRunner; productReference = 5CB8CE1A1C9A67298F80FC04; productType = "com.apple.product-type.application"; };
007108FE3338B46423ED7C16 = {isa = PBXProject; buildConfigurationList = AB27A220DAD7362BB34239E5; attributes = { LastUpgradeCheck = 0830; ORGANIZATIONNAME = "ROLI Ltd."; TargetAttributes = { 81A8C6E72044569D61BEE0ED = { SystemCapabilities = {com.apple.ApplicationGroups.iOS = { enabled = 0; }; com.apple.InAppPurchase = { enabled = 0; }; com.apple.InterAppAudio = { enabled = 0; }; com.apple.Push = { enabled = 0; }; com.apple.Sandbox = { enabled = 0; }; }; }; }; }; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 0; mainGroup = BDBE5F3993573C2D57291C50; projectDirPath = ""; projectRoot = ""; targets = (81A8C6E72044569D61BEE0ED); };
2EA7924D2BD202CCDDA930AC = {isa = PBXTargetDependency; target = 44F7378A51DD1A22F4522C62; };
EE3C3034F1C9D7B264621739 = {isa = XCConfigurationList; buildConfigurations = (
0AEFDA9D08CBB2EC6CE38FD0,
0CCFB47BC23BAB1126EFEB9D, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
4BE0EF014EC6AF58A44E1695 = {isa = XCConfigurationList; buildConfigurations = (
FB4F3C00DE2E01C90770D32D,
B784DEEF4650EDA00FBB583D, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
BC2E8632684B5D2727E919D7 = {isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = (
74F9A01EE52DC18E74FFA34B,
4A3655E361EC1B03EF09D54B, ); runOnlyForDeploymentPostprocessing = 0; };
60E2E874438F3E7C942D7400 = {isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = (
B2A550E1C003E7B654FC1722,
B3E83A7CC44632BEDDA5B73A,
5F217A44FAFD627F491E71FF,
2182FE531AA58F1DFD5FCDEB,
9331745E5C20E9B8A5D509A7,
383DC09F3EC7AFB1B61C351D,
674A1FD0180D7CF171896CFC,
2150D7DA563A6C19B8071C17,
B69DA5734711405A4ACABFC4,
8EAE660D53E40322E2B49C73,
4296AC056D705152A8C357AE,
6A1E551983F2A2E827D938AE,
4B48F2831DB6FD31A7718120,
8CCA132255089E80FAA8EA03,
BA950CC38FAAE11B8E3243BA,
F954EA939409C662007ED285,
0298170457F80FF4CB91790D,
594198546E16F0C5BE6C1B65,
81397D4FA4BA55720A0FF9DD,
025323EAF1009AA4A79EC846,
7DF4017ED75A0B5D2B7EB4DB,
CFB525DB3C003F96FD553D1C,
0D20EAAB69F578AD1EF54CB7,
1E29846A20A7EBE541A145AC,
FDFEF1AFCF0507CF29D6D71D,
FC0133FF090F142117AFE992, ); runOnlyForDeploymentPostprocessing = 0; };
276AFEDCB6F102E9E00AC6F9 = {isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
235DB857C0318115A36E1FD8,
4EA2E1D2BEFD70EF4239A160,
D37D3F59BB7393C56E4E3050,
774DD2A4590ADA2A24262496,
7DB362F361486862FE54940A,
D308BA5E5C1811AC6C44EDFC,
2A68004C28A81913A821CC94,
5ABAF00E78591326E387AD39,
7C93C578BEE56CD3CB250175,
DC8B40B76AE95FEE8EBA359B,
F939FEDC64D0D4EADF109CDD,
C59B6412FA12941D9ED61067,
7E67B8AB4B2909C35D3E2386,
79DD7616F9022EFA04D1B2E1, ); runOnlyForDeploymentPostprocessing = 0; };
44F7378A51DD1A22F4522C62 = {isa = PBXNativeTarget; buildConfigurationList = 4BE0EF014EC6AF58A44E1695; buildPhases = (
BC2E8632684B5D2727E919D7,
60E2E874438F3E7C942D7400,
276AFEDCB6F102E9E00AC6F9, ); buildRules = ( ); dependencies = ( ); name = "DemoRunner - App"; productName = DemoRunner; productReference = 52DD88A0571B22A2EAB16445; productType = "com.apple.product-type.application"; };
5F344E186591BFB7264CA37E = {isa = PBXProject; buildConfigurationList = EE3C3034F1C9D7B264621739; attributes = { LastUpgradeCheck = 0830; ORGANIZATIONNAME = "ROLI Ltd."; TargetAttributes = { 44F7378A51DD1A22F4522C62 = { SystemCapabilities = {com.apple.ApplicationGroups.iOS = { enabled = 0; }; com.apple.InAppPurchase = { enabled = 0; }; com.apple.InterAppAudio = { enabled = 0; }; com.apple.Push = { enabled = 0; }; com.apple.Sandbox = { enabled = 0; }; }; }; }; }; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 0; mainGroup = 92CC79F0DFEF150612CEED4A; projectDirPath = ""; projectRoot = ""; targets = (44F7378A51DD1A22F4522C62); };
};
rootObject = 007108FE3338B46423ED7C16;
rootObject = 5F344E186591BFB7264CA37E;
}

+ 5
- 5
examples/DemoRunner/Builds/VisualStudio2013/DemoRunner.sln View File

@@ -1,7 +1,7 @@
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2013
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DemoRunner - App", "DemoRunner_App.vcxproj", "{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DemoRunner - App", "DemoRunner_App.vcxproj", "{5F1D30E7-57F7-3C57-D5E7-8C053454B441}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -9,10 +9,10 @@ Global
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}.Debug|x64.ActiveCfg = Debug|x64
{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}.Debug|x64.Build.0 = Debug|x64
{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}.Release|x64.ActiveCfg = Release|x64
{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}.Release|x64.Build.0 = Release|x64
{5F1D30E7-57F7-3C57-D5E7-8C053454B441}.Debug|x64.ActiveCfg = Debug|x64
{5F1D30E7-57F7-3C57-D5E7-8C053454B441}.Debug|x64.Build.0 = Debug|x64
{5F1D30E7-57F7-3C57-D5E7-8C053454B441}.Release|x64.ActiveCfg = Release|x64
{5F1D30E7-57F7-3C57-D5E7-8C053454B441}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE


+ 1
- 1
examples/DemoRunner/Builds/VisualStudio2013/DemoRunner_App.vcxproj View File

@@ -14,7 +14,7 @@
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}</ProjectGuid>
<ProjectGuid>{5F1D30E7-57F7-3C57-D5E7-8C053454B441}</ProjectGuid>
<PlatformToolset>v120</PlatformToolset>
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
</PropertyGroup>


+ 5
- 5
examples/DemoRunner/Builds/VisualStudio2015/DemoRunner.sln View File

@@ -1,7 +1,7 @@
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2015
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DemoRunner - App", "DemoRunner_App.vcxproj", "{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DemoRunner - App", "DemoRunner_App.vcxproj", "{5F1D30E7-57F7-3C57-D5E7-8C053454B441}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -9,10 +9,10 @@ Global
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}.Debug|x64.ActiveCfg = Debug|x64
{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}.Debug|x64.Build.0 = Debug|x64
{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}.Release|x64.ActiveCfg = Release|x64
{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}.Release|x64.Build.0 = Release|x64
{5F1D30E7-57F7-3C57-D5E7-8C053454B441}.Debug|x64.ActiveCfg = Debug|x64
{5F1D30E7-57F7-3C57-D5E7-8C053454B441}.Debug|x64.Build.0 = Debug|x64
{5F1D30E7-57F7-3C57-D5E7-8C053454B441}.Release|x64.ActiveCfg = Release|x64
{5F1D30E7-57F7-3C57-D5E7-8C053454B441}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE


+ 1
- 1
examples/DemoRunner/Builds/VisualStudio2015/DemoRunner_App.vcxproj View File

@@ -14,7 +14,7 @@
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}</ProjectGuid>
<ProjectGuid>{5F1D30E7-57F7-3C57-D5E7-8C053454B441}</ProjectGuid>
<PlatformToolset>v140</PlatformToolset>
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
</PropertyGroup>


+ 5
- 5
examples/DemoRunner/Builds/VisualStudio2017/DemoRunner.sln View File

@@ -1,7 +1,7 @@
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2017
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DemoRunner - App", "DemoRunner_App.vcxproj", "{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DemoRunner - App", "DemoRunner_App.vcxproj", "{5F1D30E7-57F7-3C57-D5E7-8C053454B441}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -9,10 +9,10 @@ Global
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}.Debug|x64.ActiveCfg = Debug|x64
{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}.Debug|x64.Build.0 = Debug|x64
{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}.Release|x64.ActiveCfg = Release|x64
{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}.Release|x64.Build.0 = Release|x64
{5F1D30E7-57F7-3C57-D5E7-8C053454B441}.Debug|x64.ActiveCfg = Debug|x64
{5F1D30E7-57F7-3C57-D5E7-8C053454B441}.Debug|x64.Build.0 = Debug|x64
{5F1D30E7-57F7-3C57-D5E7-8C053454B441}.Release|x64.ActiveCfg = Release|x64
{5F1D30E7-57F7-3C57-D5E7-8C053454B441}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE


+ 1
- 1
examples/DemoRunner/Builds/VisualStudio2017/DemoRunner_App.vcxproj View File

@@ -14,7 +14,7 @@
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{3EFE3782-F57A-A7C5-1014-34F3EAE599E4}</ProjectGuid>
<ProjectGuid>{5F1D30E7-57F7-3C57-D5E7-8C053454B441}</ProjectGuid>
<PlatformToolset>v141</PlatformToolset>
<WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
</PropertyGroup>


+ 282
- 282
examples/DemoRunner/Builds/iOS/DemoRunner.xcodeproj/project.pbxproj View File

@@ -6,224 +6,224 @@
objectVersion = 46;
objects = {

A266A9AEE20E948B1B729AB1 = {isa = PBXBuildFile; fileRef = 5CB8CE1A1C9A67298F80FC04; };
3DE670A035B1815A22D83557 = {isa = PBXBuildFile; fileRef = 6835BDC8CD881018B80F9BF9; };
7433A7AA49D69A058F59DE2A = {isa = PBXBuildFile; fileRef = 2D1EE4D99A4B85CB3108F8A0; };
35AD3766DD48594FD02ECB97 = {isa = PBXBuildFile; fileRef = 1FD7405FF78E20016EABB63E; };
6DEE05786F8FB0012977BA15 = {isa = PBXBuildFile; fileRef = ADE7347A208511B04EC8A5C2; };
BCDB3345B6ED2457B7423309 = {isa = PBXBuildFile; fileRef = 622F457A3ADC194B7AE7B6D5; };
B0091619B95037A7F71CB0B9 = {isa = PBXBuildFile; fileRef = F4B9842D3B8C8B47B489B417; };
E0AAD8D37E85580769FFAC95 = {isa = PBXBuildFile; fileRef = 561493440EB204E2950570FB; };
8C1FBA1AC4A84FD4288069AD = {isa = PBXBuildFile; fileRef = A1A8D9A0C3A66688A668779C; };
7F6333DA7C84D86E3F354A45 = {isa = PBXBuildFile; fileRef = 0BF6AC7C3E9C2C4ADB63397F; };
7E1228B51FFBB3D9BE8B9390 = {isa = PBXBuildFile; fileRef = 6BC2B25532F0E7A50D0950E0; };
716D34C429995B9507CB5BBC = {isa = PBXBuildFile; fileRef = 20CF85CAF4DE80895A74E56B; };
7F8A941D3D02E42533790876 = {isa = PBXBuildFile; fileRef = 62F17E98F30018FE20B05EA0; };
05FDBE142AF4AFB04D83FC6B = {isa = PBXBuildFile; fileRef = D710C01D3B34887F8EF7B6EF; };
48B532979682A1093CC7A3C7 = {isa = PBXBuildFile; fileRef = FE11289C51709A4DAC4FC381; };
7922BD029CE0E987D1E33710 = {isa = PBXBuildFile; fileRef = E797D62E22B740939E60F37C; };
8C56C01FF861F8C2A0D21BF0 = {isa = PBXBuildFile; fileRef = 1AF9DF0FD7117E8A7B5D2704; };
F8B7B392293D5FCC1E8EEC01 = {isa = PBXBuildFile; fileRef = F393708EED4A0B29D35CE8B2; };
1B1C997A3CE0E8AB727A1435 = {isa = PBXBuildFile; fileRef = 5245120BCAC16C96645799FB; };
4C7AD8D88472B26449C4CF63 = {isa = PBXBuildFile; fileRef = A91213924D6106A524DDED04; };
2A3DC87FFD79EAE6BFA94622 = {isa = PBXBuildFile; fileRef = 8691567B1218B7A9EFE5F6C7; };
BD04F47A8820F3C1020BBBCB = {isa = PBXBuildFile; fileRef = 59B0D7D99BF3FDFB63FDAA21; };
20B3995FB3715E6ED47B76F1 = {isa = PBXBuildFile; fileRef = 188A412FD9FB8C262DB1B444; };
D95C28AED57175F32AA87EFA = {isa = PBXBuildFile; fileRef = D2A37539D32DF3DC3E992A33; };
4AEDB85AEFDA4CB199CB3D5F = {isa = PBXBuildFile; fileRef = E516E7CE15094FFB686C8643; };
604E46FE23C850D75D07D08B = {isa = PBXBuildFile; fileRef = 781637A1252E41252BEA8C7A; };
6E8B3995F69016C86D869C29 = {isa = PBXBuildFile; fileRef = 3F812A57EB3193F93597F5A8; };
F3CEC3F0AC9F3447817D782D = {isa = PBXBuildFile; fileRef = 2C3FB13D8116CFB722F669C4; };
6AFF5F67E3B6392E41E3606F = {isa = PBXBuildFile; fileRef = A9BC810DF7833B6D3C313637; };
9AE05CC0F9FF63FF0E51B28F = {isa = PBXBuildFile; fileRef = 48B5EFBCC352B1E56CC8EA77; };
EF3D92F535606C53B1240C2F = {isa = PBXBuildFile; fileRef = 18CAC970F893E24D1B3183D7; };
872B4E257083F2B28696BA5C = {isa = PBXBuildFile; fileRef = D88B5641B51118EE150CF147; };
7FB0A6A8EBDFC2C9BF2B4407 = {isa = PBXBuildFile; fileRef = 4B33E4D3B0A5A5EEF1EEDC0C; };
5235D05C85F2D645F9993677 = {isa = PBXBuildFile; fileRef = A586573C8C0B7578EA62D38B; };
698B4D0BB29EA820DD4C1202 = {isa = PBXBuildFile; fileRef = C94CC76F1D4D709FD552A1D4; };
E9032722067CC37D915FCF76 = {isa = PBXBuildFile; fileRef = 9B555A796D4240CC3D24AD9E; };
77327439358C4FED6F1818B5 = {isa = PBXBuildFile; fileRef = DDA9C2C25E953F94889C5E6B; };
DBE748AC5DA12DE3A8D16BBD = {isa = PBXBuildFile; fileRef = EED6F3D4A63A3ABFB9B3A6DB; };
24D22C16FC23E24654A82A65 = {isa = PBXBuildFile; fileRef = DC8F2762B31C384F881CF47E; };
CC1431712E73E25191E693D5 = {isa = PBXBuildFile; fileRef = BB9C201B975D7CCCDEAB0BB9; };
76233E3A9E20841862403C46 = {isa = PBXBuildFile; fileRef = F37F38C06CE8F2A6437C0D22; };
12972133C0EF4AFA095643D2 = {isa = PBXBuildFile; fileRef = 85228A3DF090D1AE2190FFCC; };
85FB78873995DA4E86D1BD35 = {isa = PBXBuildFile; fileRef = 021817818723EC1D3B162B41; };
A5271659E0DEACA9158A2316 = {isa = PBXBuildFile; fileRef = A967B9F6AB128BDF89E29864; };
7FFE403B9AAD39F7F14CE2AC = {isa = PBXBuildFile; fileRef = 3912433EEB5FA820AE1FDDF7; };
BB0BB0C53C5A130F8F2FFFCB = {isa = PBXBuildFile; fileRef = DA7A61D9CE7D7CEA925FEBA6; };
021817818723EC1D3B162B41 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_opengl.mm"; path = "../../JuceLibraryCode/include_juce_opengl.mm"; sourceTree = "SOURCE_ROOT"; };
05341E4A228EAF40564BB4C9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = "SOURCE_ROOT"; };
0BF6AC7C3E9C2C4ADB63397F = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
0C0321717BB631605CC77711 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_graphics"; path = "../../../../modules/juce_graphics"; sourceTree = "SOURCE_ROOT"; };
188A412FD9FB8C262DB1B444 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = JUCEDemos.cpp; path = ../../Source/Demos/JUCEDemos.cpp; sourceTree = "SOURCE_ROOT"; };
18CAC970F893E24D1B3183D7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_processors.mm"; path = "../../JuceLibraryCode/include_juce_audio_processors.mm"; sourceTree = "SOURCE_ROOT"; };
1AF9DF0FD7117E8A7B5D2704 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
1D33F6301F948D4F97601306 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_cryptography"; path = "../../../../modules/juce_cryptography"; sourceTree = "SOURCE_ROOT"; };
1F7A8FBF84EE7B0603BE1816 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_product_unlocking"; path = "../../../../modules/juce_product_unlocking"; sourceTree = "SOURCE_ROOT"; };
1FD7405FF78E20016EABB63E = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
20CF85CAF4DE80895A74E56B = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
29AB67D1988BBE77DDBD7C70 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_video"; path = "../../../../modules/juce_video"; sourceTree = "SOURCE_ROOT"; };
2C3FB13D8116CFB722F669C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_basics.mm"; path = "../../JuceLibraryCode/include_juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
2D1EE4D99A4B85CB3108F8A0 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
384212A5859CDFC803FB14D6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainComponent.h; path = ../../Source/UI/MainComponent.h; sourceTree = "SOURCE_ROOT"; };
3912433EEB5FA820AE1FDDF7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_product_unlocking.mm"; path = "../../JuceLibraryCode/include_juce_product_unlocking.mm"; sourceTree = "SOURCE_ROOT"; };
3D28684BC99063A7E66316B8 = {isa = PBXFileReference; lastKnownFileType = image.png; name = JUCEAppIcon.png; path = ../../Source/JUCEAppIcon.png; sourceTree = "SOURCE_ROOT"; };
3F812A57EB3193F93597F5A8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_analytics.cpp"; path = "../../JuceLibraryCode/include_juce_analytics.cpp"; sourceTree = "SOURCE_ROOT"; };
48B5EFBCC352B1E56CC8EA77 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_formats.mm"; path = "../../JuceLibraryCode/include_juce_audio_formats.mm"; sourceTree = "SOURCE_ROOT"; };
4B33E4D3B0A5A5EEF1EEDC0C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_blocks_basics.cpp"; path = "../../JuceLibraryCode/include_juce_blocks_basics.cpp"; sourceTree = "SOURCE_ROOT"; };
4BA5697853D5B9CA909E768E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IntroScreen.h; path = ../../Source/Demos/IntroScreen.h; sourceTree = "SOURCE_ROOT"; };
5245120BCAC16C96645799FB = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = DemoRunner/Images.xcassets; sourceTree = "SOURCE_ROOT"; };
561493440EB204E2950570FB = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
59B0D7D99BF3FDFB63FDAA21 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DemoPIPs2.cpp; path = ../../Source/Demos/DemoPIPs2.cpp; sourceTree = "SOURCE_ROOT"; };
5CB8CE1A1C9A67298F80FC04 = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DemoRunner.app; sourceTree = "BUILT_PRODUCTS_DIR"; };
620DC92F472D32235843D916 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_data_structures"; path = "../../../../modules/juce_data_structures"; sourceTree = "SOURCE_ROOT"; };
622F457A3ADC194B7AE7B6D5 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
62F17E98F30018FE20B05EA0 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
676A5FFC15765D73779FE43D = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_dsp"; path = "../../../../modules/juce_dsp"; sourceTree = "SOURCE_ROOT"; };
6835BDC8CD881018B80F9BF9 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
68EBDC98E9EE2665F60F0B88 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SettingsContent.h; path = ../../Source/UI/SettingsContent.h; sourceTree = "SOURCE_ROOT"; };
6BC2B25532F0E7A50D0950E0 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
6DD92F919D764DDD7AAFC518 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_processors"; path = "../../../../modules/juce_audio_processors"; sourceTree = "SOURCE_ROOT"; };
6E9E2ACFA0F89810D6888B8B = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_blocks_basics"; path = "../../../../modules/juce_blocks_basics"; sourceTree = "SOURCE_ROOT"; };
7170D7A8EB78C005FB4CCD41 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_core"; path = "../../../../modules/juce_core"; sourceTree = "SOURCE_ROOT"; };
781637A1252E41252BEA8C7A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = "SOURCE_ROOT"; };
81227E353AB0F6DFEB740346 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_osc"; path = "../../../../modules/juce_osc"; sourceTree = "SOURCE_ROOT"; };
85106095564D7799E47D8D85 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_devices"; path = "../../../../modules/juce_audio_devices"; sourceTree = "SOURCE_ROOT"; };
85228A3DF090D1AE2190FFCC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_gui_extra.mm"; path = "../../JuceLibraryCode/include_juce_gui_extra.mm"; sourceTree = "SOURCE_ROOT"; };
8570E0A99252209A13D6D4D9 = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "Info-App.plist"; path = "Info-App.plist"; sourceTree = "SOURCE_ROOT"; };
8691567B1218B7A9EFE5F6C7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DemoPIPs1.cpp; path = ../../Source/Demos/DemoPIPs1.cpp; sourceTree = "SOURCE_ROOT"; };
893E1E27D370304B9EACC661 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_formats"; path = "../../../../modules/juce_audio_formats"; sourceTree = "SOURCE_ROOT"; };
9178F78EECDBCB3F664152F4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = "SOURCE_ROOT"; };
9B555A796D4240CC3D24AD9E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_cryptography.mm"; path = "../../JuceLibraryCode/include_juce_cryptography.mm"; sourceTree = "SOURCE_ROOT"; };
9CD69846F1B1C8950DB6E835 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = DemoContentComponent.h; path = ../../Source/UI/DemoContentComponent.h; sourceTree = "SOURCE_ROOT"; };
9F8CA6716C6582F1EA6A56FE = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_events"; path = "../../../../modules/juce_events"; sourceTree = "SOURCE_ROOT"; };
A1A8D9A0C3A66688A668779C = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; };
A494543F1EC3C22C202B6489 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_gui_extra"; path = "../../../../modules/juce_gui_extra"; sourceTree = "SOURCE_ROOT"; };
A586573C8C0B7578EA62D38B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_box2d.cpp"; path = "../../JuceLibraryCode/include_juce_box2d.cpp"; sourceTree = "SOURCE_ROOT"; };
A91213924D6106A524DDED04 = {isa = PBXFileReference; lastKnownFileType = file.icns; name = Icon.icns; path = Icon.icns; sourceTree = "SOURCE_ROOT"; };
A967B9F6AB128BDF89E29864 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_osc.cpp"; path = "../../JuceLibraryCode/include_juce_osc.cpp"; sourceTree = "SOURCE_ROOT"; };
A9BC810DF7833B6D3C313637 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_devices.mm"; path = "../../JuceLibraryCode/include_juce_audio_devices.mm"; sourceTree = "SOURCE_ROOT"; };
ADE7347A208511B04EC8A5C2 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVKit.framework; path = System/Library/Frameworks/AVKit.framework; sourceTree = SDKROOT; };
BB9C201B975D7CCCDEAB0BB9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_graphics.mm"; path = "../../JuceLibraryCode/include_juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
C4CF8B1AED1919259339456A = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_box2d"; path = "../../../../modules/juce_box2d"; sourceTree = "SOURCE_ROOT"; };
C94CC76F1D4D709FD552A1D4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_core.mm"; path = "../../JuceLibraryCode/include_juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
D2A37539D32DF3DC3E992A33 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DemoContentComponent.cpp; path = ../../Source/UI/DemoContentComponent.cpp; sourceTree = "SOURCE_ROOT"; };
D357B5F02B40640C7B41A349 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_basics"; path = "../../../../modules/juce_audio_basics"; sourceTree = "SOURCE_ROOT"; };
D47FB181DE399C5657C1DB1D = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_gui_basics"; path = "../../../../modules/juce_gui_basics"; sourceTree = "SOURCE_ROOT"; };
D710C01D3B34887F8EF7B6EF = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
D88B5641B51118EE150CF147 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_utils.mm"; path = "../../JuceLibraryCode/include_juce_audio_utils.mm"; sourceTree = "SOURCE_ROOT"; };
D9C1B06AB6B1A791AA4FB521 = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = DemoRunner.entitlements; path = DemoRunner.entitlements; sourceTree = "SOURCE_ROOT"; };
DA7A61D9CE7D7CEA925FEBA6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_video.mm"; path = "../../JuceLibraryCode/include_juce_video.mm"; sourceTree = "SOURCE_ROOT"; };
DB868FB32A00548DFAC10A1B = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_utils"; path = "../../../../modules/juce_audio_utils"; sourceTree = "SOURCE_ROOT"; };
DC8F2762B31C384F881CF47E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_events.mm"; path = "../../JuceLibraryCode/include_juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
DDA9C2C25E953F94889C5E6B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_data_structures.mm"; path = "../../JuceLibraryCode/include_juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
DDBC5EE25C9FCA6E1616A2CF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JUCEDemos.h; path = ../../Source/Demos/JUCEDemos.h; sourceTree = "SOURCE_ROOT"; };
E21A883AFFDD1E5A0964B166 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_analytics"; path = "../../../../modules/juce_analytics"; sourceTree = "SOURCE_ROOT"; };
E516E7CE15094FFB686C8643 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainComponent.cpp; path = ../../Source/UI/MainComponent.cpp; sourceTree = "SOURCE_ROOT"; };
E797D62E22B740939E60F37C = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
EED6F3D4A63A3ABFB9B3A6DB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_dsp.mm"; path = "../../JuceLibraryCode/include_juce_dsp.mm"; sourceTree = "SOURCE_ROOT"; };
EF6DEF68FC21A130CEEF8A9D = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_opengl"; path = "../../../../modules/juce_opengl"; sourceTree = "SOURCE_ROOT"; };
F37F38C06CE8F2A6437C0D22 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_gui_basics.mm"; path = "../../JuceLibraryCode/include_juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
F393708EED4A0B29D35CE8B2 = {isa = PBXFileReference; lastKnownFileType = folder; name = Assets; path = ../../../Assets; sourceTree = "<group>"; };
F4B9842D3B8C8B47B489B417 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudioKit.framework; path = System/Library/Frameworks/CoreAudioKit.framework; sourceTree = SDKROOT; };
FE11289C51709A4DAC4FC381 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
43AA2D96A9A6D0D82AC4A261 = {isa = PBXGroup; children = (
8691567B1218B7A9EFE5F6C7,
59B0D7D99BF3FDFB63FDAA21,
4BA5697853D5B9CA909E768E,
188A412FD9FB8C262DB1B444,
DDBC5EE25C9FCA6E1616A2CF, ); name = Demos; sourceTree = "<group>"; };
4BAFEB8B502C0277D25AC146 = {isa = PBXGroup; children = (
D2A37539D32DF3DC3E992A33,
9CD69846F1B1C8950DB6E835,
E516E7CE15094FFB686C8643,
384212A5859CDFC803FB14D6,
68EBDC98E9EE2665F60F0B88, ); name = UI; sourceTree = "<group>"; };
435B73ABD91BB6755FB0FAC0 = {isa = PBXGroup; children = (
43AA2D96A9A6D0D82AC4A261,
4BAFEB8B502C0277D25AC146,
781637A1252E41252BEA8C7A,
3D28684BC99063A7E66316B8, ); name = Source; sourceTree = "<group>"; };
765B33C999F36263EAD17877 = {isa = PBXGroup; children = (
435B73ABD91BB6755FB0FAC0, ); name = DemoRunner; sourceTree = "<group>"; };
97201B81C922CA4A94B80EC8 = {isa = PBXGroup; children = (
E21A883AFFDD1E5A0964B166,
D357B5F02B40640C7B41A349,
85106095564D7799E47D8D85,
893E1E27D370304B9EACC661,
6DD92F919D764DDD7AAFC518,
DB868FB32A00548DFAC10A1B,
6E9E2ACFA0F89810D6888B8B,
C4CF8B1AED1919259339456A,
7170D7A8EB78C005FB4CCD41,
1D33F6301F948D4F97601306,
620DC92F472D32235843D916,
676A5FFC15765D73779FE43D,
9F8CA6716C6582F1EA6A56FE,
0C0321717BB631605CC77711,
D47FB181DE399C5657C1DB1D,
A494543F1EC3C22C202B6489,
EF6DEF68FC21A130CEEF8A9D,
81227E353AB0F6DFEB740346,
1F7A8FBF84EE7B0603BE1816,
29AB67D1988BBE77DDBD7C70, ); name = "JUCE Modules"; sourceTree = "<group>"; };
EA3924214601843C7E476093 = {isa = PBXGroup; children = (
9178F78EECDBCB3F664152F4,
3F812A57EB3193F93597F5A8,
2C3FB13D8116CFB722F669C4,
A9BC810DF7833B6D3C313637,
48B5EFBCC352B1E56CC8EA77,
18CAC970F893E24D1B3183D7,
D88B5641B51118EE150CF147,
4B33E4D3B0A5A5EEF1EEDC0C,
A586573C8C0B7578EA62D38B,
C94CC76F1D4D709FD552A1D4,
9B555A796D4240CC3D24AD9E,
DDA9C2C25E953F94889C5E6B,
EED6F3D4A63A3ABFB9B3A6DB,
DC8F2762B31C384F881CF47E,
BB9C201B975D7CCCDEAB0BB9,
F37F38C06CE8F2A6437C0D22,
85228A3DF090D1AE2190FFCC,
021817818723EC1D3B162B41,
A967B9F6AB128BDF89E29864,
3912433EEB5FA820AE1FDDF7,
DA7A61D9CE7D7CEA925FEBA6,
05341E4A228EAF40564BB4C9, ); name = "JUCE Library Code"; sourceTree = "<group>"; };
E217BA20E866F42794C0387A = {isa = PBXGroup; children = (
F393708EED4A0B29D35CE8B2,
8570E0A99252209A13D6D4D9,
5245120BCAC16C96645799FB,
A91213924D6106A524DDED04, ); name = Resources; sourceTree = "<group>"; };
8BFA802D5F51FB8D8A3C69D3 = {isa = PBXGroup; children = (
6835BDC8CD881018B80F9BF9,
2D1EE4D99A4B85CB3108F8A0,
1FD7405FF78E20016EABB63E,
ADE7347A208511B04EC8A5C2,
622F457A3ADC194B7AE7B6D5,
F4B9842D3B8C8B47B489B417,
561493440EB204E2950570FB,
A1A8D9A0C3A66688A668779C,
0BF6AC7C3E9C2C4ADB63397F,
6BC2B25532F0E7A50D0950E0,
20CF85CAF4DE80895A74E56B,
62F17E98F30018FE20B05EA0,
D710C01D3B34887F8EF7B6EF,
FE11289C51709A4DAC4FC381,
E797D62E22B740939E60F37C,
1AF9DF0FD7117E8A7B5D2704, ); name = Frameworks; sourceTree = "<group>"; };
15ECAA0F85F36697AFC22312 = {isa = PBXGroup; children = (
5CB8CE1A1C9A67298F80FC04, ); name = Products; sourceTree = "<group>"; };
BDBE5F3993573C2D57291C50 = {isa = PBXGroup; children = (
D9C1B06AB6B1A791AA4FB521,
765B33C999F36263EAD17877,
97201B81C922CA4A94B80EC8,
EA3924214601843C7E476093,
E217BA20E866F42794C0387A,
8BFA802D5F51FB8D8A3C69D3,
15ECAA0F85F36697AFC22312, ); name = Source; sourceTree = "<group>"; };
DAD00A3C4CFDBAA7DBE203BC = {isa = XCBuildConfiguration; buildSettings = {
50D7EC5612ECA5BC19DC03AF = {isa = PBXBuildFile; fileRef = 52DD88A0571B22A2EAB16445; };
235DB857C0318115A36E1FD8 = {isa = PBXBuildFile; fileRef = BB8199F77CA512412BFDCEDC; };
4EA2E1D2BEFD70EF4239A160 = {isa = PBXBuildFile; fileRef = 5C0CF35870042C7BE2A6A68B; };
D37D3F59BB7393C56E4E3050 = {isa = PBXBuildFile; fileRef = A104D06660FCADD6564CB69B; };
774DD2A4590ADA2A24262496 = {isa = PBXBuildFile; fileRef = C844AB13344EC6FA5644D0D9; };
2A68004C28A81913A821CC94 = {isa = PBXBuildFile; fileRef = 9B1096EBD851547AE49BFF6F; };
4F140CCCFBE1900844825E10 = {isa = PBXBuildFile; fileRef = 319FE40446DCAF2CC22C48CD; };
C35FCE3D49361DE41DC0950B = {isa = PBXBuildFile; fileRef = F433A3C4B5D6490A2FD36047; };
0E9D50FC8DA911ED5A22A089 = {isa = PBXBuildFile; fileRef = EA4F877FE56967993E2B3C93; };
5ABAF00E78591326E387AD39 = {isa = PBXBuildFile; fileRef = 783F90586A39742058A6AC29; };
7C93C578BEE56CD3CB250175 = {isa = PBXBuildFile; fileRef = 4BC20D4B7B55559D33BC50BB; };
D483EA1A33D56C7F362991A6 = {isa = PBXBuildFile; fileRef = 04A503A7CDB546CC57167288; };
9627C18C938AA19C32BF4690 = {isa = PBXBuildFile; fileRef = EF681771CD2F96AA0B271448; };
7366B2CE1BD9940BF173BF21 = {isa = PBXBuildFile; fileRef = 5B58C4590DAC9C25AA058EC5; };
703A86A4150D461A42BA35F0 = {isa = PBXBuildFile; fileRef = E580B96D825E6F0F928AAC3B; };
7E67B8AB4B2909C35D3E2386 = {isa = PBXBuildFile; fileRef = D4C9064D6711F109753D34AA; };
7D062DDC4A27A0B07D10F9A5 = {isa = PBXBuildFile; fileRef = 450C2193B04CC75804C2BEAD; };
E7C6E2D24CE7045AB8474B55 = {isa = PBXBuildFile; fileRef = B38500CA3098DE53ED27181D; };
90EB4E0198B79551219344F6 = {isa = PBXBuildFile; fileRef = 0F37B25C917B1C7C83D1452F; };
4A3655E361EC1B03EF09D54B = {isa = PBXBuildFile; fileRef = 2D1D30A1004CBF4A364F2004; };
B2A550E1C003E7B654FC1722 = {isa = PBXBuildFile; fileRef = F343A7819D9BBCDEB03F6C41; };
B3E83A7CC44632BEDDA5B73A = {isa = PBXBuildFile; fileRef = 41315DB9D8B568903AC964F3; };
5F217A44FAFD627F491E71FF = {isa = PBXBuildFile; fileRef = 5E559FE0D9248408457927A9; };
2182FE531AA58F1DFD5FCDEB = {isa = PBXBuildFile; fileRef = 211DD57331CC6CF28D163192; };
9331745E5C20E9B8A5D509A7 = {isa = PBXBuildFile; fileRef = 6EC4EEE9366753B957B90266; };
383DC09F3EC7AFB1B61C351D = {isa = PBXBuildFile; fileRef = F34969DDDB31A7713C9F291C; };
674A1FD0180D7CF171896CFC = {isa = PBXBuildFile; fileRef = 1D58E4FB4EA5970BFB26231A; };
2150D7DA563A6C19B8071C17 = {isa = PBXBuildFile; fileRef = 298D6C3C010A7BCBD5F01545; };
B69DA5734711405A4ACABFC4 = {isa = PBXBuildFile; fileRef = 63D98DD55754719379AC258C; };
8EAE660D53E40322E2B49C73 = {isa = PBXBuildFile; fileRef = DC2EF8A07D50074459B30B93; };
4296AC056D705152A8C357AE = {isa = PBXBuildFile; fileRef = F51DA2621242E34FBDC0CD06; };
6A1E551983F2A2E827D938AE = {isa = PBXBuildFile; fileRef = 121C259EED65785C4A85535B; };
4B48F2831DB6FD31A7718120 = {isa = PBXBuildFile; fileRef = D30470E2881E0181F682E9A5; };
8CCA132255089E80FAA8EA03 = {isa = PBXBuildFile; fileRef = F8812167FDFCFBFE0D05FC17; };
BA950CC38FAAE11B8E3243BA = {isa = PBXBuildFile; fileRef = 0AD53D057886F21AAE26E0A0; };
F954EA939409C662007ED285 = {isa = PBXBuildFile; fileRef = 8D9C3A26048B31C0C23E567A; };
0298170457F80FF4CB91790D = {isa = PBXBuildFile; fileRef = 6D8043D067516328D4718AEA; };
594198546E16F0C5BE6C1B65 = {isa = PBXBuildFile; fileRef = AAAF903A427FC83660569500; };
81397D4FA4BA55720A0FF9DD = {isa = PBXBuildFile; fileRef = AF7E26FB6AD2AB4C7593A3A3; };
025323EAF1009AA4A79EC846 = {isa = PBXBuildFile; fileRef = 52F9A1204810F0A03F35CEDC; };
7DF4017ED75A0B5D2B7EB4DB = {isa = PBXBuildFile; fileRef = A1DA970B67BBCF392E6C3FFF; };
CFB525DB3C003F96FD553D1C = {isa = PBXBuildFile; fileRef = BA73EB5EB98D126E725B1613; };
0D20EAAB69F578AD1EF54CB7 = {isa = PBXBuildFile; fileRef = DB7451D145A1A71F7AEA7330; };
1E29846A20A7EBE541A145AC = {isa = PBXBuildFile; fileRef = 2A2EC9703E7BE3965C9D0C76; };
FDFEF1AFCF0507CF29D6D71D = {isa = PBXBuildFile; fileRef = 6174AEB1C72D88986636FED3; };
FC0133FF090F142117AFE992 = {isa = PBXBuildFile; fileRef = A320CAB90C0D9F56F146FE33; };
04A503A7CDB546CC57167288 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
0AD53D057886F21AAE26E0A0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_core.mm"; path = "../../JuceLibraryCode/include_juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
0DBBFD550BC7F957FB559CF2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = "SOURCE_ROOT"; };
0F37B25C917B1C7C83D1452F = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = DemoRunner/Images.xcassets; sourceTree = "SOURCE_ROOT"; };
121C259EED65785C4A85535B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_utils.mm"; path = "../../JuceLibraryCode/include_juce_audio_utils.mm"; sourceTree = "SOURCE_ROOT"; };
1A8838A9C463D86166754544 = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = DemoRunner.entitlements; path = DemoRunner.entitlements; sourceTree = "SOURCE_ROOT"; };
1D58E4FB4EA5970BFB26231A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_analytics.cpp"; path = "../../JuceLibraryCode/include_juce_analytics.cpp"; sourceTree = "SOURCE_ROOT"; };
204247FBC06A8EFA05CC4666 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_graphics"; path = "../../../../modules/juce_graphics"; sourceTree = "SOURCE_ROOT"; };
211DD57331CC6CF28D163192 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DemoContentComponent.cpp; path = ../../Source/UI/DemoContentComponent.cpp; sourceTree = "SOURCE_ROOT"; };
298D6C3C010A7BCBD5F01545 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_basics.mm"; path = "../../JuceLibraryCode/include_juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
2A2EC9703E7BE3965C9D0C76 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_osc.cpp"; path = "../../JuceLibraryCode/include_juce_osc.cpp"; sourceTree = "SOURCE_ROOT"; };
2D1D30A1004CBF4A364F2004 = {isa = PBXFileReference; lastKnownFileType = file.icns; name = Icon.icns; path = Icon.icns; sourceTree = "SOURCE_ROOT"; };
319FE40446DCAF2CC22C48CD = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudioKit.framework; path = System/Library/Frameworks/CoreAudioKit.framework; sourceTree = SDKROOT; };
3E46B16206F098D5F44BF88C = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_osc"; path = "../../../../modules/juce_osc"; sourceTree = "SOURCE_ROOT"; };
3E853853607FD4B738AEA0DA = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_events"; path = "../../../../modules/juce_events"; sourceTree = "SOURCE_ROOT"; };
41315DB9D8B568903AC964F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DemoPIPs2.cpp; path = ../../Source/Demos/DemoPIPs2.cpp; sourceTree = "SOURCE_ROOT"; };
450C2193B04CC75804C2BEAD = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
484FD168F0024304495EFF68 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_blocks_basics"; path = "../../../../modules/juce_blocks_basics"; sourceTree = "SOURCE_ROOT"; };
4B2DC1A59CAEC821B4D3C196 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_gui_extra"; path = "../../../../modules/juce_gui_extra"; sourceTree = "SOURCE_ROOT"; };
4BC20D4B7B55559D33BC50BB = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
52DD88A0571B22A2EAB16445 = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DemoRunner.app; sourceTree = "BUILT_PRODUCTS_DIR"; };
52F9A1204810F0A03F35CEDC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_graphics.mm"; path = "../../JuceLibraryCode/include_juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
5B58C4590DAC9C25AA058EC5 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
5C0CF35870042C7BE2A6A68B = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
5DAC92D581D6D6CFF1E07B91 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_formats"; path = "../../../../modules/juce_audio_formats"; sourceTree = "SOURCE_ROOT"; };
5E559FE0D9248408457927A9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = JUCEDemos.cpp; path = ../../Source/Demos/JUCEDemos.cpp; sourceTree = "SOURCE_ROOT"; };
6174AEB1C72D88986636FED3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_product_unlocking.mm"; path = "../../JuceLibraryCode/include_juce_product_unlocking.mm"; sourceTree = "SOURCE_ROOT"; };
63D98DD55754719379AC258C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_devices.mm"; path = "../../JuceLibraryCode/include_juce_audio_devices.mm"; sourceTree = "SOURCE_ROOT"; };
6941DAFA67B497FBEEF7A0C3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainComponent.h; path = ../../Source/UI/MainComponent.h; sourceTree = "SOURCE_ROOT"; };
6D8043D067516328D4718AEA = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_data_structures.mm"; path = "../../JuceLibraryCode/include_juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
6EC4EEE9366753B957B90266 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainComponent.cpp; path = ../../Source/UI/MainComponent.cpp; sourceTree = "SOURCE_ROOT"; };
7491A14134C1C369F4E80109 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_product_unlocking"; path = "../../../../modules/juce_product_unlocking"; sourceTree = "SOURCE_ROOT"; };
74CE55F05F43C304BD7CFE76 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_devices"; path = "../../../../modules/juce_audio_devices"; sourceTree = "SOURCE_ROOT"; };
783F90586A39742058A6AC29 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
810FAB85AAB9E725DE47ECC2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SettingsContent.h; path = ../../Source/UI/SettingsContent.h; sourceTree = "SOURCE_ROOT"; };
8D9C3A26048B31C0C23E567A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_cryptography.mm"; path = "../../JuceLibraryCode/include_juce_cryptography.mm"; sourceTree = "SOURCE_ROOT"; };
8FE62EF873A01A2E376BD645 = {isa = PBXFileReference; lastKnownFileType = image.png; name = JUCEAppIcon.png; path = ../../Source/JUCEAppIcon.png; sourceTree = "SOURCE_ROOT"; };
9565389CAD64FB2A5D454DC6 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_processors"; path = "../../../../modules/juce_audio_processors"; sourceTree = "SOURCE_ROOT"; };
9986F409F240C0729B7CCF07 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_video"; path = "../../../../modules/juce_video"; sourceTree = "SOURCE_ROOT"; };
9A4E6F77C3CA15BA9D532DC6 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_basics"; path = "../../../../modules/juce_audio_basics"; sourceTree = "SOURCE_ROOT"; };
9AEA8477D8A19314EB08762F = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_analytics"; path = "../../../../modules/juce_analytics"; sourceTree = "SOURCE_ROOT"; };
9B1096EBD851547AE49BFF6F = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
9C12C7893B76C4349D15A830 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_cryptography"; path = "../../../../modules/juce_cryptography"; sourceTree = "SOURCE_ROOT"; };
A104D06660FCADD6564CB69B = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
A19B5449B5A42CDC3E0ACCDD = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_gui_basics"; path = "../../../../modules/juce_gui_basics"; sourceTree = "SOURCE_ROOT"; };
A1DA970B67BBCF392E6C3FFF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_gui_basics.mm"; path = "../../JuceLibraryCode/include_juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
A320CAB90C0D9F56F146FE33 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_video.mm"; path = "../../JuceLibraryCode/include_juce_video.mm"; sourceTree = "SOURCE_ROOT"; };
AAAF903A427FC83660569500 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_dsp.mm"; path = "../../JuceLibraryCode/include_juce_dsp.mm"; sourceTree = "SOURCE_ROOT"; };
AF7E26FB6AD2AB4C7593A3A3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_events.mm"; path = "../../JuceLibraryCode/include_juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
B00744743E4A63538519579B = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_dsp"; path = "../../../../modules/juce_dsp"; sourceTree = "SOURCE_ROOT"; };
B38500CA3098DE53ED27181D = {isa = PBXFileReference; lastKnownFileType = folder; name = Assets; path = ../../../Assets; sourceTree = "<group>"; };
BA73EB5EB98D126E725B1613 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_gui_extra.mm"; path = "../../JuceLibraryCode/include_juce_gui_extra.mm"; sourceTree = "SOURCE_ROOT"; };
BB8199F77CA512412BFDCEDC = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
C844AB13344EC6FA5644D0D9 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVKit.framework; path = System/Library/Frameworks/AVKit.framework; sourceTree = SDKROOT; };
CF09557E4C6B3C7E1A48BB22 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_audio_utils"; path = "../../../../modules/juce_audio_utils"; sourceTree = "SOURCE_ROOT"; };
CFC68DD1F149B09C1D6C6443 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IntroScreen.h; path = ../../Source/Demos/IntroScreen.h; sourceTree = "SOURCE_ROOT"; };
D30470E2881E0181F682E9A5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_blocks_basics.cpp"; path = "../../JuceLibraryCode/include_juce_blocks_basics.cpp"; sourceTree = "SOURCE_ROOT"; };
D4C9064D6711F109753D34AA = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
D6014664C491D54229A32A09 = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "Info-App.plist"; path = "Info-App.plist"; sourceTree = "SOURCE_ROOT"; };
D86C6503261D59DC20A38FF3 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_opengl"; path = "../../../../modules/juce_opengl"; sourceTree = "SOURCE_ROOT"; };
DB7451D145A1A71F7AEA7330 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_opengl.mm"; path = "../../JuceLibraryCode/include_juce_opengl.mm"; sourceTree = "SOURCE_ROOT"; };
DC2EF8A07D50074459B30B93 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_formats.mm"; path = "../../JuceLibraryCode/include_juce_audio_formats.mm"; sourceTree = "SOURCE_ROOT"; };
DF1A27EF702BF58D597C94E9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JUCEDemos.h; path = ../../Source/Demos/JUCEDemos.h; sourceTree = "SOURCE_ROOT"; };
E081B2AAF4D711C406E6F0FD = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_core"; path = "../../../../modules/juce_core"; sourceTree = "SOURCE_ROOT"; };
E580B96D825E6F0F928AAC3B = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
EA2829D1177D20590806BA8B = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_box2d"; path = "../../../../modules/juce_box2d"; sourceTree = "SOURCE_ROOT"; };
EA4F877FE56967993E2B3C93 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; };
EF681771CD2F96AA0B271448 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
F343A7819D9BBCDEB03F6C41 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DemoPIPs1.cpp; path = ../../Source/Demos/DemoPIPs1.cpp; sourceTree = "SOURCE_ROOT"; };
F34969DDDB31A7713C9F291C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = "SOURCE_ROOT"; };
F358612A22315D629DA2D366 = {isa = PBXFileReference; lastKnownFileType = file; name = "juce_data_structures"; path = "../../../../modules/juce_data_structures"; sourceTree = "SOURCE_ROOT"; };
F433A3C4B5D6490A2FD36047 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
F51DA2621242E34FBDC0CD06 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "include_juce_audio_processors.mm"; path = "../../JuceLibraryCode/include_juce_audio_processors.mm"; sourceTree = "SOURCE_ROOT"; };
F8812167FDFCFBFE0D05FC17 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "include_juce_box2d.cpp"; path = "../../JuceLibraryCode/include_juce_box2d.cpp"; sourceTree = "SOURCE_ROOT"; };
FD9BD7FF8B972A3C574B55B5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = DemoContentComponent.h; path = ../../Source/UI/DemoContentComponent.h; sourceTree = "SOURCE_ROOT"; };
FEAB6375C022FB28EA046544 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = "SOURCE_ROOT"; };
BCA43D68C5F209DD05309228 = {isa = PBXGroup; children = (
F343A7819D9BBCDEB03F6C41,
41315DB9D8B568903AC964F3,
CFC68DD1F149B09C1D6C6443,
5E559FE0D9248408457927A9,
DF1A27EF702BF58D597C94E9, ); name = Demos; sourceTree = "<group>"; };
79E3D9AB56303997BB4318A1 = {isa = PBXGroup; children = (
211DD57331CC6CF28D163192,
FD9BD7FF8B972A3C574B55B5,
6EC4EEE9366753B957B90266,
6941DAFA67B497FBEEF7A0C3,
810FAB85AAB9E725DE47ECC2, ); name = UI; sourceTree = "<group>"; };
6F4DABC7EE606C8FC2DAE56F = {isa = PBXGroup; children = (
BCA43D68C5F209DD05309228,
79E3D9AB56303997BB4318A1,
F34969DDDB31A7713C9F291C,
8FE62EF873A01A2E376BD645, ); name = Source; sourceTree = "<group>"; };
DA956DD927033492135DF1EA = {isa = PBXGroup; children = (
6F4DABC7EE606C8FC2DAE56F, ); name = DemoRunner; sourceTree = "<group>"; };
B84A2F79721C12113779D8D9 = {isa = PBXGroup; children = (
9AEA8477D8A19314EB08762F,
9A4E6F77C3CA15BA9D532DC6,
74CE55F05F43C304BD7CFE76,
5DAC92D581D6D6CFF1E07B91,
9565389CAD64FB2A5D454DC6,
CF09557E4C6B3C7E1A48BB22,
484FD168F0024304495EFF68,
EA2829D1177D20590806BA8B,
E081B2AAF4D711C406E6F0FD,
9C12C7893B76C4349D15A830,
F358612A22315D629DA2D366,
B00744743E4A63538519579B,
3E853853607FD4B738AEA0DA,
204247FBC06A8EFA05CC4666,
A19B5449B5A42CDC3E0ACCDD,
4B2DC1A59CAEC821B4D3C196,
D86C6503261D59DC20A38FF3,
3E46B16206F098D5F44BF88C,
7491A14134C1C369F4E80109,
9986F409F240C0729B7CCF07, ); name = "JUCE Modules"; sourceTree = "<group>"; };
8E1B39E03898EF9E2AE47C26 = {isa = PBXGroup; children = (
FEAB6375C022FB28EA046544,
1D58E4FB4EA5970BFB26231A,
298D6C3C010A7BCBD5F01545,
63D98DD55754719379AC258C,
DC2EF8A07D50074459B30B93,
F51DA2621242E34FBDC0CD06,
121C259EED65785C4A85535B,
D30470E2881E0181F682E9A5,
F8812167FDFCFBFE0D05FC17,
0AD53D057886F21AAE26E0A0,
8D9C3A26048B31C0C23E567A,
6D8043D067516328D4718AEA,
AAAF903A427FC83660569500,
AF7E26FB6AD2AB4C7593A3A3,
52F9A1204810F0A03F35CEDC,
A1DA970B67BBCF392E6C3FFF,
BA73EB5EB98D126E725B1613,
DB7451D145A1A71F7AEA7330,
2A2EC9703E7BE3965C9D0C76,
6174AEB1C72D88986636FED3,
A320CAB90C0D9F56F146FE33,
0DBBFD550BC7F957FB559CF2, ); name = "JUCE Library Code"; sourceTree = "<group>"; };
22CEA2C099CBC5F9A49496E8 = {isa = PBXGroup; children = (
B38500CA3098DE53ED27181D,
D6014664C491D54229A32A09,
0F37B25C917B1C7C83D1452F,
2D1D30A1004CBF4A364F2004, ); name = Resources; sourceTree = "<group>"; };
02954A9CC7FFFF6C74A9BD29 = {isa = PBXGroup; children = (
BB8199F77CA512412BFDCEDC,
5C0CF35870042C7BE2A6A68B,
A104D06660FCADD6564CB69B,
C844AB13344EC6FA5644D0D9,
9B1096EBD851547AE49BFF6F,
319FE40446DCAF2CC22C48CD,
F433A3C4B5D6490A2FD36047,
EA4F877FE56967993E2B3C93,
783F90586A39742058A6AC29,
4BC20D4B7B55559D33BC50BB,
04A503A7CDB546CC57167288,
EF681771CD2F96AA0B271448,
5B58C4590DAC9C25AA058EC5,
E580B96D825E6F0F928AAC3B,
D4C9064D6711F109753D34AA,
450C2193B04CC75804C2BEAD, ); name = Frameworks; sourceTree = "<group>"; };
7E5FD96ECD7E7C168E1BA960 = {isa = PBXGroup; children = (
52DD88A0571B22A2EAB16445, ); name = Products; sourceTree = "<group>"; };
92CC79F0DFEF150612CEED4A = {isa = PBXGroup; children = (
1A8838A9C463D86166754544,
DA956DD927033492135DF1EA,
B84A2F79721C12113779D8D9,
8E1B39E03898EF9E2AE47C26,
22CEA2C099CBC5F9A49496E8,
02954A9CC7FFFF6C74A9BD29,
7E5FD96ECD7E7C168E1BA960, ); name = Source; sourceTree = "<group>"; };
FB4F3C00DE2E01C90770D32D = {isa = XCBuildConfiguration; buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CLANG_CXX_LANGUAGE_STANDARD = "c++14";
@@ -256,7 +256,7 @@
INSTALL_PATH = "$(HOME)/Applications";
PRODUCT_BUNDLE_IDENTIFIER = com.roli.juce.demorunner;
USE_HEADERMAP = NO; }; name = Debug; };
A2F568D2305D0AE37A4B9B8E = {isa = XCBuildConfiguration; buildSettings = {
B784DEEF4650EDA00FBB583D = {isa = XCBuildConfiguration; buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CLANG_CXX_LANGUAGE_STANDARD = "c++14";
@@ -291,7 +291,7 @@
LLVM_LTO = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.roli.juce.demorunner;
USE_HEADERMAP = NO; }; name = Release; };
29860132E5245D03F8BF0BC4 = {isa = XCBuildConfiguration; buildSettings = {
0AEFDA9D08CBB2EC6CE38FD0 = {isa = XCBuildConfiguration; buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
@@ -333,7 +333,7 @@
TARGETED_DEVICE_FAMILY = "1,2";
WARNING_CFLAGS = -Wreorder;
ZERO_LINK = NO; }; name = Debug; };
468BBF873C1B07B1B3296EAA = {isa = XCBuildConfiguration; buildSettings = {
0CCFB47BC23BAB1126EFEB9D = {isa = XCBuildConfiguration; buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
@@ -373,66 +373,66 @@
TARGETED_DEVICE_FAMILY = "1,2";
WARNING_CFLAGS = -Wreorder;
ZERO_LINK = NO; }; name = Release; };
10BB8EE3673A90F9F2D2F035 = {isa = PBXTargetDependency; target = 81A8C6E72044569D61BEE0ED; };
AB27A220DAD7362BB34239E5 = {isa = XCConfigurationList; buildConfigurations = (
29860132E5245D03F8BF0BC4,
468BBF873C1B07B1B3296EAA, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
924B0C2D71B0B30A64E8E5D1 = {isa = XCConfigurationList; buildConfigurations = (
DAD00A3C4CFDBAA7DBE203BC,
A2F568D2305D0AE37A4B9B8E, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
8D37B56F0EF41F9285A22D72 = {isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = (
F8B7B392293D5FCC1E8EEC01,
1B1C997A3CE0E8AB727A1435,
4C7AD8D88472B26449C4CF63, ); runOnlyForDeploymentPostprocessing = 0; };
89295DB538192845CB054D91 = {isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = (
2A3DC87FFD79EAE6BFA94622,
BD04F47A8820F3C1020BBBCB,
20B3995FB3715E6ED47B76F1,
D95C28AED57175F32AA87EFA,
4AEDB85AEFDA4CB199CB3D5F,
604E46FE23C850D75D07D08B,
6E8B3995F69016C86D869C29,
F3CEC3F0AC9F3447817D782D,
6AFF5F67E3B6392E41E3606F,
9AE05CC0F9FF63FF0E51B28F,
EF3D92F535606C53B1240C2F,
872B4E257083F2B28696BA5C,
7FB0A6A8EBDFC2C9BF2B4407,
5235D05C85F2D645F9993677,
698B4D0BB29EA820DD4C1202,
E9032722067CC37D915FCF76,
77327439358C4FED6F1818B5,
DBE748AC5DA12DE3A8D16BBD,
24D22C16FC23E24654A82A65,
CC1431712E73E25191E693D5,
76233E3A9E20841862403C46,
12972133C0EF4AFA095643D2,
85FB78873995DA4E86D1BD35,
A5271659E0DEACA9158A2316,
7FFE403B9AAD39F7F14CE2AC,
BB0BB0C53C5A130F8F2FFFCB, ); runOnlyForDeploymentPostprocessing = 0; };
86F549D5E74CB50126072AD2 = {isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
3DE670A035B1815A22D83557,
7433A7AA49D69A058F59DE2A,
35AD3766DD48594FD02ECB97,
6DEE05786F8FB0012977BA15,
BCDB3345B6ED2457B7423309,
B0091619B95037A7F71CB0B9,
E0AAD8D37E85580769FFAC95,
8C1FBA1AC4A84FD4288069AD,
7F6333DA7C84D86E3F354A45,
7E1228B51FFBB3D9BE8B9390,
716D34C429995B9507CB5BBC,
7F8A941D3D02E42533790876,
05FDBE142AF4AFB04D83FC6B,
48B532979682A1093CC7A3C7,
7922BD029CE0E987D1E33710,
8C56C01FF861F8C2A0D21BF0, ); runOnlyForDeploymentPostprocessing = 0; };
81A8C6E72044569D61BEE0ED = {isa = PBXNativeTarget; buildConfigurationList = 924B0C2D71B0B30A64E8E5D1; buildPhases = (
8D37B56F0EF41F9285A22D72,
89295DB538192845CB054D91,
86F549D5E74CB50126072AD2, ); buildRules = ( ); dependencies = ( ); name = "DemoRunner - App"; productName = DemoRunner; productReference = 5CB8CE1A1C9A67298F80FC04; productType = "com.apple.product-type.application"; };
007108FE3338B46423ED7C16 = {isa = PBXProject; buildConfigurationList = AB27A220DAD7362BB34239E5; attributes = { LastUpgradeCheck = 0830; ORGANIZATIONNAME = "ROLI Ltd."; TargetAttributes = { 81A8C6E72044569D61BEE0ED = { SystemCapabilities = {com.apple.ApplicationGroups.iOS = { enabled = 0; }; com.apple.InAppPurchase = { enabled = 0; }; com.apple.InterAppAudio = { enabled = 0; }; com.apple.Push = { enabled = 0; }; com.apple.Sandbox = { enabled = 0; }; com.apple.iCloud = { enabled = 1; }; }; }; }; }; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 0; mainGroup = BDBE5F3993573C2D57291C50; projectDirPath = ""; projectRoot = ""; targets = (81A8C6E72044569D61BEE0ED); };
2EA7924D2BD202CCDDA930AC = {isa = PBXTargetDependency; target = 44F7378A51DD1A22F4522C62; };
EE3C3034F1C9D7B264621739 = {isa = XCConfigurationList; buildConfigurations = (
0AEFDA9D08CBB2EC6CE38FD0,
0CCFB47BC23BAB1126EFEB9D, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
4BE0EF014EC6AF58A44E1695 = {isa = XCConfigurationList; buildConfigurations = (
FB4F3C00DE2E01C90770D32D,
B784DEEF4650EDA00FBB583D, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
BC2E8632684B5D2727E919D7 = {isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = (
E7C6E2D24CE7045AB8474B55,
90EB4E0198B79551219344F6,
4A3655E361EC1B03EF09D54B, ); runOnlyForDeploymentPostprocessing = 0; };
60E2E874438F3E7C942D7400 = {isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = (
B2A550E1C003E7B654FC1722,
B3E83A7CC44632BEDDA5B73A,
5F217A44FAFD627F491E71FF,
2182FE531AA58F1DFD5FCDEB,
9331745E5C20E9B8A5D509A7,
383DC09F3EC7AFB1B61C351D,
674A1FD0180D7CF171896CFC,
2150D7DA563A6C19B8071C17,
B69DA5734711405A4ACABFC4,
8EAE660D53E40322E2B49C73,
4296AC056D705152A8C357AE,
6A1E551983F2A2E827D938AE,
4B48F2831DB6FD31A7718120,
8CCA132255089E80FAA8EA03,
BA950CC38FAAE11B8E3243BA,
F954EA939409C662007ED285,
0298170457F80FF4CB91790D,
594198546E16F0C5BE6C1B65,
81397D4FA4BA55720A0FF9DD,
025323EAF1009AA4A79EC846,
7DF4017ED75A0B5D2B7EB4DB,
CFB525DB3C003F96FD553D1C,
0D20EAAB69F578AD1EF54CB7,
1E29846A20A7EBE541A145AC,
FDFEF1AFCF0507CF29D6D71D,
FC0133FF090F142117AFE992, ); runOnlyForDeploymentPostprocessing = 0; };
276AFEDCB6F102E9E00AC6F9 = {isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
235DB857C0318115A36E1FD8,
4EA2E1D2BEFD70EF4239A160,
D37D3F59BB7393C56E4E3050,
774DD2A4590ADA2A24262496,
2A68004C28A81913A821CC94,
4F140CCCFBE1900844825E10,
C35FCE3D49361DE41DC0950B,
0E9D50FC8DA911ED5A22A089,
5ABAF00E78591326E387AD39,
7C93C578BEE56CD3CB250175,
D483EA1A33D56C7F362991A6,
9627C18C938AA19C32BF4690,
7366B2CE1BD9940BF173BF21,
703A86A4150D461A42BA35F0,
7E67B8AB4B2909C35D3E2386,
7D062DDC4A27A0B07D10F9A5, ); runOnlyForDeploymentPostprocessing = 0; };
44F7378A51DD1A22F4522C62 = {isa = PBXNativeTarget; buildConfigurationList = 4BE0EF014EC6AF58A44E1695; buildPhases = (
BC2E8632684B5D2727E919D7,
60E2E874438F3E7C942D7400,
276AFEDCB6F102E9E00AC6F9, ); buildRules = ( ); dependencies = ( ); name = "DemoRunner - App"; productName = DemoRunner; productReference = 52DD88A0571B22A2EAB16445; productType = "com.apple.product-type.application"; };
5F344E186591BFB7264CA37E = {isa = PBXProject; buildConfigurationList = EE3C3034F1C9D7B264621739; attributes = { LastUpgradeCheck = 0830; ORGANIZATIONNAME = "ROLI Ltd."; TargetAttributes = { 44F7378A51DD1A22F4522C62 = { SystemCapabilities = {com.apple.ApplicationGroups.iOS = { enabled = 0; }; com.apple.InAppPurchase = { enabled = 0; }; com.apple.InterAppAudio = { enabled = 0; }; com.apple.Push = { enabled = 0; }; com.apple.Sandbox = { enabled = 0; }; com.apple.iCloud = { enabled = 1; }; }; }; }; }; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 0; mainGroup = 92CC79F0DFEF150612CEED4A; projectDirPath = ""; projectRoot = ""; targets = (44F7378A51DD1A22F4522C62); };
};
rootObject = 007108FE3338B46423ED7C16;
rootObject = 5F344E186591BFB7264CA37E;
}

+ 1
- 1
examples/DemoRunner/JuceLibraryCode/AppConfig.h View File

@@ -40,7 +40,7 @@
#endif
#ifndef JUCE_REPORT_APP_USAGE
#define JUCE_REPORT_APP_USAGE 1
#define JUCE_REPORT_APP_USAGE 0
#endif
// END SECTION A


+ 2
- 0
extras/AudioPerformanceTest/Builds/Android/app/CMakeLists.txt View File

@@ -305,6 +305,7 @@ add_library( ${BINARY_NAME}
"../../../../../modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.mm"
"../../../../../modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.cpp"
"../../../../../modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.h"
"../../../../../modules/juce_audio_processors/format_types/juce_LegacyAudioParameter.cpp"
"../../../../../modules/juce_audio_processors/format_types/juce_VST3Common.h"
"../../../../../modules/juce_audio_processors/format_types/juce_VST3Headers.h"
"../../../../../modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp"
@@ -1471,6 +1472,7 @@ set_source_files_properties("../../../../../modules/juce_audio_processors/format
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.mm" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.h" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_LegacyAudioParameter.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_VST3Common.h" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_VST3Headers.h" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)


+ 21
- 3
extras/AudioPerformanceTest/Builds/Android/app/src/main/java/com/juce/audioperformancetest/AudioPerformanceTest.java View File

@@ -1823,19 +1823,37 @@ public class AudioPerformanceTest extends Activity
private class TreeObserver implements ViewTreeObserver.OnGlobalLayoutListener
{
TreeObserver()
{
keyboardShown = false;
}
@Override
public void onGlobalLayout()
{
Rect r = new Rect();
view.getWindowVisibleDisplayFrame(r);
ViewGroup parentView = (ViewGroup) getParent();
if (parentView == null)
return;
parentView.getWindowVisibleDisplayFrame (r);
int diff = view.getHeight() - (r.bottom - r.top);
int diff = parentView.getHeight() - (r.bottom - r.top);
// Arbitrary threshold, surely keyboard would take more than 20 pix.
if (diff < 20)
if (diff < 20 && keyboardShown)
{
keyboardShown = false;
handleKeyboardHidden (view.host);
}
if (! keyboardShown && diff > 20)
keyboardShown = true;
};
private boolean keyboardShown;
};
private ComponentPeerView view;


+ 3
- 0
extras/AudioPerformanceTest/Builds/VisualStudio2015/AudioPerformanceTest_App.vcxproj View File

@@ -488,6 +488,9 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LADSPAPluginFormat.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LegacyAudioParameter.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_VST3PluginFormat.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>


+ 3
- 0
extras/AudioPerformanceTest/Builds/VisualStudio2015/AudioPerformanceTest_App.vcxproj.filters View File

@@ -691,6 +691,9 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LADSPAPluginFormat.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LegacyAudioParameter.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_VST3PluginFormat.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>


+ 2
- 0
extras/NetworkGraphicsDemo/Builds/Android/app/CMakeLists.txt View File

@@ -309,6 +309,7 @@ add_library( ${BINARY_NAME}
"../../../../../modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.mm"
"../../../../../modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.cpp"
"../../../../../modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.h"
"../../../../../modules/juce_audio_processors/format_types/juce_LegacyAudioParameter.cpp"
"../../../../../modules/juce_audio_processors/format_types/juce_VST3Common.h"
"../../../../../modules/juce_audio_processors/format_types/juce_VST3Headers.h"
"../../../../../modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp"
@@ -1550,6 +1551,7 @@ set_source_files_properties("../../../../../modules/juce_audio_processors/format
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.mm" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.h" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_LegacyAudioParameter.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_VST3Common.h" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_VST3Headers.h" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)


+ 21
- 3
extras/NetworkGraphicsDemo/Builds/Android/app/src/main/java/com/juce/networkgraphicsdemo/JUCENetworkGraphicsDemo.java View File

@@ -891,19 +891,37 @@ public class JUCENetworkGraphicsDemo extends Activity
private class TreeObserver implements ViewTreeObserver.OnGlobalLayoutListener
{
TreeObserver()
{
keyboardShown = false;
}
@Override
public void onGlobalLayout()
{
Rect r = new Rect();
view.getWindowVisibleDisplayFrame(r);
ViewGroup parentView = (ViewGroup) getParent();
if (parentView == null)
return;
parentView.getWindowVisibleDisplayFrame (r);
int diff = view.getHeight() - (r.bottom - r.top);
int diff = parentView.getHeight() - (r.bottom - r.top);
// Arbitrary threshold, surely keyboard would take more than 20 pix.
if (diff < 20)
if (diff < 20 && keyboardShown)
{
keyboardShown = false;
handleKeyboardHidden (view.host);
}
if (! keyboardShown && diff > 20)
keyboardShown = true;
};
private boolean keyboardShown;
};
private ComponentPeerView view;


+ 3
- 0
extras/NetworkGraphicsDemo/Builds/VisualStudio2013/NetworkGraphicsDemo_App.vcxproj View File

@@ -488,6 +488,9 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LADSPAPluginFormat.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LegacyAudioParameter.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_VST3PluginFormat.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>


+ 3
- 0
extras/NetworkGraphicsDemo/Builds/VisualStudio2013/NetworkGraphicsDemo_App.vcxproj.filters View File

@@ -721,6 +721,9 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LADSPAPluginFormat.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LegacyAudioParameter.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_VST3PluginFormat.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>


+ 3
- 0
extras/NetworkGraphicsDemo/Builds/VisualStudio2017/NetworkGraphicsDemo_App.vcxproj View File

@@ -488,6 +488,9 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LADSPAPluginFormat.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LegacyAudioParameter.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_VST3PluginFormat.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>


+ 3
- 0
extras/NetworkGraphicsDemo/Builds/VisualStudio2017/NetworkGraphicsDemo_App.vcxproj.filters View File

@@ -721,6 +721,9 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LADSPAPluginFormat.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LegacyAudioParameter.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_VST3PluginFormat.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>


+ 2
- 2
extras/UnitTestRunner/Builds/MacOSX/UnitTestRunner.xcodeproj/project.pbxproj View File

@@ -198,7 +198,7 @@
INSTALL_PATH = "/usr/bin";
MACOSX_DEPLOYMENT_TARGET = 10.10;
MACOSX_DEPLOYMENT_TARGET_ppc = 10.4;
OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wstrict-aliasing -Wconversion -Wsign-compare -Woverloaded-virtual -Wextra-semi";
OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wno-missing-field-initializers -Wshadow -Wshorten-64-to-32 -Wstrict-aliasing -Wuninitialized -Wunused-parameter -Wconversion -Wsign-compare -Wint-conversion -Wconditional-uninitialized -Woverloaded-virtual -Wreorder -Wconstant-conversion -Wsign-conversion -Wunused-private-field -Wbool-conversion -Wextra-semi -Wno-ignored-qualifiers -Wunreachable-code";
PRODUCT_BUNDLE_IDENTIFIER = com.roli.UnitTestRunner;
SDKROOT_ppc = macosx10.5;
USE_HEADERMAP = NO; }; name = Debug; };
@@ -231,7 +231,7 @@
LLVM_LTO = YES;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MACOSX_DEPLOYMENT_TARGET_ppc = 10.4;
OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wstrict-aliasing -Wconversion -Wsign-compare -Woverloaded-virtual -Wextra-semi";
OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wno-missing-field-initializers -Wshadow -Wshorten-64-to-32 -Wstrict-aliasing -Wuninitialized -Wunused-parameter -Wconversion -Wsign-compare -Wint-conversion -Wconditional-uninitialized -Woverloaded-virtual -Wreorder -Wconstant-conversion -Wsign-conversion -Wunused-private-field -Wbool-conversion -Wextra-semi -Wno-ignored-qualifiers -Wunreachable-code";
PRODUCT_BUNDLE_IDENTIFIER = com.roli.UnitTestRunner;
SDKROOT_ppc = macosx10.5;
USE_HEADERMAP = NO; }; name = Release; };


+ 3
- 0
extras/UnitTestRunner/Builds/VisualStudio2017/UnitTestRunner_ConsoleApp.vcxproj View File

@@ -502,6 +502,9 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LADSPAPluginFormat.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LegacyAudioParameter.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_VST3PluginFormat.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>


+ 3
- 0
extras/UnitTestRunner/Builds/VisualStudio2017/UnitTestRunner_ConsoleApp.vcxproj.filters View File

@@ -805,6 +805,9 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LADSPAPluginFormat.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LegacyAudioParameter.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_VST3PluginFormat.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>


+ 3
- 0
extras/WindowsDLL/Builds/VisualStudio2017/WindowsDLL_StaticLibrary.vcxproj View File

@@ -487,6 +487,9 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LADSPAPluginFormat.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LegacyAudioParameter.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_VST3PluginFormat.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>


+ 3
- 0
extras/WindowsDLL/Builds/VisualStudio2017/WindowsDLL_StaticLibrary.vcxproj.filters View File

@@ -718,6 +718,9 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LADSPAPluginFormat.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_LegacyAudioParameter.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\format_types\juce_VST3PluginFormat.cpp">
<Filter>JUCE Modules\juce_audio_processors\format_types</Filter>
</ClCompile>


Loading…
Cancel
Save