Browse Source

Refactored the structure of the introjucer's generated code folder, and gave it the ability to embed local copies of modules.

tags/2021-05-28
Julian Storer 14 years ago
parent
commit
81da96f1a2
100 changed files with 641 additions and 2055 deletions
  1. +11
    -55
      extras/Introjucer/Builds/MacOSX/The Introjucer.xcodeproj/project.pbxproj
  2. +0
    -80
      extras/Introjucer/Builds/VisualStudio2005/The Introjucer.vcproj
  3. +0
    -80
      extras/Introjucer/Builds/VisualStudio2008/The Introjucer.vcproj
  4. +0
    -24
      extras/Introjucer/Builds/VisualStudio2010/The Introjucer.vcxproj
  5. +0
    -24
      extras/Introjucer/Builds/VisualStudio2010/The Introjucer.vcxproj.filters
  6. +5
    -0
      extras/Introjucer/JuceLibraryCode/AppConfig.h
  7. +8
    -8
      extras/Introjucer/JuceLibraryCode/JuceHeader.h
  8. +5
    -0
      extras/Introjucer/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h
  9. +5
    -0
      extras/Introjucer/JuceLibraryCode/modules/juce_core/juce_core.h
  10. +5
    -0
      extras/Introjucer/JuceLibraryCode/modules/juce_cryptography/juce_cryptography.h
  11. +5
    -0
      extras/Introjucer/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h
  12. +5
    -0
      extras/Introjucer/JuceLibraryCode/modules/juce_events/juce_events.h
  13. +5
    -0
      extras/Introjucer/JuceLibraryCode/modules/juce_graphics/juce_graphics.h
  14. +5
    -0
      extras/Introjucer/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h
  15. +5
    -0
      extras/Introjucer/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h
  16. +126
    -111
      extras/Introjucer/Source/Project/jucer_Module.cpp
  17. +5
    -8
      extras/Introjucer/Source/Project/jucer_Module.h
  18. +5
    -0
      extras/Introjucer/Source/Project/jucer_Project.cpp
  19. +1
    -0
      extras/Introjucer/Source/Project/jucer_Project.h
  20. +26
    -28
      extras/Introjucer/Source/Project/jucer_ProjectExport_XCode.h
  21. +1
    -0
      extras/Introjucer/Source/Project/jucer_ProjectExporter.h
  22. +1
    -1
      extras/Introjucer/Source/Project/jucer_ProjectInformationComponent.cpp
  23. +28
    -61
      extras/Introjucer/Source/Project/jucer_ProjectSaver.h
  24. +1
    -1
      extras/Introjucer/Source/Utility/jucer_CodeHelpers.h
  25. +17
    -45
      extras/JuceDemo/Builds/MacOSX/Juce Demo.xcodeproj/project.pbxproj
  26. +0
    -140
      extras/JuceDemo/Builds/VisualStudio2005/Juce Demo.vcproj
  27. +0
    -140
      extras/JuceDemo/Builds/VisualStudio2008/Juce Demo.vcproj
  28. +0
    -42
      extras/JuceDemo/Builds/VisualStudio2010/Juce Demo.vcxproj
  29. +0
    -42
      extras/JuceDemo/Builds/VisualStudio2010/Juce Demo.vcxproj.filters
  30. +17
    -45
      extras/JuceDemo/Builds/iOS/Juce Demo.xcodeproj/project.pbxproj
  31. +5
    -0
      extras/JuceDemo/JuceLibraryCode/AppConfig.h
  32. +14
    -14
      extras/JuceDemo/JuceLibraryCode/JuceHeader.h
  33. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h
  34. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h
  35. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h
  36. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h
  37. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.h
  38. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_core/juce_core.h
  39. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_cryptography/juce_cryptography.h
  40. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h
  41. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_events/juce_events.h
  42. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_graphics/juce_graphics.h
  43. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h
  44. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h
  45. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_opengl/juce_opengl.h
  46. +5
    -0
      extras/JuceDemo/JuceLibraryCode/modules/juce_video/juce_video.h
  47. +15
    -55
      extras/audio plugin demo/Builds/MacOSX/JuceDemoPlugin.xcodeproj/project.pbxproj
  48. +0
    -110
      extras/audio plugin demo/Builds/VisualStudio2005/JuceDemoPlugin.vcproj
  49. +0
    -110
      extras/audio plugin demo/Builds/VisualStudio2008/JuceDemoPlugin.vcproj
  50. +5
    -0
      extras/audio plugin demo/JuceLibraryCode/AppConfig.h
  51. +11
    -11
      extras/audio plugin demo/JuceLibraryCode/JuceHeader.h
  52. +5
    -0
      extras/audio plugin demo/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h
  53. +5
    -0
      extras/audio plugin demo/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h
  54. +5
    -0
      extras/audio plugin demo/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h
  55. +5
    -0
      extras/audio plugin demo/JuceLibraryCode/modules/juce_audio_plugin_client/juce_audio_plugin_client.h
  56. +5
    -0
      extras/audio plugin demo/JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h
  57. +5
    -0
      extras/audio plugin demo/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.h
  58. +5
    -0
      extras/audio plugin demo/JuceLibraryCode/modules/juce_core/juce_core.h
  59. +5
    -0
      extras/audio plugin demo/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h
  60. +5
    -0
      extras/audio plugin demo/JuceLibraryCode/modules/juce_events/juce_events.h
  61. +5
    -0
      extras/audio plugin demo/JuceLibraryCode/modules/juce_graphics/juce_graphics.h
  62. +5
    -0
      extras/audio plugin demo/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h
  63. +14
    -40
      extras/audio plugin host/Builds/MacOSX/Plugin Host.xcodeproj/project.pbxproj
  64. +0
    -130
      extras/audio plugin host/Builds/VisualStudio2005/Plugin Host.vcproj
  65. +0
    -130
      extras/audio plugin host/Builds/VisualStudio2008/Plugin Host.vcproj
  66. +5
    -0
      extras/audio plugin host/JuceLibraryCode/AppConfig.h
  67. +13
    -13
      extras/audio plugin host/JuceLibraryCode/JuceHeader.h
  68. +5
    -0
      extras/audio plugin host/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h
  69. +5
    -0
      extras/audio plugin host/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h
  70. +5
    -0
      extras/audio plugin host/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h
  71. +5
    -0
      extras/audio plugin host/JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h
  72. +5
    -0
      extras/audio plugin host/JuceLibraryCode/modules/juce_core/juce_core.h
  73. +5
    -0
      extras/audio plugin host/JuceLibraryCode/modules/juce_cryptography/juce_cryptography.h
  74. +5
    -0
      extras/audio plugin host/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h
  75. +5
    -0
      extras/audio plugin host/JuceLibraryCode/modules/juce_events/juce_events.h
  76. +5
    -0
      extras/audio plugin host/JuceLibraryCode/modules/juce_graphics/juce_graphics.h
  77. +5
    -0
      extras/audio plugin host/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h
  78. +5
    -0
      extras/audio plugin host/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h
  79. +5
    -0
      extras/audio plugin host/JuceLibraryCode/modules/juce_opengl/juce_opengl.h
  80. +5
    -0
      extras/audio plugin host/JuceLibraryCode/modules/juce_video/juce_video.h
  81. +3
    -45
      extras/binarybuilder/Builds/MacOSX/BinaryBuilder.xcodeproj/project.pbxproj
  82. +0
    -10
      extras/binarybuilder/Builds/VisualStudio2008/BinaryBuilder.vcproj
  83. +5
    -0
      extras/binarybuilder/JuceLibraryCode/AppConfig.h
  84. +1
    -1
      extras/binarybuilder/JuceLibraryCode/JuceHeader.h
  85. +7
    -47
      extras/example projects/Builds/MacOSX/HelloWorld.xcodeproj/project.pbxproj
  86. +0
    -60
      extras/example projects/Builds/VisualStudio2005/HelloWorld.vcproj
  87. +0
    -60
      extras/example projects/Builds/VisualStudio2008/HelloWorld.vcproj
  88. +7
    -31
      extras/example projects/Builds/iOS/HelloWorld.xcodeproj/project.pbxproj
  89. +5
    -0
      extras/example projects/JuceLibraryCode/AppConfig.h
  90. +6
    -6
      extras/example projects/JuceLibraryCode/JuceHeader.h
  91. +5
    -0
      extras/example projects/JuceLibraryCode/modules/juce_core/juce_core.h
  92. +5
    -0
      extras/example projects/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h
  93. +5
    -0
      extras/example projects/JuceLibraryCode/modules/juce_events/juce_events.h
  94. +5
    -0
      extras/example projects/JuceLibraryCode/modules/juce_graphics/juce_graphics.h
  95. +5
    -0
      extras/example projects/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h
  96. +5
    -0
      extras/example projects/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h
  97. +13
    -39
      extras/static library/Builds/MacOSX/juce.xcodeproj/project.pbxproj
  98. +0
    -130
      extras/static library/Builds/VisualStudio2008/juce.vcproj
  99. +0
    -39
      extras/static library/Builds/VisualStudio2010/juce.vcxproj
  100. +0
    -39
      extras/static library/Builds/VisualStudio2010/juce.vcxproj.filters

+ 11
- 55
extras/Introjucer/Builds/MacOSX/The Introjucer.xcodeproj/project.pbxproj View File

@@ -6,19 +6,12 @@
objectVersion = 45;
objects = {

1FD6A59398E3618F79475867 = { isa = PBXBuildFile; fileRef = 7F7CD03CC6CBD53B9AE30DBE; };
B703C44375C75E5AB099E74A = { isa = PBXBuildFile; fileRef = FF3527B263731DA3B2DB6450; };
7BDFF9F0E16DF33A980F46DC = { isa = PBXBuildFile; fileRef = 7D8D7D8AC472502272591DFB; };
52A4EFC1F732A9D5BBB61AF5 = { isa = PBXBuildFile; fileRef = 485B66C52493476757450237; };
C65112B26E0BB0BB8DBD3F3C = { isa = PBXBuildFile; fileRef = 330EBB8E11453A27C3F58ED4; };
2C3270317859BA6DF8EC1458 = { isa = PBXBuildFile; fileRef = 26CAE6E8D9CAC6A67199E33F; };
022036CBB0FBE47C417A6222 = { isa = PBXBuildFile; fileRef = 80689E20F60E2A6AC7E3BF54; };
AA7B50F22523465B07D4A25B = { isa = PBXBuildFile; fileRef = D6C6D91C28F8B45F20F3F352; };
93C9F3F27602A33DDC9C2250 = { isa = PBXBuildFile; fileRef = D6706C60A77E395336BC88AD; };
DBE3CE9482B19CF1AE700805 = { isa = PBXBuildFile; fileRef = 49A40DA9469762789A5CD439; };
2E6836738CE7EB452FDC7E9A = { isa = PBXBuildFile; fileRef = 9234F2AA19F1DF3FD9A13EE2; };
E63745F5956C698352A2ACA0 = { isa = PBXBuildFile; fileRef = 6FEB5562F7D3E7DD9CF1840D; };
AADBA9EB828F8C6A5E38593B = { isa = PBXBuildFile; fileRef = 3417A0C1AE7900A7E07C1CA1; };
AADBA9EB828F8C6A5E38593B = { isa = PBXBuildFile; fileRef = C3DCFE03DB784CAC7DBFE8FF; };
D6D0659F3F3504012246F13D = { isa = PBXBuildFile; fileRef = EDF6A215415DAF25E643D882; };
8BAE4D8EA7F247DA0A4D3A5C = { isa = PBXBuildFile; fileRef = 5B81C9AB06E185F1B4F5203C; };
280FE650B3F02AD9E821EA37 = { isa = PBXBuildFile; fileRef = CBEB6CFBC0F5C383D76FB493; };
@@ -52,17 +45,10 @@
8C7FD2BFE94F649CBECA4323 = { isa = PBXBuildFile; fileRef = 91F70BCC36E7162D4DD3589A; };
D94D1F263F3DE818BB387676 = { isa = PBXBuildFile; fileRef = 94CD5995FBC15E717C5DA070; };
FE69843277486B2194211A67 = { isa = PBXBuildFile; fileRef = ADB1B179979FB55F902EFFDD; };
7F7CD03CC6CBD53B9AE30DBE = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
FF3527B263731DA3B2DB6450 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
7D8D7D8AC472502272591DFB = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
485B66C52493476757450237 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
330EBB8E11453A27C3F58ED4 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
26CAE6E8D9CAC6A67199E33F = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiscRecording.framework; path = System/Library/Frameworks/DiscRecording.framework; sourceTree = SDKROOT; };
80689E20F60E2A6AC7E3BF54 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
D6C6D91C28F8B45F20F3F352 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
D6706C60A77E395336BC88AD = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = System/Library/Frameworks/QTKit.framework; sourceTree = SDKROOT; };
49A40DA9469762789A5CD439 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
9234F2AA19F1DF3FD9A13EE2 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = System/Library/Frameworks/QuickTime.framework; sourceTree = SDKROOT; };
6FEB5562F7D3E7DD9CF1840D = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
12E1601866B3489844AFD645 = { isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Introjucer.app; sourceTree = "BUILT_PRODUCTS_DIR"; };
82D5351521616A5766EDFF9C = { isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Info.plist; sourceTree = "SOURCE_ROOT"; };
@@ -179,7 +165,6 @@
FC73AA046536348A2049BFB7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Synthesiser.h"; path = "../../../../modules/juce_audio_basics/synthesisers/juce_Synthesiser.h"; sourceTree = "SOURCE_ROOT"; };
B608227C15B500ADB6A94090 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
3F0F7145BCBB4CBB431CBE5F = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_basics.h"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.h"; sourceTree = "SOURCE_ROOT"; };
78598771B805D57F7909AE92 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_basics.mm"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
8E0BD043BD8DE112F37D56E5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CharacterFunctions.cpp"; path = "../../../../modules/juce_core/text/juce_CharacterFunctions.cpp"; sourceTree = "SOURCE_ROOT"; };
E85A8D1F985B43C287A5D340 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharacterFunctions.h"; path = "../../../../modules/juce_core/text/juce_CharacterFunctions.h"; sourceTree = "SOURCE_ROOT"; };
1B66B138A9EA0DAD7332A29C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharPointer_ASCII.h"; path = "../../../../modules/juce_core/text/juce_CharPointer_ASCII.h"; sourceTree = "SOURCE_ROOT"; };
@@ -354,7 +339,6 @@
9B0CA2AB799D1B54B29E02DA = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Threads.cpp"; path = "../../../../modules/juce_core/native/juce_win32_Threads.cpp"; sourceTree = "SOURCE_ROOT"; };
3D0A7EBDEE7C1D16D6D494A5 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_core/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
B210710CC3F6B77C94F006DF = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_core.h"; path = "../../../../modules/juce_core/juce_core.h"; sourceTree = "SOURCE_ROOT"; };
FA1DFB3D7FCAE3EF609C1BC7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../../../modules/juce_core/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
3FFBEAC8B51F89C401BB0DE6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_BlowFish.cpp"; path = "../../../../modules/juce_cryptography/encryption/juce_BlowFish.cpp"; sourceTree = "SOURCE_ROOT"; };
6E4B6E3676892BB3F3746C7C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BlowFish.h"; path = "../../../../modules/juce_cryptography/encryption/juce_BlowFish.h"; sourceTree = "SOURCE_ROOT"; };
A5CE537220A567429BA3986B = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Primes.cpp"; path = "../../../../modules/juce_cryptography/encryption/juce_Primes.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -367,7 +351,6 @@
C71D236C11447114B85303F0 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SHA256.h"; path = "../../../../modules/juce_cryptography/hashing/juce_SHA256.h"; sourceTree = "SOURCE_ROOT"; };
101400236FBF8E4F975B9437 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_cryptography/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
5DACC59C6D6CCC9BBC992D95 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_cryptography.h"; path = "../../../../modules/juce_cryptography/juce_cryptography.h"; sourceTree = "SOURCE_ROOT"; };
D27F04669C4196045345ED5E = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_cryptography.mm"; path = "../../../../modules/juce_cryptography/juce_cryptography.mm"; sourceTree = "SOURCE_ROOT"; };
0BBC4CAF00E50D520EC9D65E = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Value.cpp"; path = "../../../../modules/juce_data_structures/values/juce_Value.cpp"; sourceTree = "SOURCE_ROOT"; };
B16CF569A298AFF9718CA83B = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Value.h"; path = "../../../../modules/juce_data_structures/values/juce_Value.h"; sourceTree = "SOURCE_ROOT"; };
B437347DED120EBA1668FBE0 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ValueTree.cpp"; path = "../../../../modules/juce_data_structures/values/juce_ValueTree.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -381,7 +364,6 @@
BDC50F2787F678CDA337D8A0 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PropertiesFile.h"; path = "../../../../modules/juce_data_structures/app_properties/juce_PropertiesFile.h"; sourceTree = "SOURCE_ROOT"; };
6194E39B9025103313347D99 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_data_structures/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
AF0F7EF0452BBF5028488641 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_data_structures.h"; path = "../../../../modules/juce_data_structures/juce_data_structures.h"; sourceTree = "SOURCE_ROOT"; };
95DAEA601BF4DD69387C58D7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_data_structures.mm"; path = "../../../../modules/juce_data_structures/juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
49C3523B7A472D135206E21F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ApplicationBase.cpp"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.cpp"; sourceTree = "SOURCE_ROOT"; };
38266986AC3530E16250A385 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationBase.h"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.h"; sourceTree = "SOURCE_ROOT"; };
F40F704090A699ED342C7A15 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CallbackMessage.h"; path = "../../../../modules/juce_events/messages/juce_CallbackMessage.h"; sourceTree = "SOURCE_ROOT"; };
@@ -420,7 +402,6 @@
C829B3F27EE54F9EAE7A932D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Messaging.cpp"; path = "../../../../modules/juce_events/native/juce_win32_Messaging.cpp"; sourceTree = "SOURCE_ROOT"; };
A3DBA753F09AB1888BCBC7E3 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_events/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
AA6895F2524AA5105A313A99 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_events.h"; path = "../../../../modules/juce_events/juce_events.h"; sourceTree = "SOURCE_ROOT"; };
4C56A019D5EEB80C6D478BD4 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_events.mm"; path = "../../../../modules/juce_events/juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
6CC1352A385FEA82D61AF6C2 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Colour.cpp"; path = "../../../../modules/juce_graphics/colour/juce_Colour.cpp"; sourceTree = "SOURCE_ROOT"; };
4E50B4DBD471E04B388A109A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Colour.h"; path = "../../../../modules/juce_graphics/colour/juce_Colour.h"; sourceTree = "SOURCE_ROOT"; };
122A23E5ECD5FE68C6B39E1E = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ColourGradient.cpp"; path = "../../../../modules/juce_graphics/colour/juce_ColourGradient.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -494,7 +475,6 @@
26196A2CAB08A681505005EA = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Fonts.cpp"; path = "../../../../modules/juce_graphics/native/juce_win32_Fonts.cpp"; sourceTree = "SOURCE_ROOT"; };
45161E60C5F02FAA094125F9 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_graphics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
503860E4106A66C1260E0409 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_graphics.h"; path = "../../../../modules/juce_graphics/juce_graphics.h"; sourceTree = "SOURCE_ROOT"; };
91F70BCC36E7162D4DD3589A = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_graphics.mm"; path = "../../../../modules/juce_graphics/juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
E2D88888A5209FB8C7F7BE85 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Component.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_Component.cpp"; sourceTree = "SOURCE_ROOT"; };
7F8D48E41015AF77D494DDAB = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Component.h"; path = "../../../../modules/juce_gui_basics/components/juce_Component.h"; sourceTree = "SOURCE_ROOT"; };
386B2AF336F5C312E6678456 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentListener.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_ComponentListener.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -739,7 +719,6 @@
9B991F88834B1623B2BB596D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Windowing.cpp"; path = "../../../../modules/juce_gui_basics/native/juce_win32_Windowing.cpp"; sourceTree = "SOURCE_ROOT"; };
C8E5B3576D8C709811084EB7 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
7803667A7E057C5393C1A117 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_basics.h"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.h"; sourceTree = "SOURCE_ROOT"; };
94CD5995FBC15E717C5DA070 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_basics.mm"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
1632DC74510E226841E95D7D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeDocument.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.cpp"; sourceTree = "SOURCE_ROOT"; };
BBAB8F8BA557226B7E3223D0 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CodeDocument.h"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.h"; sourceTree = "SOURCE_ROOT"; };
711C588DED11BD4F56114A48 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeEditorComponent.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -784,7 +763,6 @@
6C1AD461F97E70D07C6D9ED4 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WebBrowserComponent.cpp"; path = "../../../../modules/juce_gui_extra/native/juce_win32_WebBrowserComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
7C941BC465E7F3C32E199E35 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_extra/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
A428465B3ED758CB651A675F = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_extra.h"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.h"; sourceTree = "SOURCE_ROOT"; };
ADB1B179979FB55F902EFFDD = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_extra.mm"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.mm"; sourceTree = "SOURCE_ROOT"; };
C82ADD55EB91E34E5BF15F8B = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = "SOURCE_ROOT"; };
13C2F4340AD40DDAB1521007 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BinaryData.cpp; path = ../../JuceLibraryCode/BinaryData.cpp; sourceTree = "SOURCE_ROOT"; };
21238F019A9CE6203F6EE6A3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = BinaryData.h; path = ../../JuceLibraryCode/BinaryData.h; sourceTree = "SOURCE_ROOT"; };
@@ -930,8 +908,7 @@
FCA9145D7E14445C4F26943F,
C0081AE70E243505D0A12F2A,
B608227C15B500ADB6A94090,
3F0F7145BCBB4CBB431CBE5F,
78598771B805D57F7909AE92 ); name = "juce_audio_basics"; sourceTree = "<group>"; };
3F0F7145BCBB4CBB431CBE5F ); name = "juce_audio_basics"; sourceTree = "<group>"; };
80242E1E1D9538C20BB4B53C = { isa = PBXGroup; children = (
8E0BD043BD8DE112F37D56E5,
E85A8D1F985B43C287A5D340,
@@ -1140,8 +1117,7 @@
C69596E05C3760523A2064DF,
C4AEE8D5F187CC1CC363465D,
3D0A7EBDEE7C1D16D6D494A5,
B210710CC3F6B77C94F006DF,
FA1DFB3D7FCAE3EF609C1BC7 ); name = "juce_core"; sourceTree = "<group>"; };
B210710CC3F6B77C94F006DF ); name = "juce_core"; sourceTree = "<group>"; };
CEE87DE72E5314B876FF4F90 = { isa = PBXGroup; children = (
3FFBEAC8B51F89C401BB0DE6,
6E4B6E3676892BB3F3746C7C,
@@ -1158,8 +1134,7 @@
CEE87DE72E5314B876FF4F90,
D1CE77A4E642B29A5A77A54E,
101400236FBF8E4F975B9437,
5DACC59C6D6CCC9BBC992D95,
D27F04669C4196045345ED5E ); name = "juce_cryptography"; sourceTree = "<group>"; };
5DACC59C6D6CCC9BBC992D95 ); name = "juce_cryptography"; sourceTree = "<group>"; };
759DCBADDF9FFEBE6C666333 = { isa = PBXGroup; children = (
0BBC4CAF00E50D520EC9D65E,
B16CF569A298AFF9718CA83B,
@@ -1179,8 +1154,7 @@
FDDC1DCD9B5FC439195E9E80,
DB99A8672A4EE39790FFF232,
6194E39B9025103313347D99,
AF0F7EF0452BBF5028488641,
95DAEA601BF4DD69387C58D7 ); name = "juce_data_structures"; sourceTree = "<group>"; };
AF0F7EF0452BBF5028488641 ); name = "juce_data_structures"; sourceTree = "<group>"; };
EF5CC579D3ED1088C36004E8 = { isa = PBXGroup; children = (
49C3523B7A472D135206E21F,
38266986AC3530E16250A385,
@@ -1229,8 +1203,7 @@
E59D69D389F0CBA4A0901119,
FB5100D0BCB7CEACC9CE23B1,
A3DBA753F09AB1888BCBC7E3,
AA6895F2524AA5105A313A99,
4C56A019D5EEB80C6D478BD4 ); name = "juce_events"; sourceTree = "<group>"; };
AA6895F2524AA5105A313A99 ); name = "juce_events"; sourceTree = "<group>"; };
6F0D317C610E3513C4DD30BF = { isa = PBXGroup; children = (
6CC1352A385FEA82D61AF6C2,
4E50B4DBD471E04B388A109A,
@@ -1322,8 +1295,7 @@
19449BE5F993336C3D2BC421,
28C7DD61CA7C731A7392B3DF,
45161E60C5F02FAA094125F9,
503860E4106A66C1260E0409,
91F70BCC36E7162D4DD3589A ); name = "juce_graphics"; sourceTree = "<group>"; };
503860E4106A66C1260E0409 ); name = "juce_graphics"; sourceTree = "<group>"; };
AEF52813D24A105AC5ABC8A6 = { isa = PBXGroup; children = (
E2D88888A5209FB8C7F7BE85,
7F8D48E41015AF77D494DDAB,
@@ -1602,8 +1574,7 @@
F04B6F163B25D6AB40B76D36,
9CCF747CA4B0E1D164B7010C,
C8E5B3576D8C709811084EB7,
7803667A7E057C5393C1A117,
94CD5995FBC15E717C5DA070 ); name = "juce_gui_basics"; sourceTree = "<group>"; };
7803667A7E057C5393C1A117 ); name = "juce_gui_basics"; sourceTree = "<group>"; };
96760944139882DCEC6CA4AD = { isa = PBXGroup; children = (
1632DC74510E226841E95D7D,
BBAB8F8BA557226B7E3223D0,
@@ -1660,8 +1631,7 @@
A834BD29C255D5BDD21D08D0,
F3F272E6AF7A0F8E321CDC7A,
7C941BC465E7F3C32E199E35,
A428465B3ED758CB651A675F,
ADB1B179979FB55F902EFFDD ); name = "juce_gui_extra"; sourceTree = "<group>"; };
A428465B3ED758CB651A675F ); name = "juce_gui_extra"; sourceTree = "<group>"; };
CEE72D9CA28977AB920B6CFC = { isa = PBXGroup; children = (
2236CCA6721140A551F78C66,
33D986B20E738CE9477E3073,
@@ -1685,20 +1655,13 @@
ADB1B179979FB55F902EFFDD,
DAA58C67379104E12EE38993 ); name = "Juce Library Code"; sourceTree = "<group>"; };
EAC5B9DBB227CB2A002EF355 = { isa = PBXGroup; children = (
F4C5CF1AA7EB9298043D89D3,
3417A0C1AE7900A7E07C1CA1 ); name = Resources; sourceTree = "<group>"; };
82D5351521616A5766EDFF9C,
C3DCFE03DB784CAC7DBFE8FF ); name = Resources; sourceTree = "<group>"; };
0D737FA088906E13707BAEB7 = { isa = PBXGroup; children = (
7F7CD03CC6CBD53B9AE30DBE,
FF3527B263731DA3B2DB6450,
7D8D7D8AC472502272591DFB,
485B66C52493476757450237,
330EBB8E11453A27C3F58ED4,
26CAE6E8D9CAC6A67199E33F,
80689E20F60E2A6AC7E3BF54,
D6C6D91C28F8B45F20F3F352,
D6706C60A77E395336BC88AD,
49A40DA9469762789A5CD439,
9234F2AA19F1DF3FD9A13EE2,
6FEB5562F7D3E7DD9CF1840D ); name = Frameworks; sourceTree = "<group>"; };
18794C3CE7D0C95A5A70F213 = { isa = PBXGroup; children = (
12E1601866B3489844AFD645 ); name = Products; sourceTree = "<group>"; };
@@ -1814,17 +1777,10 @@
D94D1F263F3DE818BB387676,
FE69843277486B2194211A67 ); runOnlyForDeploymentPostprocessing = 0; };
08881173C882953BE5F11D6C = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
1FD6A59398E3618F79475867,
B703C44375C75E5AB099E74A,
7BDFF9F0E16DF33A980F46DC,
52A4EFC1F732A9D5BBB61AF5,
C65112B26E0BB0BB8DBD3F3C,
2C3270317859BA6DF8EC1458,
022036CBB0FBE47C417A6222,
AA7B50F22523465B07D4A25B,
93C9F3F27602A33DDC9C2250,
DBE3CE9482B19CF1AE700805,
2E6836738CE7EB452FDC7E9A,
E63745F5956C698352A2ACA0 ); runOnlyForDeploymentPostprocessing = 0; };
EB946A866C16B958168C9A39 = { isa = PBXNativeTarget; buildConfigurationList = AC9DE3D3A6632D0494CC8609; buildPhases = (
87CCE4CB1FAB40B6F21DEACE,


+ 0
- 80
extras/Introjucer/Builds/VisualStudio2005/The Introjucer.vcproj View File

@@ -533,16 +533,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_core">
<Filter Name="text">
@@ -1365,16 +1355,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.h"/>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_cryptography">
<Filter Name="encryption">
@@ -1447,16 +1427,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.h"/>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_data_structures">
<Filter Name="values">
@@ -1532,16 +1502,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.h"/>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_events">
<Filter Name="messages">
@@ -1736,16 +1696,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.h"/>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_graphics">
<Filter Name="colour">
@@ -2154,16 +2104,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.h"/>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_basics">
<Filter Name="components">
@@ -3488,16 +3428,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_extra">
<Filter Name="code_editor">
@@ -3727,16 +3657,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
</Filter>
<Filter Name="Juce Library Code">


+ 0
- 80
extras/Introjucer/Builds/VisualStudio2008/The Introjucer.vcproj View File

@@ -533,16 +533,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_core">
<Filter Name="text">
@@ -1365,16 +1355,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.h"/>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_cryptography">
<Filter Name="encryption">
@@ -1447,16 +1427,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.h"/>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_data_structures">
<Filter Name="values">
@@ -1532,16 +1502,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.h"/>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_events">
<Filter Name="messages">
@@ -1736,16 +1696,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.h"/>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_graphics">
<Filter Name="colour">
@@ -2154,16 +2104,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.h"/>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_basics">
<Filter Name="components">
@@ -3488,16 +3428,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_extra">
<Filter Name="code_editor">
@@ -3727,16 +3657,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
</Filter>
<Filter Name="Juce Library Code">


+ 0
- 24
extras/Introjucer/Builds/VisualStudio2010/The Introjucer.vcxproj View File

@@ -212,9 +212,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\synthesisers\juce_Synthesiser.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\text\juce_CharacterFunctions.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -416,9 +413,6 @@
<ClCompile Include="..\..\..\..\modules\juce_core\native\juce_win32_Threads.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -434,9 +428,6 @@
<ClCompile Include="..\..\..\..\modules\juce_cryptography\hashing\juce_SHA256.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\juce_cryptography.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_Value.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -452,9 +443,6 @@
<ClCompile Include="..\..\..\..\modules\juce_data_structures\app_properties\juce_PropertiesFile.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_events\messages\juce_ApplicationBase.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -500,9 +488,6 @@
<ClCompile Include="..\..\..\..\modules\juce_events\native\juce_win32_Messaging.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_events\juce_events.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_graphics\colour\juce_Colour.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -605,9 +590,6 @@
<ClCompile Include="..\..\..\..\modules\juce_graphics\native\juce_win32_Fonts.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\components\juce_Component.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -953,9 +935,6 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\native\juce_win32_Windowing.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\code_editor\juce_CodeDocument.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -1010,9 +989,6 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\native\juce_win32_WebBrowserComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\BinaryData.cpp"/>
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp"/>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp"/>


+ 0
- 24
extras/Introjucer/Builds/VisualStudio2010/The Introjucer.vcxproj.filters View File

@@ -394,9 +394,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\juce_module_info">
<Filter>Juce Modules\juce_audio_basics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<Filter>Juce Modules\juce_audio_basics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\text\juce_CharacterFunctions.cpp">
<Filter>Juce Modules\juce_core\text</Filter>
</ClCompile>
@@ -616,9 +613,6 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_module_info">
<Filter>Juce Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<Filter>Juce Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>Juce Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@@ -637,9 +631,6 @@
<ClCompile Include="..\..\..\..\modules\juce_cryptography\juce_module_info">
<Filter>Juce Modules\juce_cryptography</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\juce_cryptography.cpp">
<Filter>Juce Modules\juce_cryptography</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_Value.cpp">
<Filter>Juce Modules\juce_data_structures\values</Filter>
</ClCompile>
@@ -658,9 +649,6 @@
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_module_info">
<Filter>Juce Modules\juce_data_structures</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<Filter>Juce Modules\juce_data_structures</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_events\messages\juce_ApplicationBase.cpp">
<Filter>Juce Modules\juce_events\messages</Filter>
</ClCompile>
@@ -715,9 +703,6 @@
<ClCompile Include="..\..\..\..\modules\juce_events\juce_module_info">
<Filter>Juce Modules\juce_events</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_events\juce_events.cpp">
<Filter>Juce Modules\juce_events</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_graphics\colour\juce_Colour.cpp">
<Filter>Juce Modules\juce_graphics\colour</Filter>
</ClCompile>
@@ -829,9 +814,6 @@
<ClCompile Include="..\..\..\..\modules\juce_graphics\juce_module_info">
<Filter>Juce Modules\juce_graphics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<Filter>Juce Modules\juce_graphics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\components\juce_Component.cpp">
<Filter>Juce Modules\juce_gui_basics\components</Filter>
</ClCompile>
@@ -1201,9 +1183,6 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\juce_module_info">
<Filter>Juce Modules\juce_gui_basics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<Filter>Juce Modules\juce_gui_basics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\code_editor\juce_CodeDocument.cpp">
<Filter>Juce Modules\juce_gui_extra\code_editor</Filter>
</ClCompile>
@@ -1276,9 +1255,6 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\juce_module_info">
<Filter>Juce Modules\juce_gui_extra</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<Filter>Juce Modules\juce_gui_extra</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\BinaryData.cpp">
<Filter>Juce Library Code</Filter>
</ClCompile>


+ 5
- 0
extras/Introjucer/JuceLibraryCode/AppConfig.h View File

@@ -10,6 +10,9 @@
*/
#ifndef __JUCE_APPCONFIG_M70QFTRRK__
#define __JUCE_APPCONFIG_M70QFTRRK__
//==============================================================================
#define JUCE_MODULE_AVAILABLE_juce_audio_basics 1
#define JUCE_MODULE_AVAILABLE_juce_core 1
@@ -45,3 +48,5 @@
// juce_gui_extra flags:
//#define JUCE_WEB_BROWSER
#endif // __JUCE_APPCONFIG_M70QFTRRK__

+ 8
- 8
extras/Introjucer/JuceLibraryCode/JuceHeader.h View File

@@ -14,14 +14,14 @@
#define __APPHEADERFILE_M70QFTRRK__
#include "AppConfig.h"
#include "../../../modules/juce_audio_basics/juce_audio_basics.h"
#include "../../../modules/juce_core/juce_core.h"
#include "../../../modules/juce_cryptography/juce_cryptography.h"
#include "../../../modules/juce_data_structures/juce_data_structures.h"
#include "../../../modules/juce_events/juce_events.h"
#include "../../../modules/juce_graphics/juce_graphics.h"
#include "../../../modules/juce_gui_basics/juce_gui_basics.h"
#include "../../../modules/juce_gui_extra/juce_gui_extra.h"
#include "modules/juce_audio_basics/juce_audio_basics.h"
#include "modules/juce_core/juce_core.h"
#include "modules/juce_cryptography/juce_cryptography.h"
#include "modules/juce_data_structures/juce_data_structures.h"
#include "modules/juce_events/juce_events.h"
#include "modules/juce_graphics/juce_graphics.h"
#include "modules/juce_gui_basics/juce_gui_basics.h"
#include "modules/juce_gui_extra/juce_gui_extra.h"
#include "BinaryData.h"
#if ! DONT_SET_USING_JUCE_NAMESPACE


+ 5
- 0
extras/Introjucer/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_basics/juce_audio_basics.h"

+ 5
- 0
extras/Introjucer/JuceLibraryCode/modules/juce_core/juce_core.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_core/juce_core.h"

+ 5
- 0
extras/Introjucer/JuceLibraryCode/modules/juce_cryptography/juce_cryptography.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_cryptography/juce_cryptography.h"

+ 5
- 0
extras/Introjucer/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_data_structures/juce_data_structures.h"

+ 5
- 0
extras/Introjucer/JuceLibraryCode/modules/juce_events/juce_events.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_events/juce_events.h"

+ 5
- 0
extras/Introjucer/JuceLibraryCode/modules/juce_graphics/juce_graphics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_graphics/juce_graphics.h"

+ 5
- 0
extras/Introjucer/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_gui_basics/juce_gui_basics.h"

+ 5
- 0
extras/Introjucer/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_gui_extra/juce_gui_extra.h"

+ 126
- 111
extras/Introjucer/Source/Project/jucer_Module.cpp View File

@@ -169,26 +169,121 @@ bool LibraryModule::isPluginClient() const { return get
bool LibraryModule::isAUPluginHost (const Project& project) const { return getID() == "juce_audio_processors" && project.isConfigFlagEnabled ("JUCE_PLUGINHOST_AU"); }
bool LibraryModule::isVSTPluginHost (const Project& project) const { return getID() == "juce_audio_processors" && project.isConfigFlagEnabled ("JUCE_PLUGINHOST_VST"); }
File LibraryModule::getLocalIncludeFolder (ProjectSaver& projectSaver) const
{
return projectSaver.getGeneratedCodeFolder().getChildFile ("modules").getChildFile (getID());
}
File LibraryModule::getInclude (const File& folder) const
{
return folder.getChildFile (moduleInfo ["include"]);
}
RelativePath LibraryModule::getModuleRelativeToProject (ProjectExporter& exporter) const
{
return RelativePath (exporter.getJuceFolder().toString(), RelativePath::projectFolder)
.getChildFile ("modules")
.getChildFile (getID());
}
//==============================================================================
void LibraryModule::writeIncludes (ProjectSaver& projectSaver, OutputStream& out)
{
File header (getInclude (getModuleTargetFolder (projectSaver)));
const File localModuleFolder (getLocalIncludeFolder (projectSaver));
const File localHeader (getInclude (localModuleFolder));
if (projectSaver.getProject().shouldCopyModuleFilesLocally (getID()).getValue())
{
moduleFolder.copyDirectoryTo (localModuleFolder);
}
else
{
localModuleFolder.createDirectory();
createLocalHeaderWrapper (projectSaver, getInclude (moduleFolder), localHeader);
}
out << CodeHelpers::createIncludeStatement (localHeader, projectSaver.getGeneratedCodeFolder().getChildFile ("AppConfig.h")) << newLine;
}
static void writeGuardedInclude (OutputStream& out, StringArray paths, StringArray guards)
{
StringArray uniquePaths (paths);
uniquePaths.removeDuplicates (false);
if (uniquePaths.size() == 1)
{
out << "#include " << paths[0] << newLine;
}
else
{
int i = paths.size();
for (; --i >= 0;)
{
for (int j = i; --j >= 0;)
{
if (paths[i] == paths[j] && guards[i] == guards[j])
{
paths.remove (i);
guards.remove (i);
}
}
}
for (i = 0; i < paths.size(); ++i)
{
out << (i == 0 ? "#if " : "#elif ") << guards[i] << newLine
<< " #include " << paths[i] << newLine;
}
out << "#else" << newLine
<< " #error \"This file is designed to be used in an Introjucer-generated project!\"" << newLine
<< "#endif" << newLine;
}
}
void LibraryModule::createLocalHeaderWrapper (ProjectSaver& projectSaver, const File& originalHeader, const File& localHeader) const
{
Project& project = projectSaver.getProject();
MemoryOutputStream out;
out << "// This is an auto-generated file to redirect any included" << newLine
<< "// module headers to the correct external folder." << newLine
<< newLine;
StringArray paths, guards;
createMultipleIncludes (projectSaver.getProject(), getPathToModuleFile (projectSaver, header),
paths, guards);
for (int i = project.getNumExporters(); --i >= 0;)
{
ScopedPointer <ProjectExporter> exporter (project.createExporter (i));
if (exporter != nullptr)
{
const RelativePath headerFromProject (getModuleRelativeToProject (*exporter)
.getChildFile (originalHeader.getFileName()));
ProjectSaver::writeGuardedInclude (out, paths, guards);
const RelativePath fileFromHere (headerFromProject.rebased (project.getFile().getParentDirectory(),
localHeader.getParentDirectory(), RelativePath::unknown));
paths.add (fileFromHere.toUnixStyle().quoted());
guards.add ("defined (" + exporter->getExporterIdentifierMacro() + ")");
}
}
writeGuardedInclude (out, paths, guards);
out << newLine;
projectSaver.replaceFileIfDifferent (localHeader, out);
}
//==============================================================================
void LibraryModule::prepareExporter (ProjectExporter& exporter, ProjectSaver& projectSaver) const
{
Project& project = exporter.getProject();
File localFolder (getModuleTargetFolder (projectSaver));
File localFolder (moduleFolder);
if (project.shouldCopyModuleFilesLocally (getID()).getValue())
localFolder = getLocalIncludeFolder (projectSaver);
if (localFolder != moduleFolder && ! localFolder.isDirectory())
moduleFolder.copyDirectoryTo (localFolder);
{
Array<File> compiled;
findAndAddCompiledCode (exporter, projectSaver, localFolder, compiled);
@@ -200,8 +295,14 @@ void LibraryModule::prepareExporter (ProjectExporter& exporter, ProjectSaver& pr
if (isVSTPluginHost (project))
VSTHelpers::addVSTFolderToPath (exporter, exporter.extraSearchPaths);
if (isAUPluginHost (project))
exporter.xcodeFrameworks.addTokens ("AudioUnit CoreAudioKit", false);
if (exporter.isXcode())
{
if (isAUPluginHost (project))
exporter.xcodeFrameworks.addTokens ("AudioUnit CoreAudioKit", false);
const String frameworks (moduleInfo [exporter.isOSX() ? "OSXFrameworks" : "iOSFrameworks"].toString());
exporter.xcodeFrameworks.addTokens (frameworks, ", ", String::empty);
}
if (isPluginClient())
{
@@ -261,29 +362,12 @@ void LibraryModule::getConfigFlags (Project& project, OwnedArray<Project::Config
}
}
File LibraryModule::getModuleTargetFolder (ProjectSaver& projectSaver) const
{
if (projectSaver.getProject().shouldCopyModuleFilesLocally (getID()).getValue())
return projectSaver.getGeneratedCodeFolder().getChildFile (getID());
return moduleFolder;
}
File LibraryModule::getInclude (const File& folder) const
{
return folder.getChildFile (moduleInfo ["include"]);
}
String LibraryModule::getPathToModuleFile (ProjectSaver& projectSaver, const File& file) const
{
return file.getRelativePathFrom (getModuleTargetFolder (projectSaver).getParentDirectory().getParentDirectory());
}
//==============================================================================
bool LibraryModule::fileTargetMatches (ProjectExporter& exporter, const String& target)
{
if (target.startsWithChar ('!'))
return ! fileTargetMatches (exporter, target.substring (1).trim());
if (target == "xcode") return exporter.isXcode();
if (target == "msvc") return exporter.isVisualStudio();
if (target == "linux") return exporter.isLinux();
@@ -306,7 +390,7 @@ void LibraryModule::findWildcardMatches (const File& localModuleFolder, const St
result.addArray (tempList);
}
void LibraryModule::addFileWithGroups (Project::Item& group, const File& file, const String& path) const
void LibraryModule::addFileWithGroups (Project::Item& group, const RelativePath& file, const String& path) const
{
const int slash = path.indexOfChar ('/');
@@ -320,12 +404,12 @@ void LibraryModule::addFileWithGroups (Project::Item& group, const File& file, c
}
else
{
if (! group.findItemForFile (file).isValid())
group.addFileUnchecked (file, -1, false);
if (! group.containsChildForFile (file))
group.addRelativeFile (file, -1, false);
}
}
void LibraryModule::findAndAddCompiledCode (ProjectExporter& exporter, ProjectSaver& projectSaver,
void LibraryModule::findAndAddCompiledCode (ProjectExporter& exporter, ProjectSaver& projectSaver,
const File& localModuleFolder, Array<File>& result) const
{
const var compileArray (moduleInfo ["compile"]); // careful to keep this alive while the array is in use!
@@ -369,88 +453,19 @@ void LibraryModule::addBrowsableCode (ProjectExporter& exporter, const Array<Fil
Project::Item sourceGroup (Project::Item::createGroup (exporter.getProject(), getID(), "__mainsourcegroup" + getID()));
int i;
for (i = 0; i < sourceFiles.size(); ++i)
addFileWithGroups (sourceGroup, sourceFiles.getReference(i),
sourceFiles.getReference(i).getRelativePathFrom (localModuleFolder));
sourceGroup.addFile (localModuleFolder.getChildFile (moduleFile.getRelativePathFrom (moduleFolder)), -1, false);
sourceGroup.addFile (getInclude (localModuleFolder), -1, false);
for (i = 0; i < compiled.size(); ++i)
addFileWithGroups (sourceGroup, compiled.getReference(i),
compiled.getReference(i).getRelativePathFrom (localModuleFolder));
exporter.getModulesGroup().getNode().addChild (sourceGroup.getNode().createCopy(), -1, nullptr);
}
void LibraryModule::writeSourceWrapper (OutputStream& out, Project& project, const String& pathFromJuceFolder)
{
const String appConfigFileName (project.getAppConfigFilename());
ProjectSaver::writeAutoGenWarningComment (out);
out << " This file pulls in a module's source code, and builds it using the settings" << newLine
<< " defined in " << appConfigFileName << "." << newLine
<< newLine
<< "*/"
<< newLine
<< newLine
<< "#define JUCE_WRAPPED_FILE 1" << newLine
<< newLine
<< CodeHelpers::createIncludeStatement (appConfigFileName) << newLine;
const RelativePath moduleFromProject (getModuleRelativeToProject (exporter));
writeInclude (project, out, pathFromJuceFolder);
}
void LibraryModule::createMultipleIncludes (Project& project, const String& pathFromLibraryFolder,
StringArray& paths, StringArray& guards)
{
for (int i = project.getNumExporters(); --i >= 0;)
for (int i = 0; i < sourceFiles.size(); ++i)
{
ScopedPointer <ProjectExporter> exporter (project.createExporter (i));
const String pathWithinModule (sourceFiles.getReference(i).getRelativePathFrom (localModuleFolder));
if (exporter != nullptr)
{
paths.add (exporter->getIncludePathForFileInJuceFolder (pathFromLibraryFolder, project.getAppIncludeFile()));
guards.add ("defined (" + exporter->getExporterIdentifierMacro() + ")");
}
addFileWithGroups (sourceGroup,
moduleFromProject.getChildFile (pathWithinModule),
pathWithinModule);
}
}
void LibraryModule::writeInclude (Project& project, OutputStream& out, const String& pathFromJuceFolder)
{
StringArray paths, guards;
createMultipleIncludes (project, pathFromJuceFolder, paths, guards);
StringArray uniquePaths (paths);
uniquePaths.removeDuplicates (false);
if (uniquePaths.size() == 1)
{
out << "#include " << paths[0] << newLine;
}
else
{
int i = paths.size();
for (; --i >= 0;)
{
for (int j = i; --j >= 0;)
{
if (paths[i] == paths[j] && guards[i] == guards[j])
{
paths.remove (i);
guards.remove (i);
}
}
}
for (i = 0; i < paths.size(); ++i)
{
out << (i == 0 ? "#if " : "#elif ") << guards[i] << newLine
<< " #include " << paths[i] << newLine;
}
sourceGroup.addFile (localModuleFolder.getChildFile (moduleFile.getRelativePathFrom (moduleFolder)), -1, false);
sourceGroup.addFile (getInclude (localModuleFolder), -1, false);
out << "#endif" << newLine;
}
exporter.getModulesGroup().getNode().addChild (sourceGroup.getNode().createCopy(), -1, nullptr);
}

+ 5
- 8
extras/Introjucer/Source/Project/jucer_Module.h View File

@@ -37,7 +37,7 @@ class LibraryModule
public:
LibraryModule (const File& file);
String getID() const;
String getID() const;
bool isValid() const;
void writeIncludes (ProjectSaver& projectSaver, OutputStream& out);
@@ -52,8 +52,7 @@ private:
mutable Array<File> sourceFiles;
File getInclude (const File& folder) const;
File getModuleTargetFolder (ProjectSaver& projectSaver) const;
String getPathToModuleFile (ProjectSaver& projectSaver, const File& file) const;
File getLocalIncludeFolder (ProjectSaver& projectSaver) const;
static bool fileTargetMatches (ProjectExporter& exporter, const String& target);
struct FileSorter
@@ -65,13 +64,11 @@ private:
};
void findWildcardMatches (const File& localModuleFolder, const String& wildcardPath, Array<File>& result) const;
void addFileWithGroups (Project::Item& group, const File& file, const String& path) const;
void addFileWithGroups (Project::Item& group, const RelativePath& file, const String& path) const;
void findAndAddCompiledCode (ProjectExporter& exporter, ProjectSaver& projectSaver, const File& localModuleFolder, Array<File>& result) const;
void addBrowsableCode (ProjectExporter& exporter, const Array<File>& compiled, const File& localModuleFolder) const;
static void writeSourceWrapper (OutputStream& out, Project& project, const String& pathFromJuceFolder);
static void createMultipleIncludes (Project& project, const String& pathFromLibraryFolder, StringArray& paths, StringArray& guards);
static void writeInclude (Project& project, OutputStream& out, const String& pathFromJuceFolder);
void createLocalHeaderWrapper (ProjectSaver& projectSaver, const File& originalHeader, const File& localHeader) const;
RelativePath getModuleRelativeToProject (ProjectExporter& exporter) const;
bool isPluginClient() const;
bool isAUPluginHost (const Project& project) const;


+ 5
- 0
extras/Introjucer/Source/Project/jucer_Project.cpp View File

@@ -547,6 +547,11 @@ bool Project::Item::renameFile (const File& newFile)
return false;
}
bool Project::Item::containsChildForFile (const RelativePath& file) const
{
return node.getChildWithProperty (Ids::file, file.toUnixStyle()).isValid();
}
Project::Item Project::Item::findItemForFile (const File& file) const
{
if (getFile() == file)


+ 1
- 0
extras/Introjucer/Source/Project/jucer_Project.h View File

@@ -169,6 +169,7 @@ public:
void removeItemFromProject();
void sortAlphabetically (bool keepGroupsAtStart);
Item findItemForFile (const File& file) const;
bool containsChildForFile (const RelativePath& file) const;
Item getParent() const;
Item createCopy();


+ 26
- 28
extras/Introjucer/Source/Project/jucer_ProjectExport_XCode.h View File

@@ -36,19 +36,19 @@ public:
//==============================================================================
static const char* getNameMac() { return "XCode (MacOSX)"; }
static const char* getNameiOS() { return "XCode (iOS)"; }
static const char* getValueTreeTypeName (bool iPhone) { return iPhone ? "XCODE_IPHONE" : "XCODE_MAC"; }
static const char* getValueTreeTypeName (bool iOS) { return iOS ? "XCODE_IPHONE" : "XCODE_MAC"; }
//==============================================================================
XCodeProjectExporter (Project& project_, const ValueTree& settings_, const bool iPhone_)
XCodeProjectExporter (Project& project_, const ValueTree& settings_, const bool iOS_)
: ProjectExporter (project_, settings_),
iPhone (iPhone_)
iOS (iOS_)
{
name = iPhone ? getNameiOS() : getNameMac();
name = iOS ? getNameiOS() : getNameMac();
projectIDSalt = hashCode64 (project.getProjectUID());
if (getTargetLocation().toString().isEmpty())
getTargetLocation() = getDefaultBuildsRootFolder() + (iPhone ? "iOS" : "MacOSX");
getTargetLocation() = getDefaultBuildsRootFolder() + (iOS ? "iOS" : "MacOSX");
if (getSettings() ["objCExtraSuffix"].isVoid())
getObjCSuffix() = createAlphaNumericUID();
@@ -70,7 +70,7 @@ public:
int getLaunchPreferenceOrderForCurrentOS()
{
#if JUCE_MAC
return iPhone ? 1 : 2;
return iOS ? 1 : 2;
#else
return 0;
#endif
@@ -85,9 +85,10 @@ public:
#endif
}
bool isPossibleForCurrentProject() { return projectType.isGUIApplication() || ! iPhone; }
bool isPossibleForCurrentProject() { return projectType.isGUIApplication() || ! iOS; }
bool usesMMFiles() const { return true; }
bool isXcode() const { return true; }
bool isOSX() const { return ! iOS; }
void createPropertyEditors (Array <PropertyComponent*>& props)
{
@@ -97,12 +98,12 @@ public:
props.getLast()->setTooltip ("Because objective-C linkage is done by string-matching, you can get horrible linkage mix-ups when different modules containing the "
"same class-names are loaded simultaneously. This setting lets you provide a unique string that will be used in naming the obj-C classes in your executable to avoid this.");
if (projectType.isGUIApplication() && ! iPhone)
if (projectType.isGUIApplication() && ! iOS)
{
props.add (new TextPropertyComponent (getSetting ("documentExtensions"), "Document file extensions", 128, false));
props.getLast()->setTooltip ("A comma-separated list of file extensions for documents that your app can open.");
}
else if (iPhone)
else if (iOS)
{
props.add (new BooleanPropertyComponent (getSetting ("UIFileSharingEnabled"), "File Sharing Enabled", "Enabled"));
props.getLast()->setTooltip ("Enable this to expose your app's files to iTunes.");
@@ -146,7 +147,7 @@ private:
StringArray frameworkFileIDs, rezFileIDs, resourceFileRefs;
File infoPlistFile, iconFile;
int64 projectIDSalt;
const bool iPhone;
const bool iOS;
static String sanitisePath (const String& path)
{
@@ -168,7 +169,7 @@ private:
{
RelativePath plistPath (infoPlistFile, getTargetFolder(), RelativePath::buildTargetFolder);
addFileReference (plistPath.toUnixStyle());
resourceFileRefs.add (createID (plistPath));
resourceFileRefs.add (createFileRefID (plistPath));
}
if (iconFile.exists())
@@ -176,7 +177,7 @@ private:
RelativePath iconPath (iconFile, getTargetFolder(), RelativePath::buildTargetFolder);
addFileReference (iconPath.toUnixStyle());
resourceIDs.add (addBuildFile (iconPath, false, false));
resourceFileRefs.add (createID (iconPath));
resourceFileRefs.add (createFileRefID (iconPath));
}
{
@@ -348,7 +349,7 @@ private:
XmlElement plist ("plist");
XmlElement* dict = plist.createNewChildElement ("dict");
if (iPhone)
if (iOS)
addPlistDictionaryKeyBool (dict, "LSRequiresIPhoneOS", true);
addPlistDictionaryKey (dict, "CFBundleExecutable", "${EXECUTABLE_NAME}");
@@ -464,7 +465,7 @@ private:
s.add ("GCC_INLINES_ARE_PRIVATE_EXTERN = YES");
}
if (iPhone)
if (iOS)
{
s.add ("\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\"");
s.add ("SDKROOT = iphoneos");
@@ -527,7 +528,7 @@ private:
s.add ("DEPLOYMENT_LOCATION = YES");
}
if (! iPhone)
if (! iOS)
{
const String sdk (config.getMacSDKVersion().toString());
const String sdkCompat (config.getMacCompatibilityVersion().toString());
@@ -622,10 +623,7 @@ private:
if (! projectType.isLibrary())
{
StringArray s (xcodeFrameworks);
s.addTokens (iPhone ? "UIKit Foundation CoreGraphics CoreText AudioToolbox QuartzCore OpenGLES"
: "Cocoa Carbon IOKit CoreAudio CoreMIDI WebKit DiscRecording OpenGL QuartzCore QTKit QuickTime AudioToolbox", false);
s.trim();
s.removeDuplicates (true);
s.sort (true);
@@ -707,7 +705,7 @@ private:
String addBuildFile (const RelativePath& path, bool addToSourceBuildPhase, bool inhibitWarnings)
{
return addBuildFile (path.toUnixStyle(), createID (path), addToSourceBuildPhase, inhibitWarnings);
return addBuildFile (path.toUnixStyle(), createFileRefID (path), addToSourceBuildPhase, inhibitWarnings);
}
String addFileReference (String pathString)
@@ -734,7 +732,7 @@ private:
v->setProperty ("path", sanitisePath (pathString), 0);
v->setProperty ("sourceTree", sourceTree, 0);
pbxFileReferences.add (v);
return fileRefID;
}
@@ -973,11 +971,6 @@ private:
+ (separator == ";" ? separator : String::empty);
}
String createID (const RelativePath& path) const
{
return createID (path.toUnixStyle());
}
String createID (String rootString) const
{
if (rootString.startsWith ("${"))
@@ -993,11 +986,16 @@ private:
return String (n, numElementsInArray (n));
}
String createFileRefID (const String& path)
String createFileRefID (const RelativePath& path) const
{
return createFileRefID (path.toUnixStyle());
}
String createFileRefID (const String& path) const
{
return createID ("__fileref_" + path);
}
String getIDForGroup (const Project::Item& item) const
{
return createID (item.getID());


+ 1
- 0
extras/Introjucer/Source/Project/jucer_ProjectExporter.h View File

@@ -63,6 +63,7 @@ public:
virtual bool isXcode() const { return false; }
virtual bool isVisualStudio() const { return false; }
virtual bool isLinux() const { return false; }
virtual bool isOSX() const { return false; }
//==============================================================================
String getName() const { return name; }


+ 1
- 1
extras/Introjucer/Source/Project/jucer_ProjectInformationComponent.cpp View File

@@ -155,7 +155,7 @@ public:
props.getLast()->setTooltip ("If this is enabled, then a local copy of the entire module will be made inside your project (in the auto-generated JuceLibraryFiles folder), "
"so that your project will be self-contained, and won't need to contain any references to files in other folders. "
"This also means that you can check the module into your source-control system to make sure it is always in sync with your own code.");
StringArray possibleValues;
possibleValues.add ("(Use Default)");
possibleValues.add ("Enabled");


+ 28
- 61
extras/Introjucer/Source/Project/jucer_ProjectSaver.h View File

@@ -132,47 +132,24 @@ public:
<< newLine;
}
static void writeGuardedInclude (OutputStream& out, StringArray paths, StringArray guards)
{
StringArray uniquePaths (paths);
uniquePaths.removeDuplicates (false);
if (uniquePaths.size() == 1)
{
out << "#include " << paths[0] << newLine;
}
else
{
int i = paths.size();
for (; --i >= 0;)
{
for (int j = i; --j >= 0;)
{
if (paths[i] == paths[j] && guards[i] == guards[j])
{
paths.remove (i);
guards.remove (i);
}
}
}
for (i = 0; i < paths.size(); ++i)
{
out << (i == 0 ? "#if " : "#elif ") << guards[i] << newLine
<< " #include " << paths[i] << newLine;
}
out << "#endif" << newLine;
}
}
static const char* getGeneratedGroupID() noexcept { return "__jucelibfiles"; }
Project::Item& getGeneratedCodeGroup() { return generatedFilesGroup; }
static String getJuceCodeGroupName() { return "Juce Library Code"; }
File getGeneratedCodeFolder() const { return generatedCodeFolder; }
bool replaceFileIfDifferent (const File& f, const MemoryOutputStream& newData)
{
if (! FileHelpers::overwriteFileWithNewDataIfDifferent (f, newData))
{
errors.add ("Can't write to file: " + f.getFullPathName());
return false;
}
return true;
}
private:
Project& project;
const File projectFile, generatedCodeFolder;
@@ -215,11 +192,11 @@ private:
for (int i = modules.size(); --i >= 0;)
longest = jmax (longest, modules.getUnchecked(i)->getID().length());
return longest;
}
bool writeAppConfig (OutputStream& out, const OwnedArray<LibraryModule>& modules)
void writeAppConfig (OutputStream& out, const OwnedArray<LibraryModule>& modules)
{
writeAutoGenWarningComment (out);
out << " If you want to change any of these values, use the Introjucer to do so," << newLine
@@ -227,9 +204,13 @@ private:
<< newLine
<< " Any commented-out settings will assume their default values." << newLine
<< newLine
<< "*/" << newLine << newLine;
<< "*/" << newLine
<< newLine;
bool anyFlags = false;
const String headerGuard ("__JUCE_APPCONFIG_" + project.getProjectUID().toUpperCase() + "__");
out << "#ifndef " << headerGuard << newLine
<< "#define " << headerGuard << newLine
<< newLine;
out << "//==============================================================================" << newLine;
@@ -238,10 +219,10 @@ private:
for (int k = 0; k < modules.size(); ++k)
{
LibraryModule* const m = modules.getUnchecked(k);
out << "#define JUCE_MODULE_AVAILABLE_" << m->getID()
out << "#define JUCE_MODULE_AVAILABLE_" << m->getID()
<< String::repeatedString (" ", longestName + 5 - m->getID().length()) << " 1" << newLine;
}
out << newLine;
for (int j = 0; j < modules.size(); ++j)
@@ -252,8 +233,6 @@ private:
if (flags.size() > 0)
{
anyFlags = true;
out << "//==============================================================================" << newLine
<< "// " << m->getID() << " flags:" << newLine
<< newLine;
@@ -281,12 +260,10 @@ private:
}
if (extraAppConfigContent.isNotEmpty())
{
out << newLine << extraAppConfigContent.trimEnd() << newLine;
return true;
}
return anyFlags;
out << newLine
<< "#endif // " << headerGuard << newLine;
}
void writeAppConfigFile (const OwnedArray<LibraryModule>& modules)
@@ -294,8 +271,8 @@ private:
appConfigFile = generatedCodeFolder.getChildFile (project.getAppConfigFilename());
MemoryOutputStream mem;
if (writeAppConfig (mem, modules))
saveGeneratedFile (project.getAppConfigFilename(), mem);
writeAppConfig (mem, modules);
saveGeneratedFile (project.getAppConfigFilename(), mem);
}
void writeAppHeader (OutputStream& out, const OwnedArray<LibraryModule>& modules)
@@ -413,6 +390,7 @@ private:
if (exporter->getTargetFolder().createDirectory())
{
exporter->addToExtraSearchPaths (RelativePath ("JuceLibraryCode", RelativePath::projectFolder));
//exporter->addToExtraSearchPaths (RelativePath (exporter->getJuceFolder().toString(), RelativePath::projectFolder).getChildFile ("modules"));
generatedFilesGroup.getNode() = originalGeneratedGroup.createCopy();
project.getProjectType().prepareExporter (*exporter);
@@ -439,17 +417,6 @@ private:
}
}
bool replaceFileIfDifferent (const File& f, const MemoryOutputStream& newData)
{
if (! FileHelpers::overwriteFileWithNewDataIfDifferent (f, newData))
{
errors.add ("Can't write to file: " + f.getFullPathName());
return false;
}
return true;
}
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ProjectSaver);
};


+ 1
- 1
extras/Introjucer/Source/Utility/jucer_CodeHelpers.h View File

@@ -33,7 +33,7 @@ namespace CodeHelpers
String indent (const String& code, const int numSpaces, bool indentFirstLine);
String makeValidIdentifier (String s, bool capitalise, bool removeColons, bool allowTemplates);
String addEscapeChars (const String& text);
String createIncludeStatement (const File& includeFile, const File& targetFile);
String createIncludeStatement (const File& includedFile, const File& targetFile);
String createIncludeStatement (const String& includePath);
String makeHeaderGuardName (const File& file);
String makeBinaryDataIdentifierName (const File& file);


+ 17
- 45
extras/JuceDemo/Builds/MacOSX/Juce Demo.xcodeproj/project.pbxproj View File

@@ -18,7 +18,7 @@
F1BAE9DCD179C8784FF28F8D = { isa = PBXBuildFile; fileRef = 607C28F1955FAEFF3BEE5AB0; };
452052BBDBAF17DCC06EF521 = { isa = PBXBuildFile; fileRef = B80C1DF269B90BB58A33C56A; };
0CFE603DE523940AF3352227 = { isa = PBXBuildFile; fileRef = 75B371BA479A23543D830A94; };
C0A3C433D146C7E1FFCADFB2 = { isa = PBXBuildFile; fileRef = 4ADECB09FD213B2E910EA229; };
C0A3C433D146C7E1FFCADFB2 = { isa = PBXBuildFile; fileRef = E9A41A4A2B3078221D326E76; };
78A66C2F9A9E2E6D011D8E5E = { isa = PBXBuildFile; fileRef = 3EB8A248383A603E9E5C053B; };
CE5C46E66485B7D77B5ADB4E = { isa = PBXBuildFile; fileRef = 4C3B9F689355B9123890C487; };
2E2DB52D03DD6A56FAC937A4 = { isa = PBXBuildFile; fileRef = 885EE0F3A7E8366A33859103; };
@@ -146,7 +146,6 @@
134BC54CB4FE7F00C1DB353F = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Synthesiser.h"; path = "../../../../modules/juce_audio_basics/synthesisers/juce_Synthesiser.h"; sourceTree = "SOURCE_ROOT"; };
DCDF4EC4657D3B23563BD718 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
56D79C9D0B727832E4AE34D7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_basics.h"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.h"; sourceTree = "SOURCE_ROOT"; };
8F21A2C908CD10F51A9B2519 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_basics.mm"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
5D4B2A709D10E343A776F4A2 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioDeviceManager.cpp"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.cpp"; sourceTree = "SOURCE_ROOT"; };
B4540DFC77BAF92976B0518A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioDeviceManager.h"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.h"; sourceTree = "SOURCE_ROOT"; };
A04F57546B15826A8031DC78 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioIODevice.cpp"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioIODevice.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -185,7 +184,6 @@
2C5E329D77B6704FCE76C411 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WASAPI.cpp"; path = "../../../../modules/juce_audio_devices/native/juce_win32_WASAPI.cpp"; sourceTree = "SOURCE_ROOT"; };
8F98EAD495FA1991295C722B = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_devices/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
ACFE80BF62523C82141D6947 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_devices.h"; path = "../../../../modules/juce_audio_devices/juce_audio_devices.h"; sourceTree = "SOURCE_ROOT"; };
90332E18B4E7E5DD96EEF92C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_devices.mm"; path = "../../../../modules/juce_audio_devices/juce_audio_devices.mm"; sourceTree = "SOURCE_ROOT"; };
F6C98E45962CF2D5416592C1 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormat.cpp"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
B414083F6E9C1BD1C7B6D480 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioFormat.h"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
8C595F9EB12B7EC007CA8C83 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormatManager.cpp"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormatManager.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -214,7 +212,6 @@
C2A1EEED9FF43F120DF3A449 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Sampler.h"; path = "../../../../modules/juce_audio_formats/sampler/juce_Sampler.h"; sourceTree = "SOURCE_ROOT"; };
709571635714003B7D69B853 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_formats/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
27BFB648561FB2B6A2C50151 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_formats.h"; path = "../../../../modules/juce_audio_formats/juce_audio_formats.h"; sourceTree = "SOURCE_ROOT"; };
75A9233BF895CF50482DC713 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_formats.mm"; path = "../../../../modules/juce_audio_formats/juce_audio_formats.mm"; sourceTree = "SOURCE_ROOT"; };
60CD2F2F87AF326A402D6A98 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioPlayHead.h"; path = "../../../../modules/juce_audio_processors/processors/juce_AudioPlayHead.h"; sourceTree = "SOURCE_ROOT"; };
BC2A6B8E45EE536BD6862B2A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioPluginInstance.h"; path = "../../../../modules/juce_audio_processors/processors/juce_AudioPluginInstance.h"; sourceTree = "SOURCE_ROOT"; };
8075FFE6187B8729A422984B = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioProcessor.cpp"; path = "../../../../modules/juce_audio_processors/processors/juce_AudioProcessor.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -247,7 +244,6 @@
7D0BC0AE9011746EB49FD400 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PluginListComponent.h"; path = "../../../../modules/juce_audio_processors/scanning/juce_PluginListComponent.h"; sourceTree = "SOURCE_ROOT"; };
73CF7531ABC6DF9E39B85578 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_processors/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
0FC5E393900A3EE2C3040115 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_processors.h"; path = "../../../../modules/juce_audio_processors/juce_audio_processors.h"; sourceTree = "SOURCE_ROOT"; };
FF3039642C893057AA29D601 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_processors.mm"; path = "../../../../modules/juce_audio_processors/juce_audio_processors.mm"; sourceTree = "SOURCE_ROOT"; };
85369DC5F12B3D3BC948DF17 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioDeviceSelectorComponent.cpp"; path = "../../../../modules/juce_audio_utils/gui/juce_AudioDeviceSelectorComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
52A3B77ECFF319A1E023619C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioDeviceSelectorComponent.h"; path = "../../../../modules/juce_audio_utils/gui/juce_AudioDeviceSelectorComponent.h"; sourceTree = "SOURCE_ROOT"; };
9E95FEFF09B19F0B1B06841D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioThumbnail.cpp"; path = "../../../../modules/juce_audio_utils/gui/juce_AudioThumbnail.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -260,7 +256,6 @@
F036F3BC653B8E93AD5FCB55 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioProcessorPlayer.h"; path = "../../../../modules/juce_audio_utils/players/juce_AudioProcessorPlayer.h"; sourceTree = "SOURCE_ROOT"; };
244D5A8110CE894496E0A771 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_utils/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
0F62B0D5CCE383D8324F703C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_utils.h"; path = "../../../../modules/juce_audio_utils/juce_audio_utils.h"; sourceTree = "SOURCE_ROOT"; };
9401AFEEEC997D124DA91D2F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_utils.mm"; path = "../../../../modules/juce_audio_utils/juce_audio_utils.mm"; sourceTree = "SOURCE_ROOT"; };
A5C2FB9BFC451D9894FFDD6C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CharacterFunctions.cpp"; path = "../../../../modules/juce_core/text/juce_CharacterFunctions.cpp"; sourceTree = "SOURCE_ROOT"; };
0F21A857E7128F49283759D8 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharacterFunctions.h"; path = "../../../../modules/juce_core/text/juce_CharacterFunctions.h"; sourceTree = "SOURCE_ROOT"; };
312DDC8FF9A1392424B43914 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharPointer_ASCII.h"; path = "../../../../modules/juce_core/text/juce_CharPointer_ASCII.h"; sourceTree = "SOURCE_ROOT"; };
@@ -435,7 +430,6 @@
B2D4CDF3C95547DB53208851 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Threads.cpp"; path = "../../../../modules/juce_core/native/juce_win32_Threads.cpp"; sourceTree = "SOURCE_ROOT"; };
54D299F53D33499D77561B2D = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_core/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
D9E89C5302BEF3F345828D57 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_core.h"; path = "../../../../modules/juce_core/juce_core.h"; sourceTree = "SOURCE_ROOT"; };
11E51784BE821F76011EA24F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../../../modules/juce_core/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
56B2050F05D7C54BA14D846E = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_BlowFish.cpp"; path = "../../../../modules/juce_cryptography/encryption/juce_BlowFish.cpp"; sourceTree = "SOURCE_ROOT"; };
8503898EB640573A93F6E2F4 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BlowFish.h"; path = "../../../../modules/juce_cryptography/encryption/juce_BlowFish.h"; sourceTree = "SOURCE_ROOT"; };
CC857EB96F6D93C84B252EE3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Primes.cpp"; path = "../../../../modules/juce_cryptography/encryption/juce_Primes.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -448,7 +442,6 @@
EEE54FB4600BAC9B59D59A87 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SHA256.h"; path = "../../../../modules/juce_cryptography/hashing/juce_SHA256.h"; sourceTree = "SOURCE_ROOT"; };
37EB2C7AAE77C9D547DD2ABE = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_cryptography/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
7473E0E4BC24F7116C2CB31C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_cryptography.h"; path = "../../../../modules/juce_cryptography/juce_cryptography.h"; sourceTree = "SOURCE_ROOT"; };
F9361FAEEB08C28AF4D763E6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_cryptography.mm"; path = "../../../../modules/juce_cryptography/juce_cryptography.mm"; sourceTree = "SOURCE_ROOT"; };
227468E75FAD39D9BF5B6DD5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Value.cpp"; path = "../../../../modules/juce_data_structures/values/juce_Value.cpp"; sourceTree = "SOURCE_ROOT"; };
D83311A0F150DB70121E2FB3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Value.h"; path = "../../../../modules/juce_data_structures/values/juce_Value.h"; sourceTree = "SOURCE_ROOT"; };
DBFF5FC53DD94A30B7FB7268 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ValueTree.cpp"; path = "../../../../modules/juce_data_structures/values/juce_ValueTree.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -462,7 +455,6 @@
D49D2B6FD6BEB44454C95F27 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PropertiesFile.h"; path = "../../../../modules/juce_data_structures/app_properties/juce_PropertiesFile.h"; sourceTree = "SOURCE_ROOT"; };
886B0FE3E0ED5BB9B4C6F310 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_data_structures/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
C6D79A4895E3FAD7C9CA1CC9 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_data_structures.h"; path = "../../../../modules/juce_data_structures/juce_data_structures.h"; sourceTree = "SOURCE_ROOT"; };
BB9106B86ABC08E0D90EDF5F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_data_structures.mm"; path = "../../../../modules/juce_data_structures/juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
609B7D83C90F5999F39868A6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ApplicationBase.cpp"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.cpp"; sourceTree = "SOURCE_ROOT"; };
5EFE84CEEBFD6B6803E2391C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationBase.h"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.h"; sourceTree = "SOURCE_ROOT"; };
1BD69B98EF6EC464D5AE009C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CallbackMessage.h"; path = "../../../../modules/juce_events/messages/juce_CallbackMessage.h"; sourceTree = "SOURCE_ROOT"; };
@@ -501,7 +493,6 @@
EEF1DF3ACDAD8B145E0C29A5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Messaging.cpp"; path = "../../../../modules/juce_events/native/juce_win32_Messaging.cpp"; sourceTree = "SOURCE_ROOT"; };
C993C2AB4F52EC0F2C5E4D6B = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_events/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
C130B03AA102D1970BB4B021 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_events.h"; path = "../../../../modules/juce_events/juce_events.h"; sourceTree = "SOURCE_ROOT"; };
632ECC6114A6E4921ED9116C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_events.mm"; path = "../../../../modules/juce_events/juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
839950628717161977AC8C49 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Colour.cpp"; path = "../../../../modules/juce_graphics/colour/juce_Colour.cpp"; sourceTree = "SOURCE_ROOT"; };
6428DF2323392BC2D90C9612 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Colour.h"; path = "../../../../modules/juce_graphics/colour/juce_Colour.h"; sourceTree = "SOURCE_ROOT"; };
39F14F2C3B9C2AEF67351496 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ColourGradient.cpp"; path = "../../../../modules/juce_graphics/colour/juce_ColourGradient.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -575,7 +566,6 @@
4DE18664FAC0D108F0D29C72 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Fonts.cpp"; path = "../../../../modules/juce_graphics/native/juce_win32_Fonts.cpp"; sourceTree = "SOURCE_ROOT"; };
6CEE39A804B86B21AAD3AB71 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_graphics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
770F8B2B6F22A247D7908A81 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_graphics.h"; path = "../../../../modules/juce_graphics/juce_graphics.h"; sourceTree = "SOURCE_ROOT"; };
A7CF270385AF52A4ED66DE11 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_graphics.mm"; path = "../../../../modules/juce_graphics/juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
09AFA4C0E4E8DA3F688A440D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Component.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_Component.cpp"; sourceTree = "SOURCE_ROOT"; };
9555633C6FDDEAFE85265322 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Component.h"; path = "../../../../modules/juce_gui_basics/components/juce_Component.h"; sourceTree = "SOURCE_ROOT"; };
5F33454A85BDFE9886F90ADE = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentListener.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_ComponentListener.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -820,7 +810,6 @@
B2613BD0D20242A9534DE0E4 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Windowing.cpp"; path = "../../../../modules/juce_gui_basics/native/juce_win32_Windowing.cpp"; sourceTree = "SOURCE_ROOT"; };
EFBDDE9EAC44AB1FB29AD43F = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
8EDA81B2CECDA8DA3353279F = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_basics.h"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.h"; sourceTree = "SOURCE_ROOT"; };
BA9574ED4A899A071CEF26F8 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_basics.mm"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
3C0AF7BCA0C65DEFE26BD3F5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeDocument.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.cpp"; sourceTree = "SOURCE_ROOT"; };
D173AAD2E51F6DE12FC4B958 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CodeDocument.h"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.h"; sourceTree = "SOURCE_ROOT"; };
98D473C53CD9F8C6F6A3C0CF = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeEditorComponent.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -865,7 +854,6 @@
82E1F0A94936BC562DFF155C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WebBrowserComponent.cpp"; path = "../../../../modules/juce_gui_extra/native/juce_win32_WebBrowserComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
936C261CB4AF3F4ADFAB24BC = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_extra/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
BBF061A38D8E944116ADEDE7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_extra.h"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.h"; sourceTree = "SOURCE_ROOT"; };
C489DCB1D657E1D541B07554 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_extra.mm"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.mm"; sourceTree = "SOURCE_ROOT"; };
55AFFB566D49AABFA9C0EE6C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OpenGLComponent.cpp"; path = "../../../../modules/juce_opengl/opengl/juce_OpenGLComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
FE8A9052DF38CAA1BCEE9589 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLComponent.h"; path = "../../../../modules/juce_opengl/opengl/juce_OpenGLComponent.h"; sourceTree = "SOURCE_ROOT"; };
1763C4B21169FE19DCB32BBD = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLContext.h"; path = "../../../../modules/juce_opengl/opengl/juce_OpenGLContext.h"; sourceTree = "SOURCE_ROOT"; };
@@ -877,7 +865,6 @@
5FFE23DDE3CD2FE0CECA8EE0 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_OpenGLComponent.cpp"; path = "../../../../modules/juce_opengl/native/juce_win32_OpenGLComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
713D9E0122A7E2363FBCD66A = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_opengl/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
1A262C0FE84DB15AB4A3A63B = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_opengl.h"; path = "../../../../modules/juce_opengl/juce_opengl.h"; sourceTree = "SOURCE_ROOT"; };
186EB749BBB71DA5DAE7791C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_opengl.mm"; path = "../../../../modules/juce_opengl/juce_opengl.mm"; sourceTree = "SOURCE_ROOT"; };
B5BE674CCA98DEAFF320FB0F = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DirectShowComponent.h"; path = "../../../../modules/juce_video/playback/juce_DirectShowComponent.h"; sourceTree = "SOURCE_ROOT"; };
60CFBCD8BF1DB300EAC4EA6B = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_QuickTimeMovieComponent.h"; path = "../../../../modules/juce_video/playback/juce_QuickTimeMovieComponent.h"; sourceTree = "SOURCE_ROOT"; };
3E3E0587F61AD4A92C2661E5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CameraDevice.h"; path = "../../../../modules/juce_video/capture/juce_CameraDevice.h"; sourceTree = "SOURCE_ROOT"; };
@@ -889,7 +876,6 @@
E7878030A3150ADF14B14D7C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_QuickTimeMovieComponent.cpp"; path = "../../../../modules/juce_video/native/juce_win32_QuickTimeMovieComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
C54FB39D60CFBE33D82E4AD8 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_video/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
EF0A80515EF5B5242182C44A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_video.h"; path = "../../../../modules/juce_video/juce_video.h"; sourceTree = "SOURCE_ROOT"; };
820D83351C6FF16ECB901FEF = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_video.mm"; path = "../../../../modules/juce_video/juce_video.mm"; sourceTree = "SOURCE_ROOT"; };
EFE1F8AD3A592FD4FC84D502 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = "SOURCE_ROOT"; };
29991F7B599C385152E4968F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BinaryData.cpp; path = ../../JuceLibraryCode/BinaryData.cpp; sourceTree = "SOURCE_ROOT"; };
48FBAA49E95411B6D0E07C2A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = BinaryData.h; path = ../../JuceLibraryCode/BinaryData.h; sourceTree = "SOURCE_ROOT"; };
@@ -998,8 +984,7 @@
127130A5BDDC80D2EFA81AB7,
E6D0352F5EEC608B7033A5A2,
DCDF4EC4657D3B23563BD718,
56D79C9D0B727832E4AE34D7,
8F21A2C908CD10F51A9B2519 ); name = "juce_audio_basics"; sourceTree = "<group>"; };
56D79C9D0B727832E4AE34D7 ); name = "juce_audio_basics"; sourceTree = "<group>"; };
34CBA7E15A8614DE4047D0B6 = { isa = PBXGroup; children = (
5D4B2A709D10E343A776F4A2,
B4540DFC77BAF92976B0518A,
@@ -1048,8 +1033,7 @@
12B982373762043F81FB4590,
2A55B251683A4DD470915CD6,
8F98EAD495FA1991295C722B,
ACFE80BF62523C82141D6947,
90332E18B4E7E5DD96EEF92C ); name = "juce_audio_devices"; sourceTree = "<group>"; };
ACFE80BF62523C82141D6947 ); name = "juce_audio_devices"; sourceTree = "<group>"; };
7545EF2861EC74E7F0701EF1 = { isa = PBXGroup; children = (
F6C98E45962CF2D5416592C1,
B414083F6E9C1BD1C7B6D480,
@@ -1084,8 +1068,7 @@
B5ED5E6584547689F8D7A38D,
6F10FB943DD0E03288A5FA02,
709571635714003B7D69B853,
27BFB648561FB2B6A2C50151,
75A9233BF895CF50482DC713 ); name = "juce_audio_formats"; sourceTree = "<group>"; };
27BFB648561FB2B6A2C50151 ); name = "juce_audio_formats"; sourceTree = "<group>"; };
68E50F42BD0F124E89E2CC9A = { isa = PBXGroup; children = (
60CD2F2F87AF326A402D6A98,
BC2A6B8E45EE536BD6862B2A,
@@ -1126,8 +1109,7 @@
31B0F213666DFF342C2F31FB,
4FC748452E42CC700EEE0ADA,
73CF7531ABC6DF9E39B85578,
0FC5E393900A3EE2C3040115,
FF3039642C893057AA29D601 ); name = "juce_audio_processors"; sourceTree = "<group>"; };
0FC5E393900A3EE2C3040115 ); name = "juce_audio_processors"; sourceTree = "<group>"; };
CA434F5DF551D188141C868B = { isa = PBXGroup; children = (
85369DC5F12B3D3BC948DF17,
52A3B77ECFF319A1E023619C,
@@ -1144,8 +1126,7 @@
CA434F5DF551D188141C868B,
0DCD3B0AA20EDF472F63AD81,
244D5A8110CE894496E0A771,
0F62B0D5CCE383D8324F703C,
9401AFEEEC997D124DA91D2F ); name = "juce_audio_utils"; sourceTree = "<group>"; };
0F62B0D5CCE383D8324F703C ); name = "juce_audio_utils"; sourceTree = "<group>"; };
A6EC4A656C5D7458AC474BB4 = { isa = PBXGroup; children = (
A5C2FB9BFC451D9894FFDD6C,
0F21A857E7128F49283759D8,
@@ -1354,8 +1335,7 @@
ED6DB2289BFF9CD9EBB3FA57,
EB75031D414FF79274E6DCD5,
54D299F53D33499D77561B2D,
D9E89C5302BEF3F345828D57,
11E51784BE821F76011EA24F ); name = "juce_core"; sourceTree = "<group>"; };
D9E89C5302BEF3F345828D57 ); name = "juce_core"; sourceTree = "<group>"; };
E5B0983F7D1A403F2771C628 = { isa = PBXGroup; children = (
56B2050F05D7C54BA14D846E,
8503898EB640573A93F6E2F4,
@@ -1372,8 +1352,7 @@
E5B0983F7D1A403F2771C628,
F89693FC360AED110B092BC6,
37EB2C7AAE77C9D547DD2ABE,
7473E0E4BC24F7116C2CB31C,
F9361FAEEB08C28AF4D763E6 ); name = "juce_cryptography"; sourceTree = "<group>"; };
7473E0E4BC24F7116C2CB31C ); name = "juce_cryptography"; sourceTree = "<group>"; };
9C65E7F52E573A350DF8E9BA = { isa = PBXGroup; children = (
227468E75FAD39D9BF5B6DD5,
D83311A0F150DB70121E2FB3,
@@ -1393,8 +1372,7 @@
14943914DA17F0B0C9E11408,
F260C3BE7A062E1D407188B9,
886B0FE3E0ED5BB9B4C6F310,
C6D79A4895E3FAD7C9CA1CC9,
BB9106B86ABC08E0D90EDF5F ); name = "juce_data_structures"; sourceTree = "<group>"; };
C6D79A4895E3FAD7C9CA1CC9 ); name = "juce_data_structures"; sourceTree = "<group>"; };
0623E1C012A55B0F64F29B60 = { isa = PBXGroup; children = (
609B7D83C90F5999F39868A6,
5EFE84CEEBFD6B6803E2391C,
@@ -1443,8 +1421,7 @@
0C65851AD8B8F72B5022A7A0,
02282B18FC7EF9236A50BA39,
C993C2AB4F52EC0F2C5E4D6B,
C130B03AA102D1970BB4B021,
632ECC6114A6E4921ED9116C ); name = "juce_events"; sourceTree = "<group>"; };
C130B03AA102D1970BB4B021 ); name = "juce_events"; sourceTree = "<group>"; };
86D45CB4B1C570AA6560B736 = { isa = PBXGroup; children = (
839950628717161977AC8C49,
6428DF2323392BC2D90C9612,
@@ -1536,8 +1513,7 @@
301CB73D485B7EE2DEBE4BB9,
4F9EF9B91A34AF9114254A57,
6CEE39A804B86B21AAD3AB71,
770F8B2B6F22A247D7908A81,
A7CF270385AF52A4ED66DE11 ); name = "juce_graphics"; sourceTree = "<group>"; };
770F8B2B6F22A247D7908A81 ); name = "juce_graphics"; sourceTree = "<group>"; };
C5CD445B22024CD1653D4E3D = { isa = PBXGroup; children = (
09AFA4C0E4E8DA3F688A440D,
9555633C6FDDEAFE85265322,
@@ -1816,8 +1792,7 @@
17138A6E8BEC1222F139E4BD,
B2979FB3E4771D5805398883,
EFBDDE9EAC44AB1FB29AD43F,
8EDA81B2CECDA8DA3353279F,
BA9574ED4A899A071CEF26F8 ); name = "juce_gui_basics"; sourceTree = "<group>"; };
8EDA81B2CECDA8DA3353279F ); name = "juce_gui_basics"; sourceTree = "<group>"; };
BD4E249C6350CE539DFE3B25 = { isa = PBXGroup; children = (
3C0AF7BCA0C65DEFE26BD3F5,
D173AAD2E51F6DE12FC4B958,
@@ -1874,8 +1849,7 @@
CF0BD861011D003482A09E57,
1AC99D3EEE323A04D3AE63F2,
936C261CB4AF3F4ADFAB24BC,
BBF061A38D8E944116ADEDE7,
C489DCB1D657E1D541B07554 ); name = "juce_gui_extra"; sourceTree = "<group>"; };
BBF061A38D8E944116ADEDE7 ); name = "juce_gui_extra"; sourceTree = "<group>"; };
2AFD87CC8AFD1A446B75184A = { isa = PBXGroup; children = (
55AFFB566D49AABFA9C0EE6C,
FE8A9052DF38CAA1BCEE9589,
@@ -1891,8 +1865,7 @@
2AFD87CC8AFD1A446B75184A,
8BACFE9F54494195BA7FF7D8,
713D9E0122A7E2363FBCD66A,
1A262C0FE84DB15AB4A3A63B,
186EB749BBB71DA5DAE7791C ); name = "juce_opengl"; sourceTree = "<group>"; };
1A262C0FE84DB15AB4A3A63B ); name = "juce_opengl"; sourceTree = "<group>"; };
5DE40BF538247E9887297ABF = { isa = PBXGroup; children = (
B5BE674CCA98DEAFF320FB0F,
60CFBCD8BF1DB300EAC4EA6B ); name = playback; sourceTree = "<group>"; };
@@ -1910,8 +1883,7 @@
5F3D9EA238ADD783EFD1DFE4,
834F22276689685D839BD252,
C54FB39D60CFBE33D82E4AD8,
EF0A80515EF5B5242182C44A,
820D83351C6FF16ECB901FEF ); name = "juce_video"; sourceTree = "<group>"; };
EF0A80515EF5B5242182C44A ); name = "juce_video"; sourceTree = "<group>"; };
E5BF48D4F140A322338EE283 = { isa = PBXGroup; children = (
490DD8FEC1D97C2CF18A02EE,
F367C338A5224C9213CB6609,
@@ -1947,8 +1919,8 @@
820D83351C6FF16ECB901FEF,
F17DA7BF77594068CF750F2B ); name = "Juce Library Code"; sourceTree = "<group>"; };
019CD423F1EFF7A1A0A079DD = { isa = PBXGroup; children = (
1A9DEA62F6A3CD1FB5CF105B,
4ADECB09FD213B2E910EA229 ); name = Resources; sourceTree = "<group>"; };
A8AC505D7029A6ED167F7614,
E9A41A4A2B3078221D326E76 ); name = Resources; sourceTree = "<group>"; };
244B9AF7D858999910FD243E = { isa = PBXGroup; children = (
9644FB84057301B24B759336,
16FD4309A23B492A636DEBD8,


+ 0
- 140
extras/JuceDemo/Builds/VisualStudio2005/Juce Demo.vcproj View File

@@ -418,16 +418,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_devices">
<Filter Name="audio_io">
@@ -694,16 +684,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_formats">
<Filter Name="format">
@@ -866,16 +846,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_processors">
<Filter Name="processors">
@@ -1026,16 +996,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_utils">
<Filter Name="gui">
@@ -1108,16 +1068,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_core">
<Filter Name="text">
@@ -1940,16 +1890,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.h"/>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_cryptography">
<Filter Name="encryption">
@@ -2022,16 +1962,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.h"/>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_data_structures">
<Filter Name="values">
@@ -2107,16 +2037,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.h"/>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_events">
<Filter Name="messages">
@@ -2311,16 +2231,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.h"/>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_graphics">
<Filter Name="colour">
@@ -2729,16 +2639,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.h"/>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_basics">
<Filter Name="components">
@@ -4063,16 +3963,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_extra">
<Filter Name="code_editor">
@@ -4302,16 +4192,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_opengl">
<Filter Name="opengl">
@@ -4374,16 +4254,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_opengl\juce_opengl.h"/>
<File RelativePath="..\..\..\..\modules\juce_opengl\juce_opengl.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_video">
<Filter Name="playback">
@@ -4448,16 +4318,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_video\juce_video.h"/>
<File RelativePath="..\..\..\..\modules\juce_video\juce_video.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
</Filter>
<Filter Name="Juce Library Code">


+ 0
- 140
extras/JuceDemo/Builds/VisualStudio2008/Juce Demo.vcproj View File

@@ -418,16 +418,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_devices">
<Filter Name="audio_io">
@@ -694,16 +684,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_formats">
<Filter Name="format">
@@ -866,16 +846,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_processors">
<Filter Name="processors">
@@ -1026,16 +996,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_utils">
<Filter Name="gui">
@@ -1108,16 +1068,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_core">
<Filter Name="text">
@@ -1940,16 +1890,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.h"/>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_cryptography">
<Filter Name="encryption">
@@ -2022,16 +1962,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.h"/>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_data_structures">
<Filter Name="values">
@@ -2107,16 +2037,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.h"/>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_events">
<Filter Name="messages">
@@ -2311,16 +2231,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.h"/>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_graphics">
<Filter Name="colour">
@@ -2729,16 +2639,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.h"/>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_basics">
<Filter Name="components">
@@ -4063,16 +3963,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_extra">
<Filter Name="code_editor">
@@ -4302,16 +4192,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_opengl">
<Filter Name="opengl">
@@ -4374,16 +4254,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_opengl\juce_opengl.h"/>
<File RelativePath="..\..\..\..\modules\juce_opengl\juce_opengl.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_video">
<Filter Name="playback">
@@ -4448,16 +4318,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_video\juce_video.h"/>
<File RelativePath="..\..\..\..\modules\juce_video\juce_video.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
</Filter>
<Filter Name="Juce Library Code">


+ 0
- 42
extras/JuceDemo/Builds/VisualStudio2010/Juce Demo.vcxproj View File

@@ -192,9 +192,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\synthesisers\juce_Synthesiser.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\audio_io\juce_AudioDeviceManager.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -264,9 +261,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\native\juce_win32_WASAPI.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_formats\format\juce_AudioFormat.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -306,9 +300,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_formats\sampler\juce_Sampler.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\processors\juce_AudioProcessor.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -342,9 +333,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\scanning\juce_PluginListComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_utils\gui\juce_AudioDeviceSelectorComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -360,9 +348,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_utils\players\juce_AudioProcessorPlayer.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\text\juce_CharacterFunctions.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -564,9 +549,6 @@
<ClCompile Include="..\..\..\..\modules\juce_core\native\juce_win32_Threads.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -582,9 +564,6 @@
<ClCompile Include="..\..\..\..\modules\juce_cryptography\hashing\juce_SHA256.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\juce_cryptography.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_Value.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -600,9 +579,6 @@
<ClCompile Include="..\..\..\..\modules\juce_data_structures\app_properties\juce_PropertiesFile.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_events\messages\juce_ApplicationBase.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -648,9 +624,6 @@
<ClCompile Include="..\..\..\..\modules\juce_events\native\juce_win32_Messaging.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_events\juce_events.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_graphics\colour\juce_Colour.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -753,9 +726,6 @@
<ClCompile Include="..\..\..\..\modules\juce_graphics\native\juce_win32_Fonts.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\components\juce_Component.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -1101,9 +1071,6 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\native\juce_win32_Windowing.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\code_editor\juce_CodeDocument.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -1158,9 +1125,6 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\native\juce_win32_WebBrowserComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_opengl\opengl\juce_OpenGLComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -1173,9 +1137,6 @@
<ClCompile Include="..\..\..\..\modules\juce_opengl\native\juce_win32_OpenGLComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_opengl\juce_opengl.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_video\native\juce_android_CameraDevice.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -1188,9 +1149,6 @@
<ClCompile Include="..\..\..\..\modules\juce_video\native\juce_win32_QuickTimeMovieComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_video\juce_video.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\BinaryData.cpp"/>
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp"/>
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.cpp"/>


+ 0
- 42
extras/JuceDemo/Builds/VisualStudio2010/Juce Demo.vcxproj.filters View File

@@ -445,9 +445,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\juce_module_info">
<Filter>Juce Modules\juce_audio_basics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<Filter>Juce Modules\juce_audio_basics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\audio_io\juce_AudioDeviceManager.cpp">
<Filter>Juce Modules\juce_audio_devices\audio_io</Filter>
</ClCompile>
@@ -526,9 +523,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\juce_module_info">
<Filter>Juce Modules\juce_audio_devices</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.cpp">
<Filter>Juce Modules\juce_audio_devices</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_formats\format\juce_AudioFormat.cpp">
<Filter>Juce Modules\juce_audio_formats\format</Filter>
</ClCompile>
@@ -571,9 +565,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_formats\juce_module_info">
<Filter>Juce Modules\juce_audio_formats</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.cpp">
<Filter>Juce Modules\juce_audio_formats</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\processors\juce_AudioProcessor.cpp">
<Filter>Juce Modules\juce_audio_processors\processors</Filter>
</ClCompile>
@@ -613,9 +604,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\juce_module_info">
<Filter>Juce Modules\juce_audio_processors</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.cpp">
<Filter>Juce Modules\juce_audio_processors</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_utils\gui\juce_AudioDeviceSelectorComponent.cpp">
<Filter>Juce Modules\juce_audio_utils\gui</Filter>
</ClCompile>
@@ -634,9 +622,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_utils\juce_module_info">
<Filter>Juce Modules\juce_audio_utils</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.cpp">
<Filter>Juce Modules\juce_audio_utils</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\text\juce_CharacterFunctions.cpp">
<Filter>Juce Modules\juce_core\text</Filter>
</ClCompile>
@@ -856,9 +841,6 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_module_info">
<Filter>Juce Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<Filter>Juce Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>Juce Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@@ -877,9 +859,6 @@
<ClCompile Include="..\..\..\..\modules\juce_cryptography\juce_module_info">
<Filter>Juce Modules\juce_cryptography</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\juce_cryptography.cpp">
<Filter>Juce Modules\juce_cryptography</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_Value.cpp">
<Filter>Juce Modules\juce_data_structures\values</Filter>
</ClCompile>
@@ -898,9 +877,6 @@
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_module_info">
<Filter>Juce Modules\juce_data_structures</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<Filter>Juce Modules\juce_data_structures</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_events\messages\juce_ApplicationBase.cpp">
<Filter>Juce Modules\juce_events\messages</Filter>
</ClCompile>
@@ -955,9 +931,6 @@
<ClCompile Include="..\..\..\..\modules\juce_events\juce_module_info">
<Filter>Juce Modules\juce_events</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_events\juce_events.cpp">
<Filter>Juce Modules\juce_events</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_graphics\colour\juce_Colour.cpp">
<Filter>Juce Modules\juce_graphics\colour</Filter>
</ClCompile>
@@ -1069,9 +1042,6 @@
<ClCompile Include="..\..\..\..\modules\juce_graphics\juce_module_info">
<Filter>Juce Modules\juce_graphics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<Filter>Juce Modules\juce_graphics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\components\juce_Component.cpp">
<Filter>Juce Modules\juce_gui_basics\components</Filter>
</ClCompile>
@@ -1441,9 +1411,6 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\juce_module_info">
<Filter>Juce Modules\juce_gui_basics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<Filter>Juce Modules\juce_gui_basics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\code_editor\juce_CodeDocument.cpp">
<Filter>Juce Modules\juce_gui_extra\code_editor</Filter>
</ClCompile>
@@ -1516,9 +1483,6 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\juce_module_info">
<Filter>Juce Modules\juce_gui_extra</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<Filter>Juce Modules\juce_gui_extra</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_opengl\opengl\juce_OpenGLComponent.cpp">
<Filter>Juce Modules\juce_opengl\opengl</Filter>
</ClCompile>
@@ -1540,9 +1504,6 @@
<ClCompile Include="..\..\..\..\modules\juce_opengl\juce_module_info">
<Filter>Juce Modules\juce_opengl</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_opengl\juce_opengl.cpp">
<Filter>Juce Modules\juce_opengl</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_video\native\juce_android_CameraDevice.cpp">
<Filter>Juce Modules\juce_video\native</Filter>
</ClCompile>
@@ -1564,9 +1525,6 @@
<ClCompile Include="..\..\..\..\modules\juce_video\juce_module_info">
<Filter>Juce Modules\juce_video</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_video\juce_video.cpp">
<Filter>Juce Modules\juce_video</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\BinaryData.cpp">
<Filter>Juce Library Code</Filter>
</ClCompile>


+ 17
- 45
extras/JuceDemo/Builds/iOS/Juce Demo.xcodeproj/project.pbxproj View File

@@ -13,7 +13,7 @@
268F2BF480CF9844E2F2B974 = { isa = PBXBuildFile; fileRef = 3527DD3108DADE4A1D02AD40; };
F1BAE9DCD179C8784FF28F8D = { isa = PBXBuildFile; fileRef = 607C28F1955FAEFF3BEE5AB0; };
1DF18F6B9CCFF7BD07C36AC2 = { isa = PBXBuildFile; fileRef = 256FD4DB3ECCF6AACB89AB6E; };
C0A3C433D146C7E1FFCADFB2 = { isa = PBXBuildFile; fileRef = 4ADECB09FD213B2E910EA229; };
C0A3C433D146C7E1FFCADFB2 = { isa = PBXBuildFile; fileRef = E9A41A4A2B3078221D326E76; };
78A66C2F9A9E2E6D011D8E5E = { isa = PBXBuildFile; fileRef = 3EB8A248383A603E9E5C053B; };
CE5C46E66485B7D77B5ADB4E = { isa = PBXBuildFile; fileRef = 4C3B9F689355B9123890C487; };
2E2DB52D03DD6A56FAC937A4 = { isa = PBXBuildFile; fileRef = 885EE0F3A7E8366A33859103; };
@@ -136,7 +136,6 @@
134BC54CB4FE7F00C1DB353F = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Synthesiser.h"; path = "../../../../modules/juce_audio_basics/synthesisers/juce_Synthesiser.h"; sourceTree = "SOURCE_ROOT"; };
DCDF4EC4657D3B23563BD718 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
56D79C9D0B727832E4AE34D7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_basics.h"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.h"; sourceTree = "SOURCE_ROOT"; };
8F21A2C908CD10F51A9B2519 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_basics.mm"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
5D4B2A709D10E343A776F4A2 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioDeviceManager.cpp"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.cpp"; sourceTree = "SOURCE_ROOT"; };
B4540DFC77BAF92976B0518A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioDeviceManager.h"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.h"; sourceTree = "SOURCE_ROOT"; };
A04F57546B15826A8031DC78 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioIODevice.cpp"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioIODevice.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -175,7 +174,6 @@
2C5E329D77B6704FCE76C411 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WASAPI.cpp"; path = "../../../../modules/juce_audio_devices/native/juce_win32_WASAPI.cpp"; sourceTree = "SOURCE_ROOT"; };
8F98EAD495FA1991295C722B = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_devices/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
ACFE80BF62523C82141D6947 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_devices.h"; path = "../../../../modules/juce_audio_devices/juce_audio_devices.h"; sourceTree = "SOURCE_ROOT"; };
90332E18B4E7E5DD96EEF92C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_devices.mm"; path = "../../../../modules/juce_audio_devices/juce_audio_devices.mm"; sourceTree = "SOURCE_ROOT"; };
F6C98E45962CF2D5416592C1 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormat.cpp"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
B414083F6E9C1BD1C7B6D480 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioFormat.h"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
8C595F9EB12B7EC007CA8C83 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormatManager.cpp"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormatManager.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -204,7 +202,6 @@
C2A1EEED9FF43F120DF3A449 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Sampler.h"; path = "../../../../modules/juce_audio_formats/sampler/juce_Sampler.h"; sourceTree = "SOURCE_ROOT"; };
709571635714003B7D69B853 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_formats/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
27BFB648561FB2B6A2C50151 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_formats.h"; path = "../../../../modules/juce_audio_formats/juce_audio_formats.h"; sourceTree = "SOURCE_ROOT"; };
75A9233BF895CF50482DC713 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_formats.mm"; path = "../../../../modules/juce_audio_formats/juce_audio_formats.mm"; sourceTree = "SOURCE_ROOT"; };
60CD2F2F87AF326A402D6A98 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioPlayHead.h"; path = "../../../../modules/juce_audio_processors/processors/juce_AudioPlayHead.h"; sourceTree = "SOURCE_ROOT"; };
BC2A6B8E45EE536BD6862B2A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioPluginInstance.h"; path = "../../../../modules/juce_audio_processors/processors/juce_AudioPluginInstance.h"; sourceTree = "SOURCE_ROOT"; };
8075FFE6187B8729A422984B = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioProcessor.cpp"; path = "../../../../modules/juce_audio_processors/processors/juce_AudioProcessor.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -237,7 +234,6 @@
7D0BC0AE9011746EB49FD400 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PluginListComponent.h"; path = "../../../../modules/juce_audio_processors/scanning/juce_PluginListComponent.h"; sourceTree = "SOURCE_ROOT"; };
73CF7531ABC6DF9E39B85578 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_processors/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
0FC5E393900A3EE2C3040115 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_processors.h"; path = "../../../../modules/juce_audio_processors/juce_audio_processors.h"; sourceTree = "SOURCE_ROOT"; };
FF3039642C893057AA29D601 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_processors.mm"; path = "../../../../modules/juce_audio_processors/juce_audio_processors.mm"; sourceTree = "SOURCE_ROOT"; };
85369DC5F12B3D3BC948DF17 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioDeviceSelectorComponent.cpp"; path = "../../../../modules/juce_audio_utils/gui/juce_AudioDeviceSelectorComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
52A3B77ECFF319A1E023619C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioDeviceSelectorComponent.h"; path = "../../../../modules/juce_audio_utils/gui/juce_AudioDeviceSelectorComponent.h"; sourceTree = "SOURCE_ROOT"; };
9E95FEFF09B19F0B1B06841D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioThumbnail.cpp"; path = "../../../../modules/juce_audio_utils/gui/juce_AudioThumbnail.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -250,7 +246,6 @@
F036F3BC653B8E93AD5FCB55 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioProcessorPlayer.h"; path = "../../../../modules/juce_audio_utils/players/juce_AudioProcessorPlayer.h"; sourceTree = "SOURCE_ROOT"; };
244D5A8110CE894496E0A771 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_utils/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
0F62B0D5CCE383D8324F703C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_utils.h"; path = "../../../../modules/juce_audio_utils/juce_audio_utils.h"; sourceTree = "SOURCE_ROOT"; };
9401AFEEEC997D124DA91D2F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_utils.mm"; path = "../../../../modules/juce_audio_utils/juce_audio_utils.mm"; sourceTree = "SOURCE_ROOT"; };
A5C2FB9BFC451D9894FFDD6C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CharacterFunctions.cpp"; path = "../../../../modules/juce_core/text/juce_CharacterFunctions.cpp"; sourceTree = "SOURCE_ROOT"; };
0F21A857E7128F49283759D8 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharacterFunctions.h"; path = "../../../../modules/juce_core/text/juce_CharacterFunctions.h"; sourceTree = "SOURCE_ROOT"; };
312DDC8FF9A1392424B43914 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharPointer_ASCII.h"; path = "../../../../modules/juce_core/text/juce_CharPointer_ASCII.h"; sourceTree = "SOURCE_ROOT"; };
@@ -425,7 +420,6 @@
B2D4CDF3C95547DB53208851 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Threads.cpp"; path = "../../../../modules/juce_core/native/juce_win32_Threads.cpp"; sourceTree = "SOURCE_ROOT"; };
54D299F53D33499D77561B2D = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_core/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
D9E89C5302BEF3F345828D57 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_core.h"; path = "../../../../modules/juce_core/juce_core.h"; sourceTree = "SOURCE_ROOT"; };
11E51784BE821F76011EA24F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../../../modules/juce_core/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
56B2050F05D7C54BA14D846E = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_BlowFish.cpp"; path = "../../../../modules/juce_cryptography/encryption/juce_BlowFish.cpp"; sourceTree = "SOURCE_ROOT"; };
8503898EB640573A93F6E2F4 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BlowFish.h"; path = "../../../../modules/juce_cryptography/encryption/juce_BlowFish.h"; sourceTree = "SOURCE_ROOT"; };
CC857EB96F6D93C84B252EE3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Primes.cpp"; path = "../../../../modules/juce_cryptography/encryption/juce_Primes.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -438,7 +432,6 @@
EEE54FB4600BAC9B59D59A87 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SHA256.h"; path = "../../../../modules/juce_cryptography/hashing/juce_SHA256.h"; sourceTree = "SOURCE_ROOT"; };
37EB2C7AAE77C9D547DD2ABE = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_cryptography/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
7473E0E4BC24F7116C2CB31C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_cryptography.h"; path = "../../../../modules/juce_cryptography/juce_cryptography.h"; sourceTree = "SOURCE_ROOT"; };
F9361FAEEB08C28AF4D763E6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_cryptography.mm"; path = "../../../../modules/juce_cryptography/juce_cryptography.mm"; sourceTree = "SOURCE_ROOT"; };
227468E75FAD39D9BF5B6DD5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Value.cpp"; path = "../../../../modules/juce_data_structures/values/juce_Value.cpp"; sourceTree = "SOURCE_ROOT"; };
D83311A0F150DB70121E2FB3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Value.h"; path = "../../../../modules/juce_data_structures/values/juce_Value.h"; sourceTree = "SOURCE_ROOT"; };
DBFF5FC53DD94A30B7FB7268 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ValueTree.cpp"; path = "../../../../modules/juce_data_structures/values/juce_ValueTree.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -452,7 +445,6 @@
D49D2B6FD6BEB44454C95F27 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PropertiesFile.h"; path = "../../../../modules/juce_data_structures/app_properties/juce_PropertiesFile.h"; sourceTree = "SOURCE_ROOT"; };
886B0FE3E0ED5BB9B4C6F310 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_data_structures/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
C6D79A4895E3FAD7C9CA1CC9 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_data_structures.h"; path = "../../../../modules/juce_data_structures/juce_data_structures.h"; sourceTree = "SOURCE_ROOT"; };
BB9106B86ABC08E0D90EDF5F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_data_structures.mm"; path = "../../../../modules/juce_data_structures/juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
609B7D83C90F5999F39868A6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ApplicationBase.cpp"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.cpp"; sourceTree = "SOURCE_ROOT"; };
5EFE84CEEBFD6B6803E2391C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationBase.h"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.h"; sourceTree = "SOURCE_ROOT"; };
1BD69B98EF6EC464D5AE009C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CallbackMessage.h"; path = "../../../../modules/juce_events/messages/juce_CallbackMessage.h"; sourceTree = "SOURCE_ROOT"; };
@@ -491,7 +483,6 @@
EEF1DF3ACDAD8B145E0C29A5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Messaging.cpp"; path = "../../../../modules/juce_events/native/juce_win32_Messaging.cpp"; sourceTree = "SOURCE_ROOT"; };
C993C2AB4F52EC0F2C5E4D6B = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_events/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
C130B03AA102D1970BB4B021 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_events.h"; path = "../../../../modules/juce_events/juce_events.h"; sourceTree = "SOURCE_ROOT"; };
632ECC6114A6E4921ED9116C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_events.mm"; path = "../../../../modules/juce_events/juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
839950628717161977AC8C49 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Colour.cpp"; path = "../../../../modules/juce_graphics/colour/juce_Colour.cpp"; sourceTree = "SOURCE_ROOT"; };
6428DF2323392BC2D90C9612 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Colour.h"; path = "../../../../modules/juce_graphics/colour/juce_Colour.h"; sourceTree = "SOURCE_ROOT"; };
39F14F2C3B9C2AEF67351496 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ColourGradient.cpp"; path = "../../../../modules/juce_graphics/colour/juce_ColourGradient.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -565,7 +556,6 @@
4DE18664FAC0D108F0D29C72 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Fonts.cpp"; path = "../../../../modules/juce_graphics/native/juce_win32_Fonts.cpp"; sourceTree = "SOURCE_ROOT"; };
6CEE39A804B86B21AAD3AB71 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_graphics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
770F8B2B6F22A247D7908A81 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_graphics.h"; path = "../../../../modules/juce_graphics/juce_graphics.h"; sourceTree = "SOURCE_ROOT"; };
A7CF270385AF52A4ED66DE11 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_graphics.mm"; path = "../../../../modules/juce_graphics/juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
09AFA4C0E4E8DA3F688A440D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Component.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_Component.cpp"; sourceTree = "SOURCE_ROOT"; };
9555633C6FDDEAFE85265322 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Component.h"; path = "../../../../modules/juce_gui_basics/components/juce_Component.h"; sourceTree = "SOURCE_ROOT"; };
5F33454A85BDFE9886F90ADE = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentListener.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_ComponentListener.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -810,7 +800,6 @@
B2613BD0D20242A9534DE0E4 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Windowing.cpp"; path = "../../../../modules/juce_gui_basics/native/juce_win32_Windowing.cpp"; sourceTree = "SOURCE_ROOT"; };
EFBDDE9EAC44AB1FB29AD43F = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
8EDA81B2CECDA8DA3353279F = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_basics.h"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.h"; sourceTree = "SOURCE_ROOT"; };
BA9574ED4A899A071CEF26F8 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_basics.mm"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
3C0AF7BCA0C65DEFE26BD3F5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeDocument.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.cpp"; sourceTree = "SOURCE_ROOT"; };
D173AAD2E51F6DE12FC4B958 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CodeDocument.h"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.h"; sourceTree = "SOURCE_ROOT"; };
98D473C53CD9F8C6F6A3C0CF = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeEditorComponent.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -855,7 +844,6 @@
82E1F0A94936BC562DFF155C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WebBrowserComponent.cpp"; path = "../../../../modules/juce_gui_extra/native/juce_win32_WebBrowserComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
936C261CB4AF3F4ADFAB24BC = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_extra/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
BBF061A38D8E944116ADEDE7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_extra.h"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.h"; sourceTree = "SOURCE_ROOT"; };
C489DCB1D657E1D541B07554 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_extra.mm"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.mm"; sourceTree = "SOURCE_ROOT"; };
55AFFB566D49AABFA9C0EE6C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OpenGLComponent.cpp"; path = "../../../../modules/juce_opengl/opengl/juce_OpenGLComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
FE8A9052DF38CAA1BCEE9589 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLComponent.h"; path = "../../../../modules/juce_opengl/opengl/juce_OpenGLComponent.h"; sourceTree = "SOURCE_ROOT"; };
1763C4B21169FE19DCB32BBD = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLContext.h"; path = "../../../../modules/juce_opengl/opengl/juce_OpenGLContext.h"; sourceTree = "SOURCE_ROOT"; };
@@ -867,7 +855,6 @@
5FFE23DDE3CD2FE0CECA8EE0 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_OpenGLComponent.cpp"; path = "../../../../modules/juce_opengl/native/juce_win32_OpenGLComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
713D9E0122A7E2363FBCD66A = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_opengl/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
1A262C0FE84DB15AB4A3A63B = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_opengl.h"; path = "../../../../modules/juce_opengl/juce_opengl.h"; sourceTree = "SOURCE_ROOT"; };
186EB749BBB71DA5DAE7791C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_opengl.mm"; path = "../../../../modules/juce_opengl/juce_opengl.mm"; sourceTree = "SOURCE_ROOT"; };
B5BE674CCA98DEAFF320FB0F = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DirectShowComponent.h"; path = "../../../../modules/juce_video/playback/juce_DirectShowComponent.h"; sourceTree = "SOURCE_ROOT"; };
60CFBCD8BF1DB300EAC4EA6B = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_QuickTimeMovieComponent.h"; path = "../../../../modules/juce_video/playback/juce_QuickTimeMovieComponent.h"; sourceTree = "SOURCE_ROOT"; };
3E3E0587F61AD4A92C2661E5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CameraDevice.h"; path = "../../../../modules/juce_video/capture/juce_CameraDevice.h"; sourceTree = "SOURCE_ROOT"; };
@@ -879,7 +866,6 @@
E7878030A3150ADF14B14D7C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_QuickTimeMovieComponent.cpp"; path = "../../../../modules/juce_video/native/juce_win32_QuickTimeMovieComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
C54FB39D60CFBE33D82E4AD8 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_video/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
EF0A80515EF5B5242182C44A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_video.h"; path = "../../../../modules/juce_video/juce_video.h"; sourceTree = "SOURCE_ROOT"; };
820D83351C6FF16ECB901FEF = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_video.mm"; path = "../../../../modules/juce_video/juce_video.mm"; sourceTree = "SOURCE_ROOT"; };
EFE1F8AD3A592FD4FC84D502 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = "SOURCE_ROOT"; };
29991F7B599C385152E4968F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BinaryData.cpp; path = ../../JuceLibraryCode/BinaryData.cpp; sourceTree = "SOURCE_ROOT"; };
48FBAA49E95411B6D0E07C2A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = BinaryData.h; path = ../../JuceLibraryCode/BinaryData.h; sourceTree = "SOURCE_ROOT"; };
@@ -988,8 +974,7 @@
127130A5BDDC80D2EFA81AB7,
E6D0352F5EEC608B7033A5A2,
DCDF4EC4657D3B23563BD718,
56D79C9D0B727832E4AE34D7,
8F21A2C908CD10F51A9B2519 ); name = "juce_audio_basics"; sourceTree = "<group>"; };
56D79C9D0B727832E4AE34D7 ); name = "juce_audio_basics"; sourceTree = "<group>"; };
34CBA7E15A8614DE4047D0B6 = { isa = PBXGroup; children = (
5D4B2A709D10E343A776F4A2,
B4540DFC77BAF92976B0518A,
@@ -1038,8 +1023,7 @@
12B982373762043F81FB4590,
2A55B251683A4DD470915CD6,
8F98EAD495FA1991295C722B,
ACFE80BF62523C82141D6947,
90332E18B4E7E5DD96EEF92C ); name = "juce_audio_devices"; sourceTree = "<group>"; };
ACFE80BF62523C82141D6947 ); name = "juce_audio_devices"; sourceTree = "<group>"; };
7545EF2861EC74E7F0701EF1 = { isa = PBXGroup; children = (
F6C98E45962CF2D5416592C1,
B414083F6E9C1BD1C7B6D480,
@@ -1074,8 +1058,7 @@
B5ED5E6584547689F8D7A38D,
6F10FB943DD0E03288A5FA02,
709571635714003B7D69B853,
27BFB648561FB2B6A2C50151,
75A9233BF895CF50482DC713 ); name = "juce_audio_formats"; sourceTree = "<group>"; };
27BFB648561FB2B6A2C50151 ); name = "juce_audio_formats"; sourceTree = "<group>"; };
68E50F42BD0F124E89E2CC9A = { isa = PBXGroup; children = (
60CD2F2F87AF326A402D6A98,
BC2A6B8E45EE536BD6862B2A,
@@ -1116,8 +1099,7 @@
31B0F213666DFF342C2F31FB,
4FC748452E42CC700EEE0ADA,
73CF7531ABC6DF9E39B85578,
0FC5E393900A3EE2C3040115,
FF3039642C893057AA29D601 ); name = "juce_audio_processors"; sourceTree = "<group>"; };
0FC5E393900A3EE2C3040115 ); name = "juce_audio_processors"; sourceTree = "<group>"; };
CA434F5DF551D188141C868B = { isa = PBXGroup; children = (
85369DC5F12B3D3BC948DF17,
52A3B77ECFF319A1E023619C,
@@ -1134,8 +1116,7 @@
CA434F5DF551D188141C868B,
0DCD3B0AA20EDF472F63AD81,
244D5A8110CE894496E0A771,
0F62B0D5CCE383D8324F703C,
9401AFEEEC997D124DA91D2F ); name = "juce_audio_utils"; sourceTree = "<group>"; };
0F62B0D5CCE383D8324F703C ); name = "juce_audio_utils"; sourceTree = "<group>"; };
A6EC4A656C5D7458AC474BB4 = { isa = PBXGroup; children = (
A5C2FB9BFC451D9894FFDD6C,
0F21A857E7128F49283759D8,
@@ -1344,8 +1325,7 @@
ED6DB2289BFF9CD9EBB3FA57,
EB75031D414FF79274E6DCD5,
54D299F53D33499D77561B2D,
D9E89C5302BEF3F345828D57,
11E51784BE821F76011EA24F ); name = "juce_core"; sourceTree = "<group>"; };
D9E89C5302BEF3F345828D57 ); name = "juce_core"; sourceTree = "<group>"; };
E5B0983F7D1A403F2771C628 = { isa = PBXGroup; children = (
56B2050F05D7C54BA14D846E,
8503898EB640573A93F6E2F4,
@@ -1362,8 +1342,7 @@
E5B0983F7D1A403F2771C628,
F89693FC360AED110B092BC6,
37EB2C7AAE77C9D547DD2ABE,
7473E0E4BC24F7116C2CB31C,
F9361FAEEB08C28AF4D763E6 ); name = "juce_cryptography"; sourceTree = "<group>"; };
7473E0E4BC24F7116C2CB31C ); name = "juce_cryptography"; sourceTree = "<group>"; };
9C65E7F52E573A350DF8E9BA = { isa = PBXGroup; children = (
227468E75FAD39D9BF5B6DD5,
D83311A0F150DB70121E2FB3,
@@ -1383,8 +1362,7 @@
14943914DA17F0B0C9E11408,
F260C3BE7A062E1D407188B9,
886B0FE3E0ED5BB9B4C6F310,
C6D79A4895E3FAD7C9CA1CC9,
BB9106B86ABC08E0D90EDF5F ); name = "juce_data_structures"; sourceTree = "<group>"; };
C6D79A4895E3FAD7C9CA1CC9 ); name = "juce_data_structures"; sourceTree = "<group>"; };
0623E1C012A55B0F64F29B60 = { isa = PBXGroup; children = (
609B7D83C90F5999F39868A6,
5EFE84CEEBFD6B6803E2391C,
@@ -1433,8 +1411,7 @@
0C65851AD8B8F72B5022A7A0,
02282B18FC7EF9236A50BA39,
C993C2AB4F52EC0F2C5E4D6B,
C130B03AA102D1970BB4B021,
632ECC6114A6E4921ED9116C ); name = "juce_events"; sourceTree = "<group>"; };
C130B03AA102D1970BB4B021 ); name = "juce_events"; sourceTree = "<group>"; };
86D45CB4B1C570AA6560B736 = { isa = PBXGroup; children = (
839950628717161977AC8C49,
6428DF2323392BC2D90C9612,
@@ -1526,8 +1503,7 @@
301CB73D485B7EE2DEBE4BB9,
4F9EF9B91A34AF9114254A57,
6CEE39A804B86B21AAD3AB71,
770F8B2B6F22A247D7908A81,
A7CF270385AF52A4ED66DE11 ); name = "juce_graphics"; sourceTree = "<group>"; };
770F8B2B6F22A247D7908A81 ); name = "juce_graphics"; sourceTree = "<group>"; };
C5CD445B22024CD1653D4E3D = { isa = PBXGroup; children = (
09AFA4C0E4E8DA3F688A440D,
9555633C6FDDEAFE85265322,
@@ -1806,8 +1782,7 @@
17138A6E8BEC1222F139E4BD,
B2979FB3E4771D5805398883,
EFBDDE9EAC44AB1FB29AD43F,
8EDA81B2CECDA8DA3353279F,
BA9574ED4A899A071CEF26F8 ); name = "juce_gui_basics"; sourceTree = "<group>"; };
8EDA81B2CECDA8DA3353279F ); name = "juce_gui_basics"; sourceTree = "<group>"; };
BD4E249C6350CE539DFE3B25 = { isa = PBXGroup; children = (
3C0AF7BCA0C65DEFE26BD3F5,
D173AAD2E51F6DE12FC4B958,
@@ -1864,8 +1839,7 @@
CF0BD861011D003482A09E57,
1AC99D3EEE323A04D3AE63F2,
936C261CB4AF3F4ADFAB24BC,
BBF061A38D8E944116ADEDE7,
C489DCB1D657E1D541B07554 ); name = "juce_gui_extra"; sourceTree = "<group>"; };
BBF061A38D8E944116ADEDE7 ); name = "juce_gui_extra"; sourceTree = "<group>"; };
2AFD87CC8AFD1A446B75184A = { isa = PBXGroup; children = (
55AFFB566D49AABFA9C0EE6C,
FE8A9052DF38CAA1BCEE9589,
@@ -1881,8 +1855,7 @@
2AFD87CC8AFD1A446B75184A,
8BACFE9F54494195BA7FF7D8,
713D9E0122A7E2363FBCD66A,
1A262C0FE84DB15AB4A3A63B,
186EB749BBB71DA5DAE7791C ); name = "juce_opengl"; sourceTree = "<group>"; };
1A262C0FE84DB15AB4A3A63B ); name = "juce_opengl"; sourceTree = "<group>"; };
5DE40BF538247E9887297ABF = { isa = PBXGroup; children = (
B5BE674CCA98DEAFF320FB0F,
60CFBCD8BF1DB300EAC4EA6B ); name = playback; sourceTree = "<group>"; };
@@ -1900,8 +1873,7 @@
5F3D9EA238ADD783EFD1DFE4,
834F22276689685D839BD252,
C54FB39D60CFBE33D82E4AD8,
EF0A80515EF5B5242182C44A,
820D83351C6FF16ECB901FEF ); name = "juce_video"; sourceTree = "<group>"; };
EF0A80515EF5B5242182C44A ); name = "juce_video"; sourceTree = "<group>"; };
E5BF48D4F140A322338EE283 = { isa = PBXGroup; children = (
490DD8FEC1D97C2CF18A02EE,
F367C338A5224C9213CB6609,
@@ -1937,8 +1909,8 @@
820D83351C6FF16ECB901FEF,
F17DA7BF77594068CF750F2B ); name = "Juce Library Code"; sourceTree = "<group>"; };
019CD423F1EFF7A1A0A079DD = { isa = PBXGroup; children = (
1A9DEA62F6A3CD1FB5CF105B,
4ADECB09FD213B2E910EA229 ); name = Resources; sourceTree = "<group>"; };
A8AC505D7029A6ED167F7614,
E9A41A4A2B3078221D326E76 ); name = Resources; sourceTree = "<group>"; };
244B9AF7D858999910FD243E = { isa = PBXGroup; children = (
9644FB84057301B24B759336,
6E20C121C0244B82DA2E3D95,


+ 5
- 0
extras/JuceDemo/JuceLibraryCode/AppConfig.h View File

@@ -10,6 +10,9 @@
*/
#ifndef __JUCE_APPCONFIG_SLVVV6J__
#define __JUCE_APPCONFIG_SLVVV6J__
//==============================================================================
#define JUCE_MODULE_AVAILABLE_juce_audio_basics 1
#define JUCE_MODULE_AVAILABLE_juce_audio_devices 1
@@ -82,3 +85,5 @@
//#define JUCE_MEDIAFOUNDATION
//#define JUCE_QUICKTIME
//#define JUCE_USE_CAMERA
#endif // __JUCE_APPCONFIG_SLVVV6J__

+ 14
- 14
extras/JuceDemo/JuceLibraryCode/JuceHeader.h View File

@@ -14,20 +14,20 @@
#define __APPHEADERFILE_SLVVV6J__
#include "AppConfig.h"
#include "../../../modules/juce_audio_basics/juce_audio_basics.h"
#include "../../../modules/juce_audio_devices/juce_audio_devices.h"
#include "../../../modules/juce_audio_formats/juce_audio_formats.h"
#include "../../../modules/juce_audio_processors/juce_audio_processors.h"
#include "../../../modules/juce_audio_utils/juce_audio_utils.h"
#include "../../../modules/juce_core/juce_core.h"
#include "../../../modules/juce_cryptography/juce_cryptography.h"
#include "../../../modules/juce_data_structures/juce_data_structures.h"
#include "../../../modules/juce_events/juce_events.h"
#include "../../../modules/juce_graphics/juce_graphics.h"
#include "../../../modules/juce_gui_basics/juce_gui_basics.h"
#include "../../../modules/juce_gui_extra/juce_gui_extra.h"
#include "../../../modules/juce_opengl/juce_opengl.h"
#include "../../../modules/juce_video/juce_video.h"
#include "modules/juce_audio_basics/juce_audio_basics.h"
#include "modules/juce_audio_devices/juce_audio_devices.h"
#include "modules/juce_audio_formats/juce_audio_formats.h"
#include "modules/juce_audio_processors/juce_audio_processors.h"
#include "modules/juce_audio_utils/juce_audio_utils.h"
#include "modules/juce_core/juce_core.h"
#include "modules/juce_cryptography/juce_cryptography.h"
#include "modules/juce_data_structures/juce_data_structures.h"
#include "modules/juce_events/juce_events.h"
#include "modules/juce_graphics/juce_graphics.h"
#include "modules/juce_gui_basics/juce_gui_basics.h"
#include "modules/juce_gui_extra/juce_gui_extra.h"
#include "modules/juce_opengl/juce_opengl.h"
#include "modules/juce_video/juce_video.h"
#include "BinaryData.h"
#if ! DONT_SET_USING_JUCE_NAMESPACE


+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_basics/juce_audio_basics.h"

+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_devices/juce_audio_devices.h"

+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_formats/juce_audio_formats.h"

+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_processors/juce_audio_processors.h"

+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_utils/juce_audio_utils.h"

+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_core/juce_core.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_core/juce_core.h"

+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_cryptography/juce_cryptography.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_cryptography/juce_cryptography.h"

+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_data_structures/juce_data_structures.h"

+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_events/juce_events.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_events/juce_events.h"

+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_graphics/juce_graphics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_graphics/juce_graphics.h"

+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_gui_basics/juce_gui_basics.h"

+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_gui_extra/juce_gui_extra.h"

+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_opengl/juce_opengl.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_opengl/juce_opengl.h"

+ 5
- 0
extras/JuceDemo/JuceLibraryCode/modules/juce_video/juce_video.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_video/juce_video.h"

+ 15
- 55
extras/audio plugin demo/Builds/MacOSX/JuceDemoPlugin.xcodeproj/project.pbxproj View File

@@ -15,11 +15,7 @@
53E2C1531CB485CCDD230774 = { isa = PBXBuildFile; fileRef = C09F6A2FBEFF0F38125A551C; };
B9C31FD116F29E7E4752EB90 = { isa = PBXBuildFile; fileRef = C34B957877739BB7C1FFBB77; };
AFB1D55C5DA4C99D90DF3A6A = { isa = PBXBuildFile; fileRef = 1DF94DC094A7FF7C1749869C; };
370C0F92C3CC1B6C563A7A94 = { isa = PBXBuildFile; fileRef = 635788ACC69189717F58CA9A; };
205AA28314AC784F2CF1FA98 = { isa = PBXBuildFile; fileRef = 63F10BF045280E6585115FE5; };
68746D242F6A6102FDD5D03D = { isa = PBXBuildFile; fileRef = D735BC4AE330478AE9B1AB61; };
CBE9E6042991B0677E3136D2 = { isa = PBXBuildFile; fileRef = 2FC5A14AC79AA4402816062A; };
73B8F48633153DA5A10873E8 = { isa = PBXBuildFile; fileRef = FC7C0402A58CCCFFEB565C45; };
5AF66C048A4815F5A8ECDDCD = { isa = PBXBuildFile; fileRef = 56A1E6E99EC1CC942E6FE493; };
209FB8C7F7BE85A70E5D98D7 = { isa = PBXBuildFile; fileRef = 975072819FE84412C5F7FF0F; };
AEF69B599D0CEC30C1BC8C0C = { isa = PBXBuildFile; fileRef = C545DFD6A1914807006CDA49; settings = {COMPILER_FLAGS = "-w"; }; };
@@ -73,11 +69,7 @@
C09F6A2FBEFF0F38125A551C = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
C34B957877739BB7C1FFBB77 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiscRecording.framework; path = System/Library/Frameworks/DiscRecording.framework; sourceTree = SDKROOT; };
1DF94DC094A7FF7C1749869C = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
635788ACC69189717F58CA9A = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
63F10BF045280E6585115FE5 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = System/Library/Frameworks/QTKit.framework; sourceTree = SDKROOT; };
D735BC4AE330478AE9B1AB61 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
2FC5A14AC79AA4402816062A = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = System/Library/Frameworks/QuickTime.framework; sourceTree = SDKROOT; };
FC7C0402A58CCCFFEB565C45 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
AF721FB8136D2CAA9404AD8D = { isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = JuceDemoPlugin.component; sourceTree = "BUILT_PRODUCTS_DIR"; };
1F66E4A5CF1B4F78B542C7C4 = { isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Info.plist; sourceTree = "SOURCE_ROOT"; };
56A1E6E99EC1CC942E6FE493 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PluginProcessor.cpp; path = ../../Source/PluginProcessor.cpp; sourceTree = "SOURCE_ROOT"; };
@@ -122,7 +114,6 @@
8904599403DF18AB70AE87FF = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Synthesiser.h"; path = "../../../../modules/juce_audio_basics/synthesisers/juce_Synthesiser.h"; sourceTree = "SOURCE_ROOT"; };
4399D11DB35FD4CE050E18D8 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
CD9010E5595411CD92718598 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_basics.h"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.h"; sourceTree = "SOURCE_ROOT"; };
05EA361156AEB990C86E76DA = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_basics.mm"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
D404AEC9EB028CEE46493562 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioDeviceManager.cpp"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.cpp"; sourceTree = "SOURCE_ROOT"; };
2A1D9144C59B92B32483924B = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioDeviceManager.h"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.h"; sourceTree = "SOURCE_ROOT"; };
1608DAADC9F62BF53E141D39 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioIODevice.cpp"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioIODevice.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -161,7 +152,6 @@
9217B5E5D59719DA7D5915D2 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WASAPI.cpp"; path = "../../../../modules/juce_audio_devices/native/juce_win32_WASAPI.cpp"; sourceTree = "SOURCE_ROOT"; };
06517E2CF4EBB22CD72FB3EC = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_devices/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
13B81408B043D51DC2E0BA08 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_devices.h"; path = "../../../../modules/juce_audio_devices/juce_audio_devices.h"; sourceTree = "SOURCE_ROOT"; };
06FCB26113D88E6745C14AED = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_devices.mm"; path = "../../../../modules/juce_audio_devices/juce_audio_devices.mm"; sourceTree = "SOURCE_ROOT"; };
6C83019DF40D9B6FF038D381 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormat.cpp"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
2ADD8B87CC7DB46B76992541 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioFormat.h"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
F312D3E70F1C175BB5ADDD44 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormatManager.cpp"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormatManager.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -190,9 +180,7 @@
396A7235EED5D8ADBCC6F6FA = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Sampler.h"; path = "../../../../modules/juce_audio_formats/sampler/juce_Sampler.h"; sourceTree = "SOURCE_ROOT"; };
E75F05BBA5F5A9D52B4CF903 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_formats/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
AD794990A4F15B4041A84212 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_formats.h"; path = "../../../../modules/juce_audio_formats/juce_audio_formats.h"; sourceTree = "SOURCE_ROOT"; };
EC62B784468669FBF60F09C4 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_formats.mm"; path = "../../../../modules/juce_audio_formats/juce_audio_formats.mm"; sourceTree = "SOURCE_ROOT"; };
44FEE080FE59D18124DB4EBB = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_AU_Wrapper.mm"; path = "../../../../modules/juce_audio_plugin_client/AU/juce_AU_Wrapper.mm"; sourceTree = "SOURCE_ROOT"; };
7BF303BE4A1C3F0252BBFE8B = { isa = PBXFileReference; lastKnownFileType = file.r; name = "juce_AU_Resources.r"; path = "../../../../modules/juce_audio_plugin_client/AU/juce_AU_Resources.r"; sourceTree = "SOURCE_ROOT"; };
348FB0933E37EC4F6BBF7F28 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RTAS_DigiCode1.cpp"; path = "../../../../modules/juce_audio_plugin_client/RTAS/juce_RTAS_DigiCode1.cpp"; sourceTree = "SOURCE_ROOT"; };
841541809B65CD82B1AB9685 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RTAS_DigiCode2.cpp"; path = "../../../../modules/juce_audio_plugin_client/RTAS/juce_RTAS_DigiCode2.cpp"; sourceTree = "SOURCE_ROOT"; };
C3ABD38DF892AED50887ACD2 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RTAS_DigiCode3.cpp"; path = "../../../../modules/juce_audio_plugin_client/RTAS/juce_RTAS_DigiCode3.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -200,7 +188,6 @@
CFAA3652EBEB3B4D440CF898 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RTAS_Wrapper.cpp"; path = "../../../../modules/juce_audio_plugin_client/RTAS/juce_RTAS_Wrapper.cpp"; sourceTree = "SOURCE_ROOT"; };
E0D6B14655737E2F1817DE64 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_RTAS_MacUtilities.mm"; path = "../../../../modules/juce_audio_plugin_client/RTAS/juce_RTAS_MacUtilities.mm"; sourceTree = "SOURCE_ROOT"; };
5FE2856C1457A8D8206DCEE8 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RTAS_DigiCode_Header.h"; path = "../../../../modules/juce_audio_plugin_client/RTAS/juce_RTAS_DigiCode_Header.h"; sourceTree = "SOURCE_ROOT"; };
DB1BB9AF7FE0A2AA38D76769 = { isa = PBXFileReference; lastKnownFileType = file.r; name = "juce_RTAS_MacResources.r"; path = "../../../../modules/juce_audio_plugin_client/RTAS/juce_RTAS_MacResources.r"; sourceTree = "SOURCE_ROOT"; };
04D71F2E0F42CC93F93EE21A = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_VST_Wrapper.cpp"; path = "../../../../modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp"; sourceTree = "SOURCE_ROOT"; };
21C516EDC9EC987E2C0BF96C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_VST_Wrapper.mm"; path = "../../../../modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.mm"; sourceTree = "SOURCE_ROOT"; };
E62CF9878CE31A1B41406C34 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CarbonVisibility.h"; path = "../../../../modules/juce_audio_plugin_client/utility/juce_CarbonVisibility.h"; sourceTree = "SOURCE_ROOT"; };
@@ -243,7 +230,6 @@
E3C553F7FEF21DF9637225B1 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PluginListComponent.h"; path = "../../../../modules/juce_audio_processors/scanning/juce_PluginListComponent.h"; sourceTree = "SOURCE_ROOT"; };
E988F889F9A77829E88BA729 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_processors/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
758F77EBEEFCD78C72D752D5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_processors.h"; path = "../../../../modules/juce_audio_processors/juce_audio_processors.h"; sourceTree = "SOURCE_ROOT"; };
66F9BCBC8B7AD9E258FC27B2 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_processors.mm"; path = "../../../../modules/juce_audio_processors/juce_audio_processors.mm"; sourceTree = "SOURCE_ROOT"; };
FBF0201D400CD6C6782B10C8 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioDeviceSelectorComponent.cpp"; path = "../../../../modules/juce_audio_utils/gui/juce_AudioDeviceSelectorComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
C96C4BC62DE5B23B9FF6A25D = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioDeviceSelectorComponent.h"; path = "../../../../modules/juce_audio_utils/gui/juce_AudioDeviceSelectorComponent.h"; sourceTree = "SOURCE_ROOT"; };
055F824757A23895CAD9C5DD = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioThumbnail.cpp"; path = "../../../../modules/juce_audio_utils/gui/juce_AudioThumbnail.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -256,7 +242,6 @@
66F08605B31C273E4B220C16 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioProcessorPlayer.h"; path = "../../../../modules/juce_audio_utils/players/juce_AudioProcessorPlayer.h"; sourceTree = "SOURCE_ROOT"; };
9B07DEDA6EBF22EF45C3F821 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_utils/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
862C342D1AC52C62E112C1ED = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_utils.h"; path = "../../../../modules/juce_audio_utils/juce_audio_utils.h"; sourceTree = "SOURCE_ROOT"; };
0BCB32373B8A16ADFC7C6ED0 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_utils.mm"; path = "../../../../modules/juce_audio_utils/juce_audio_utils.mm"; sourceTree = "SOURCE_ROOT"; };
1B8C8FE35A26B63342D22E2D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CharacterFunctions.cpp"; path = "../../../../modules/juce_core/text/juce_CharacterFunctions.cpp"; sourceTree = "SOURCE_ROOT"; };
75EB2CAF350428D4D70AAB88 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharacterFunctions.h"; path = "../../../../modules/juce_core/text/juce_CharacterFunctions.h"; sourceTree = "SOURCE_ROOT"; };
A8E750D84783D2CED2977AD4 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharPointer_ASCII.h"; path = "../../../../modules/juce_core/text/juce_CharPointer_ASCII.h"; sourceTree = "SOURCE_ROOT"; };
@@ -431,7 +416,6 @@
289D514C1746E06502F3D912 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Threads.cpp"; path = "../../../../modules/juce_core/native/juce_win32_Threads.cpp"; sourceTree = "SOURCE_ROOT"; };
CA9B2D4E9B15E22825395CED = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_core/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
4FA110AC60A09C9EE355CE17 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_core.h"; path = "../../../../modules/juce_core/juce_core.h"; sourceTree = "SOURCE_ROOT"; };
87AE9ADD1D73B801BFF1E30F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../../../modules/juce_core/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
983DFB3FAE8ED2635E2EAE96 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Value.cpp"; path = "../../../../modules/juce_data_structures/values/juce_Value.cpp"; sourceTree = "SOURCE_ROOT"; };
4EFDA4F94F32741AC0E17073 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Value.h"; path = "../../../../modules/juce_data_structures/values/juce_Value.h"; sourceTree = "SOURCE_ROOT"; };
41B9E31E8BBBE3CB66CEB318 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ValueTree.cpp"; path = "../../../../modules/juce_data_structures/values/juce_ValueTree.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -445,7 +429,6 @@
4A56AEB825A05DDFF2AC90E8 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PropertiesFile.h"; path = "../../../../modules/juce_data_structures/app_properties/juce_PropertiesFile.h"; sourceTree = "SOURCE_ROOT"; };
FE25923B3EDEF444639934D1 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_data_structures/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
3D902D91E3D4936277AD5E79 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_data_structures.h"; path = "../../../../modules/juce_data_structures/juce_data_structures.h"; sourceTree = "SOURCE_ROOT"; };
325B9A00C8ADA18A87D11010 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_data_structures.mm"; path = "../../../../modules/juce_data_structures/juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
D754F1DB28F1F224A16BB957 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ApplicationBase.cpp"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.cpp"; sourceTree = "SOURCE_ROOT"; };
C5B8181649DE05F2B2B57ACD = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationBase.h"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.h"; sourceTree = "SOURCE_ROOT"; };
92901FE13D5F6D0F8481415D = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CallbackMessage.h"; path = "../../../../modules/juce_events/messages/juce_CallbackMessage.h"; sourceTree = "SOURCE_ROOT"; };
@@ -484,7 +467,6 @@
55BA52821B9E24AFFDDF6A56 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Messaging.cpp"; path = "../../../../modules/juce_events/native/juce_win32_Messaging.cpp"; sourceTree = "SOURCE_ROOT"; };
305C46F39D4485A9DB219E2C = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_events/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
37F93482F0E37A21A99701D1 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_events.h"; path = "../../../../modules/juce_events/juce_events.h"; sourceTree = "SOURCE_ROOT"; };
DAE74FBA72878D2DCDAC531D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_events.mm"; path = "../../../../modules/juce_events/juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
F952E4CBD608BFA3267FCD0A = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Colour.cpp"; path = "../../../../modules/juce_graphics/colour/juce_Colour.cpp"; sourceTree = "SOURCE_ROOT"; };
DBE1537B711AC46C88EFE8D3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Colour.h"; path = "../../../../modules/juce_graphics/colour/juce_Colour.h"; sourceTree = "SOURCE_ROOT"; };
A0BBD275898EC37A15186657 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ColourGradient.cpp"; path = "../../../../modules/juce_graphics/colour/juce_ColourGradient.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -558,7 +540,6 @@
B4AA19BC48A27BA2AFB5DD23 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Fonts.cpp"; path = "../../../../modules/juce_graphics/native/juce_win32_Fonts.cpp"; sourceTree = "SOURCE_ROOT"; };
D2A7BDF0629904BC58A6EC32 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_graphics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
EDC91F74BD134BD27573CC41 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_graphics.h"; path = "../../../../modules/juce_graphics/juce_graphics.h"; sourceTree = "SOURCE_ROOT"; };
2E88BA5CD391FB3E9C392FD2 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_graphics.mm"; path = "../../../../modules/juce_graphics/juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
7069271842C973DA165D85CD = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Component.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_Component.cpp"; sourceTree = "SOURCE_ROOT"; };
0C1EF785BDCE838824F9A4D3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Component.h"; path = "../../../../modules/juce_gui_basics/components/juce_Component.h"; sourceTree = "SOURCE_ROOT"; };
C6FCD993D3AE973335CC5B9E = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentListener.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_ComponentListener.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -803,7 +784,6 @@
392ACE2820F4EB34011021A5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Windowing.cpp"; path = "../../../../modules/juce_gui_basics/native/juce_win32_Windowing.cpp"; sourceTree = "SOURCE_ROOT"; };
567652E70B3544AA607D15F0 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
0594050A1CBE4165E2266850 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_basics.h"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.h"; sourceTree = "SOURCE_ROOT"; };
215EF835A86B3392CBB277B8 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_basics.mm"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
C545DFD6A1914807006CDA49 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AUBase.cpp; path = Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.cpp; sourceTree = "DEVELOPER_DIR"; };
289C899425A6FC599581B3AC = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AUBase.h; path = Extras/CoreAudio/AudioUnits/AUPublic/AUBase/AUBase.h; sourceTree = "DEVELOPER_DIR"; };
8BF1D9C4E59BB7DE28694512 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AUBuffer.cpp; path = Extras/CoreAudio/AudioUnits/AUPublic/Utility/AUBuffer.cpp; sourceTree = "DEVELOPER_DIR"; };
@@ -929,8 +909,7 @@
893AC3FD1BBE296D9E8B6B67,
5D99C977ACCD09262F06F662,
4399D11DB35FD4CE050E18D8,
CD9010E5595411CD92718598,
05EA361156AEB990C86E76DA ); name = "juce_audio_basics"; sourceTree = "<group>"; };
CD9010E5595411CD92718598 ); name = "juce_audio_basics"; sourceTree = "<group>"; };
BA843B3AB967BE69FF2A2176 = { isa = PBXGroup; children = (
D404AEC9EB028CEE46493562,
2A1D9144C59B92B32483924B,
@@ -979,8 +958,7 @@
8873168F9654ADCA30CE9750,
901E35AAB62BE66E2E74AD96,
06517E2CF4EBB22CD72FB3EC,
13B81408B043D51DC2E0BA08,
06FCB26113D88E6745C14AED ); name = "juce_audio_devices"; sourceTree = "<group>"; };
13B81408B043D51DC2E0BA08 ); name = "juce_audio_devices"; sourceTree = "<group>"; };
EB0F7270B0CE1D72AE436FB2 = { isa = PBXGroup; children = (
6C83019DF40D9B6FF038D381,
2ADD8B87CC7DB46B76992541,
@@ -1015,11 +993,9 @@
2CA7E1BDD2451F14A7AAF44D,
E5D97EEC9BC289CD26883BB3,
E75F05BBA5F5A9D52B4CF903,
AD794990A4F15B4041A84212,
EC62B784468669FBF60F09C4 ); name = "juce_audio_formats"; sourceTree = "<group>"; };
AD794990A4F15B4041A84212 ); name = "juce_audio_formats"; sourceTree = "<group>"; };
5E46EF7D1FADF3167CA50829 = { isa = PBXGroup; children = (
44FEE080FE59D18124DB4EBB,
7BF303BE4A1C3F0252BBFE8B ); name = AU; sourceTree = "<group>"; };
44FEE080FE59D18124DB4EBB ); name = AU; sourceTree = "<group>"; };
608B63FAF7D4BE7088F33342 = { isa = PBXGroup; children = (
348FB0933E37EC4F6BBF7F28,
841541809B65CD82B1AB9685,
@@ -1027,8 +1003,7 @@
AA583608583FF3D18F2AA435,
CFAA3652EBEB3B4D440CF898,
E0D6B14655737E2F1817DE64,
5FE2856C1457A8D8206DCEE8,
DB1BB9AF7FE0A2AA38D76769 ); name = RTAS; sourceTree = "<group>"; };
5FE2856C1457A8D8206DCEE8 ); name = RTAS; sourceTree = "<group>"; };
FFF93E5EA8087D93858834AD = { isa = PBXGroup; children = (
04D71F2E0F42CC93F93EE21A,
21C516EDC9EC987E2C0BF96C ); name = VST; sourceTree = "<group>"; };
@@ -1086,8 +1061,7 @@
B77A866CC44F98CEDAF273AB,
B580CC9D7C33650BBCC14B9B,
E988F889F9A77829E88BA729,
758F77EBEEFCD78C72D752D5,
66F9BCBC8B7AD9E258FC27B2 ); name = "juce_audio_processors"; sourceTree = "<group>"; };
758F77EBEEFCD78C72D752D5 ); name = "juce_audio_processors"; sourceTree = "<group>"; };
310DD2A543337A13C3FFD73C = { isa = PBXGroup; children = (
FBF0201D400CD6C6782B10C8,
C96C4BC62DE5B23B9FF6A25D,
@@ -1104,8 +1078,7 @@
310DD2A543337A13C3FFD73C,
7486CF52F0FF78D2DD36EE42,
9B07DEDA6EBF22EF45C3F821,
862C342D1AC52C62E112C1ED,
0BCB32373B8A16ADFC7C6ED0 ); name = "juce_audio_utils"; sourceTree = "<group>"; };
862C342D1AC52C62E112C1ED ); name = "juce_audio_utils"; sourceTree = "<group>"; };
1DA5CDBEBB3E1DE35A1A8C75 = { isa = PBXGroup; children = (
1B8C8FE35A26B63342D22E2D,
75EB2CAF350428D4D70AAB88,
@@ -1314,8 +1287,7 @@
53274571F9D1356389863B17,
523F97659F31912D12C91E95,
CA9B2D4E9B15E22825395CED,
4FA110AC60A09C9EE355CE17,
87AE9ADD1D73B801BFF1E30F ); name = "juce_core"; sourceTree = "<group>"; };
4FA110AC60A09C9EE355CE17 ); name = "juce_core"; sourceTree = "<group>"; };
022E7A4D7C38D3C0BBCB2A7B = { isa = PBXGroup; children = (
983DFB3FAE8ED2635E2EAE96,
4EFDA4F94F32741AC0E17073,
@@ -1335,8 +1307,7 @@
8B5DBC6D3908994B68B455C8,
682A5707C8E7C7A8EF54C97A,
FE25923B3EDEF444639934D1,
3D902D91E3D4936277AD5E79,
325B9A00C8ADA18A87D11010 ); name = "juce_data_structures"; sourceTree = "<group>"; };
3D902D91E3D4936277AD5E79 ); name = "juce_data_structures"; sourceTree = "<group>"; };
7CED74197096F4A912C5DC20 = { isa = PBXGroup; children = (
D754F1DB28F1F224A16BB957,
C5B8181649DE05F2B2B57ACD,
@@ -1385,8 +1356,7 @@
832E186326AA90B60FF5E851,
88E2AF605A6092BE1833FBF9,
305C46F39D4485A9DB219E2C,
37F93482F0E37A21A99701D1,
DAE74FBA72878D2DCDAC531D ); name = "juce_events"; sourceTree = "<group>"; };
37F93482F0E37A21A99701D1 ); name = "juce_events"; sourceTree = "<group>"; };
FC9ED00C0FB71A35143308F7 = { isa = PBXGroup; children = (
F952E4CBD608BFA3267FCD0A,
DBE1537B711AC46C88EFE8D3,
@@ -1478,8 +1448,7 @@
A6D54A86974C177D8C819C69,
B5588C016825482CC3F88B18,
D2A7BDF0629904BC58A6EC32,
EDC91F74BD134BD27573CC41,
2E88BA5CD391FB3E9C392FD2 ); name = "juce_graphics"; sourceTree = "<group>"; };
EDC91F74BD134BD27573CC41 ); name = "juce_graphics"; sourceTree = "<group>"; };
3C86C7A370F3E56B14009FEE = { isa = PBXGroup; children = (
7069271842C973DA165D85CD,
0C1EF785BDCE838824F9A4D3,
@@ -1758,8 +1727,7 @@
8DDC1EB6D9CEBBCC9F1C257E,
2950130C4269B6E3B31CD934,
567652E70B3544AA607D15F0,
0594050A1CBE4165E2266850,
215EF835A86B3392CBB277B8 ); name = "juce_gui_basics"; sourceTree = "<group>"; };
0594050A1CBE4165E2266850 ); name = "juce_gui_basics"; sourceTree = "<group>"; };
5C78DC2C40224CBDE2613334 = { isa = PBXGroup; children = (
BFC76B471FBB15B7A05D54AE,
6A215681F313E53CC2AEB7B9,
@@ -1848,7 +1816,7 @@
21C516EDC9EC987E2C0BF96C,
67363B07D53AE9F37D4850DB ); name = "Juce Library Code"; sourceTree = "<group>"; };
7756687B5FD0903C5F83BB9E = { isa = PBXGroup; children = (
81567EBA449466A95492511B ); name = Resources; sourceTree = "<group>"; };
1F66E4A5CF1B4F78B542C7C4 ); name = Resources; sourceTree = "<group>"; };
9B041E4036493224CFD075FF = { isa = PBXGroup; children = (
0D0D7FDC6364AA4DEA48D5F6,
42E67AACA547A6BBF7444EED,
@@ -1859,11 +1827,7 @@
C09F6A2FBEFF0F38125A551C,
C34B957877739BB7C1FFBB77,
1DF94DC094A7FF7C1749869C,
635788ACC69189717F58CA9A,
63F10BF045280E6585115FE5,
D735BC4AE330478AE9B1AB61,
2FC5A14AC79AA4402816062A,
FC7C0402A58CCCFFEB565C45 ); name = Frameworks; sourceTree = "<group>"; };
D735BC4AE330478AE9B1AB61 ); name = Frameworks; sourceTree = "<group>"; };
A60AEBCC9579AD6BA9D5CA4B = { isa = PBXGroup; children = (
AF721FB8136D2CAA9404AD8D ); name = Products; sourceTree = "<group>"; };
9DC33026DCB453C5B40EA9B3 = { isa = PBXGroup; children = (
@@ -2006,11 +1970,7 @@
53E2C1531CB485CCDD230774,
B9C31FD116F29E7E4752EB90,
AFB1D55C5DA4C99D90DF3A6A,
370C0F92C3CC1B6C563A7A94,
205AA28314AC784F2CF1FA98,
68746D242F6A6102FDD5D03D,
CBE9E6042991B0677E3136D2,
73B8F48633153DA5A10873E8 ); runOnlyForDeploymentPostprocessing = 0; };
68746D242F6A6102FDD5D03D ); runOnlyForDeploymentPostprocessing = 0; };
06539322921079C10A447670 = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; name = "Copy to the different plugin folders"; shellPath = /bin/sh; shellScript = "\n# This script takes the build product and copies it to the AU, VST, and RTAS folders, depending on \n# which plugin types you've built\n\noriginal=$CONFIGURATION_BUILD_DIR/$FULL_PRODUCT_NAME\n\n# this looks inside the binary to detect which platforms are needed.. \ncopyAU=`nm -g \"$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH\" | grep -i 'AudioUnit' | wc -l`\ncopyVST=`nm -g \"$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH\" | grep -i 'VSTPlugin' | wc -l`\ncopyRTAS=`nm -g \"$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH\" | grep -i 'CProcess' | wc -l`\n\nif [ $copyAU -gt 0 ]; then\n echo \"Copying to AudioUnit folder...\"\n AU=~/Library/Audio/Plug-Ins/Components/$PRODUCT_NAME.component\n if [ -d \"$AU\" ]; then \n rm -r \"$AU\"\n fi\n\n cp -r \"$original\" \"$AU\"\n sed -i \"\" -e 's/TDMwPTul/BNDLPTul/g' \"$AU/Contents/PkgInfo\"\n sed -i \"\" -e 's/TDMw/BNDL/g' \"$AU/Contents/$INFOPLIST_FILE\"\nfi\n\nif [ $copyVST -gt 0 ]; then\n echo \"Copying to VST folder...\"\n VST=~/Library/Audio/Plug-Ins/VST/$PRODUCT_NAME.vst\n if [ -d \"$VST\" ]; then \n rm -r \"$VST\"\n fi\n\n cp -r \"$original\" \"$VST\"\n sed -i \"\" -e 's/TDMwPTul/BNDLPTul/g' \"$VST/Contents/PkgInfo\"\n sed -i \"\" -e 's/TDMw/BNDL/g' \"$VST/Contents/$INFOPLIST_FILE\"\nfi\n\nif [ $copyRTAS -gt 0 ]; then\n echo \"Copying to RTAS folder...\"\n RTAS=/Library/Application\\ Support/Digidesign/Plug-Ins/$PRODUCT_NAME.dpm\n if [ -d \"$RTAS\" ]; then\n rm -r \"$RTAS\"\n fi\n\n cp -r \"$original\" \"$RTAS\"\nfi\n"; };
792509270ABF8E6A65E16172 = { isa = PBXNativeTarget; buildConfigurationList = 392E8263441DF125E3215D42; buildPhases = (
145D936BBD5425D74172B206,


+ 0
- 110
extras/audio plugin demo/Builds/VisualStudio2005/JuceDemoPlugin.vcproj View File

@@ -336,16 +336,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_devices">
<Filter Name="audio_io">
@@ -612,16 +602,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_formats">
<Filter Name="format">
@@ -784,16 +764,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_plugin_client">
<Filter Name="AU">
@@ -852,16 +822,6 @@
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_plugin_client\RTAS\juce_RTAS_MacUtilities.mm"/>
<File RelativePath="..\..\..\..\modules\juce_audio_plugin_client\RTAS\juce_RTAS_DigiCode_Header.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_plugin_client\RTAS\juce_RTAS_WinResources.rsr">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="VST">
<File RelativePath="..\..\..\..\modules\juce_audio_plugin_client\VST\juce_VST_Wrapper.cpp">
@@ -1045,16 +1005,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_utils">
<Filter Name="gui">
@@ -1127,16 +1077,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_core">
<Filter Name="text">
@@ -1959,16 +1899,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.h"/>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_data_structures">
<Filter Name="values">
@@ -2044,16 +1974,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.h"/>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_events">
<Filter Name="messages">
@@ -2248,16 +2168,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.h"/>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_graphics">
<Filter Name="colour">
@@ -2666,16 +2576,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.h"/>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_basics">
<Filter Name="components">
@@ -4000,16 +3900,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
</Filter>
<Filter Name="Juce Library Code">


+ 0
- 110
extras/audio plugin demo/Builds/VisualStudio2008/JuceDemoPlugin.vcproj View File

@@ -336,16 +336,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_devices">
<Filter Name="audio_io">
@@ -612,16 +602,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_formats">
<Filter Name="format">
@@ -784,16 +764,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_plugin_client">
<Filter Name="AU">
@@ -852,16 +822,6 @@
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_plugin_client\RTAS\juce_RTAS_MacUtilities.mm"/>
<File RelativePath="..\..\..\..\modules\juce_audio_plugin_client\RTAS\juce_RTAS_DigiCode_Header.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_plugin_client\RTAS\juce_RTAS_WinResources.rsr">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="VST">
<File RelativePath="..\..\..\..\modules\juce_audio_plugin_client\VST\juce_VST_Wrapper.cpp">
@@ -1045,16 +1005,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_utils">
<Filter Name="gui">
@@ -1127,16 +1077,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_core">
<Filter Name="text">
@@ -1959,16 +1899,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.h"/>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_data_structures">
<Filter Name="values">
@@ -2044,16 +1974,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.h"/>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_events">
<Filter Name="messages">
@@ -2248,16 +2168,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.h"/>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_graphics">
<Filter Name="colour">
@@ -2666,16 +2576,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.h"/>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_basics">
<Filter Name="components">
@@ -4000,16 +3900,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
</Filter>
<Filter Name="Juce Library Code">


+ 5
- 0
extras/audio plugin demo/JuceLibraryCode/AppConfig.h View File

@@ -10,6 +10,9 @@
*/
#ifndef __JUCE_APPCONFIG_0NRD9LLGO__
#define __JUCE_APPCONFIG_0NRD9LLGO__
//==============================================================================
#define JUCE_MODULE_AVAILABLE_juce_audio_basics 1
#define JUCE_MODULE_AVAILABLE_juce_audio_devices 1
@@ -102,3 +105,5 @@
#define JucePlugin_RTASCategory ePlugInCategory_None
#define JucePlugin_RTASManufacturerCode JucePlugin_ManufacturerCode
#define JucePlugin_RTASProductId JucePlugin_PluginCode
#endif // __JUCE_APPCONFIG_0NRD9LLGO__

+ 11
- 11
extras/audio plugin demo/JuceLibraryCode/JuceHeader.h View File

@@ -14,17 +14,17 @@
#define __APPHEADERFILE_0NRD9LLGO__
#include "AppConfig.h"
#include "../../../modules/juce_audio_basics/juce_audio_basics.h"
#include "../../../modules/juce_audio_devices/juce_audio_devices.h"
#include "../../../modules/juce_audio_formats/juce_audio_formats.h"
#include "../../../modules/juce_audio_plugin_client/juce_audio_plugin_client.h"
#include "../../../modules/juce_audio_processors/juce_audio_processors.h"
#include "../../../modules/juce_audio_utils/juce_audio_utils.h"
#include "../../../modules/juce_core/juce_core.h"
#include "../../../modules/juce_data_structures/juce_data_structures.h"
#include "../../../modules/juce_events/juce_events.h"
#include "../../../modules/juce_graphics/juce_graphics.h"
#include "../../../modules/juce_gui_basics/juce_gui_basics.h"
#include "modules/juce_audio_basics/juce_audio_basics.h"
#include "modules/juce_audio_devices/juce_audio_devices.h"
#include "modules/juce_audio_formats/juce_audio_formats.h"
#include "modules/juce_audio_plugin_client/juce_audio_plugin_client.h"
#include "modules/juce_audio_processors/juce_audio_processors.h"
#include "modules/juce_audio_utils/juce_audio_utils.h"
#include "modules/juce_core/juce_core.h"
#include "modules/juce_data_structures/juce_data_structures.h"
#include "modules/juce_events/juce_events.h"
#include "modules/juce_graphics/juce_graphics.h"
#include "modules/juce_gui_basics/juce_gui_basics.h"
#if ! DONT_SET_USING_JUCE_NAMESPACE
// If your code uses a lot of JUCE classes, then this will obviously save you


+ 5
- 0
extras/audio plugin demo/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_basics/juce_audio_basics.h"

+ 5
- 0
extras/audio plugin demo/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_devices/juce_audio_devices.h"

+ 5
- 0
extras/audio plugin demo/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_formats/juce_audio_formats.h"

+ 5
- 0
extras/audio plugin demo/JuceLibraryCode/modules/juce_audio_plugin_client/juce_audio_plugin_client.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_plugin_client/juce_audio_plugin_client.h"

+ 5
- 0
extras/audio plugin demo/JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_processors/juce_audio_processors.h"

+ 5
- 0
extras/audio plugin demo/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_utils/juce_audio_utils.h"

+ 5
- 0
extras/audio plugin demo/JuceLibraryCode/modules/juce_core/juce_core.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_core/juce_core.h"

+ 5
- 0
extras/audio plugin demo/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_data_structures/juce_data_structures.h"

+ 5
- 0
extras/audio plugin demo/JuceLibraryCode/modules/juce_events/juce_events.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_events/juce_events.h"

+ 5
- 0
extras/audio plugin demo/JuceLibraryCode/modules/juce_graphics/juce_graphics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_graphics/juce_graphics.h"

+ 5
- 0
extras/audio plugin demo/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_gui_basics/juce_gui_basics.h"

+ 14
- 40
extras/audio plugin host/Builds/MacOSX/Plugin Host.xcodeproj/project.pbxproj View File

@@ -101,7 +101,6 @@
15D413BEC3825329E9D17379 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Synthesiser.h"; path = "../../../../modules/juce_audio_basics/synthesisers/juce_Synthesiser.h"; sourceTree = "SOURCE_ROOT"; };
EE699B3663022F4C7E310451 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
5860EAFF0A076C5A0BA47211 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_basics.h"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.h"; sourceTree = "SOURCE_ROOT"; };
90BA003B0652041E31916253 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_basics.mm"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
6FD478D29BB5C76CCF7C21EC = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioDeviceManager.cpp"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.cpp"; sourceTree = "SOURCE_ROOT"; };
C6FD5B6E754FDD419DB68EC4 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioDeviceManager.h"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.h"; sourceTree = "SOURCE_ROOT"; };
B2D8A4C67AAA7683A7470AB2 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioIODevice.cpp"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioIODevice.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -140,7 +139,6 @@
2EE78F0F854B5468E68C015B = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WASAPI.cpp"; path = "../../../../modules/juce_audio_devices/native/juce_win32_WASAPI.cpp"; sourceTree = "SOURCE_ROOT"; };
91213846A49FFDBA4052AF65 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_devices/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
BE88DE2171F720AB3B13A681 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_devices.h"; path = "../../../../modules/juce_audio_devices/juce_audio_devices.h"; sourceTree = "SOURCE_ROOT"; };
92CC7B8AC38CD9F5BEF43666 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_devices.mm"; path = "../../../../modules/juce_audio_devices/juce_audio_devices.mm"; sourceTree = "SOURCE_ROOT"; };
F853DBA7A4B0E6FD686BCF0B = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormat.cpp"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
B6AD55A17C210FF9EFCD11CA = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioFormat.h"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
9EE2AD00CFC062E92ED0CACD = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormatManager.cpp"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormatManager.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -169,7 +167,6 @@
C43B4C4F9E89233A25F9E273 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Sampler.h"; path = "../../../../modules/juce_audio_formats/sampler/juce_Sampler.h"; sourceTree = "SOURCE_ROOT"; };
822FCFC556A8E453947FE59D = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_formats/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
394903BA55A4A6DECADB3F9B = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_formats.h"; path = "../../../../modules/juce_audio_formats/juce_audio_formats.h"; sourceTree = "SOURCE_ROOT"; };
773371ADF72AB3796F33054D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_formats.mm"; path = "../../../../modules/juce_audio_formats/juce_audio_formats.mm"; sourceTree = "SOURCE_ROOT"; };
72677D91863426836733A8D2 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioPlayHead.h"; path = "../../../../modules/juce_audio_processors/processors/juce_AudioPlayHead.h"; sourceTree = "SOURCE_ROOT"; };
BEB3B9F054734783FD9D6854 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioPluginInstance.h"; path = "../../../../modules/juce_audio_processors/processors/juce_AudioPluginInstance.h"; sourceTree = "SOURCE_ROOT"; };
820F4D5827007B42CB28C675 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioProcessor.cpp"; path = "../../../../modules/juce_audio_processors/processors/juce_AudioProcessor.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -202,7 +199,6 @@
8F952D10AFA65886DCA5113A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PluginListComponent.h"; path = "../../../../modules/juce_audio_processors/scanning/juce_PluginListComponent.h"; sourceTree = "SOURCE_ROOT"; };
8559C2A3AA5BC3B651BE93A2 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_processors/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
116F30059E9F220AEB0A4F5F = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_processors.h"; path = "../../../../modules/juce_audio_processors/juce_audio_processors.h"; sourceTree = "SOURCE_ROOT"; };
F1CA86D63B1E2470C12F134B = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_processors.mm"; path = "../../../../modules/juce_audio_processors/juce_audio_processors.mm"; sourceTree = "SOURCE_ROOT"; };
A76C490D0BDA01B1BB061AA6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CharacterFunctions.cpp"; path = "../../../../modules/juce_core/text/juce_CharacterFunctions.cpp"; sourceTree = "SOURCE_ROOT"; };
01BBF6C9E6B77362403D9701 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharacterFunctions.h"; path = "../../../../modules/juce_core/text/juce_CharacterFunctions.h"; sourceTree = "SOURCE_ROOT"; };
43C72AF1F7362D4C4BCA665E = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharPointer_ASCII.h"; path = "../../../../modules/juce_core/text/juce_CharPointer_ASCII.h"; sourceTree = "SOURCE_ROOT"; };
@@ -377,7 +373,6 @@
C46E1B55C7FA3BF37B26C59B = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Threads.cpp"; path = "../../../../modules/juce_core/native/juce_win32_Threads.cpp"; sourceTree = "SOURCE_ROOT"; };
666CE7674CC83DB59E6C5866 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_core/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
DB71EAC51153E71B6C88CA91 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_core.h"; path = "../../../../modules/juce_core/juce_core.h"; sourceTree = "SOURCE_ROOT"; };
138F64F6CD26039F2824DF88 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../../../modules/juce_core/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
585C5371136CA964C943C1A7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_BlowFish.cpp"; path = "../../../../modules/juce_cryptography/encryption/juce_BlowFish.cpp"; sourceTree = "SOURCE_ROOT"; };
97ADD7F0C4D54B52BB0D203E = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BlowFish.h"; path = "../../../../modules/juce_cryptography/encryption/juce_BlowFish.h"; sourceTree = "SOURCE_ROOT"; };
DE2FCC2B7EF287E1633B5C2C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Primes.cpp"; path = "../../../../modules/juce_cryptography/encryption/juce_Primes.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -390,7 +385,6 @@
F07F9C266E9090B370EBC7B1 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SHA256.h"; path = "../../../../modules/juce_cryptography/hashing/juce_SHA256.h"; sourceTree = "SOURCE_ROOT"; };
497579DCBD0CBDFE6FE358F8 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_cryptography/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
760D3E56CBC9EB3A8422E146 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_cryptography.h"; path = "../../../../modules/juce_cryptography/juce_cryptography.h"; sourceTree = "SOURCE_ROOT"; };
0BD07D10FA9DB6A31BDDA110 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_cryptography.mm"; path = "../../../../modules/juce_cryptography/juce_cryptography.mm"; sourceTree = "SOURCE_ROOT"; };
241EB5595E322DF1D6519A1F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Value.cpp"; path = "../../../../modules/juce_data_structures/values/juce_Value.cpp"; sourceTree = "SOURCE_ROOT"; };
EACD6E1200E5CF9839146CFC = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Value.h"; path = "../../../../modules/juce_data_structures/values/juce_Value.h"; sourceTree = "SOURCE_ROOT"; };
ED99BD274B6E2E59DF01BFA1 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ValueTree.cpp"; path = "../../../../modules/juce_data_structures/values/juce_ValueTree.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -404,7 +398,6 @@
E62678D1E553A86D7BDF9C61 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PropertiesFile.h"; path = "../../../../modules/juce_data_structures/app_properties/juce_PropertiesFile.h"; sourceTree = "SOURCE_ROOT"; };
8A055C45FE824FD2DBCC305A = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_data_structures/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
C860E7BA9388EEF0E0D04A02 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_data_structures.h"; path = "../../../../modules/juce_data_structures/juce_data_structures.h"; sourceTree = "SOURCE_ROOT"; };
CD3B532A7941FC08F0041C99 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_data_structures.mm"; path = "../../../../modules/juce_data_structures/juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
7224CAE5D8944DB21A9EA5D0 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ApplicationBase.cpp"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.cpp"; sourceTree = "SOURCE_ROOT"; };
5088D230FA825F802AE86746 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationBase.h"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.h"; sourceTree = "SOURCE_ROOT"; };
2D60E9FAFE03B88DFDB43ED6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CallbackMessage.h"; path = "../../../../modules/juce_events/messages/juce_CallbackMessage.h"; sourceTree = "SOURCE_ROOT"; };
@@ -443,7 +436,6 @@
F08B2CACCC317F3D760356EF = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Messaging.cpp"; path = "../../../../modules/juce_events/native/juce_win32_Messaging.cpp"; sourceTree = "SOURCE_ROOT"; };
CB3D100D4EF7D02744548AA5 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_events/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
D2CA0EACB096C5BF22CAFE5A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_events.h"; path = "../../../../modules/juce_events/juce_events.h"; sourceTree = "SOURCE_ROOT"; };
75B719C3233AD8BB35DF4F96 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_events.mm"; path = "../../../../modules/juce_events/juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
9523AED486BC0A319FA2B983 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Colour.cpp"; path = "../../../../modules/juce_graphics/colour/juce_Colour.cpp"; sourceTree = "SOURCE_ROOT"; };
76C12C8521CE1FEAF012D45C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Colour.h"; path = "../../../../modules/juce_graphics/colour/juce_Colour.h"; sourceTree = "SOURCE_ROOT"; };
4B8B9C9E3A311E088E4B52D0 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ColourGradient.cpp"; path = "../../../../modules/juce_graphics/colour/juce_ColourGradient.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -517,7 +509,6 @@
5F7BD3D6F955C62018E8C9AC = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Fonts.cpp"; path = "../../../../modules/juce_graphics/native/juce_win32_Fonts.cpp"; sourceTree = "SOURCE_ROOT"; };
6E77871A124D5F49C1D9E9BB = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_graphics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
7999D99D6EC78660FEA6C8CB = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_graphics.h"; path = "../../../../modules/juce_graphics/juce_graphics.h"; sourceTree = "SOURCE_ROOT"; };
B9597475944436CC056C1B5B = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_graphics.mm"; path = "../../../../modules/juce_graphics/juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
1B39F132F37DBE578F907146 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Component.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_Component.cpp"; sourceTree = "SOURCE_ROOT"; };
A7EEB1AE7E62DE16AC2C916C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Component.h"; path = "../../../../modules/juce_gui_basics/components/juce_Component.h"; sourceTree = "SOURCE_ROOT"; };
51CC93AC8442E2C1AEFF4718 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentListener.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_ComponentListener.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -762,7 +753,6 @@
C4FB8842D1A736C27A441D2E = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Windowing.cpp"; path = "../../../../modules/juce_gui_basics/native/juce_win32_Windowing.cpp"; sourceTree = "SOURCE_ROOT"; };
F1462B00BBE99F37D9A00279 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
9064DE24CC619CF25B5965D9 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_basics.h"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.h"; sourceTree = "SOURCE_ROOT"; };
CC2EC24F591E8E2034E56431 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_basics.mm"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
3E94452EAF5B41070A71113F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeDocument.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.cpp"; sourceTree = "SOURCE_ROOT"; };
E30CF834F3A4510A46CAE692 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CodeDocument.h"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.h"; sourceTree = "SOURCE_ROOT"; };
AA7DC1373A7EECEE1EAA0E09 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeEditorComponent.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -807,7 +797,6 @@
948B4D1B47CBA07F44F55296 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WebBrowserComponent.cpp"; path = "../../../../modules/juce_gui_extra/native/juce_win32_WebBrowserComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
A5F5848EB3431362F6B162F6 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_extra/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
CD8ABF158B23786A3DA32B11 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_extra.h"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.h"; sourceTree = "SOURCE_ROOT"; };
C6122A23E5ECD5FE68C6B39E = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_extra.mm"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.mm"; sourceTree = "SOURCE_ROOT"; };
573948B87BEE9ED7C0D61B96 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OpenGLComponent.cpp"; path = "../../../../modules/juce_opengl/opengl/juce_OpenGLComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
0014FEC4EECDBEC9D3E4D2C3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLComponent.h"; path = "../../../../modules/juce_opengl/opengl/juce_OpenGLComponent.h"; sourceTree = "SOURCE_ROOT"; };
290C12242FFEE231F3B968F7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLContext.h"; path = "../../../../modules/juce_opengl/opengl/juce_OpenGLContext.h"; sourceTree = "SOURCE_ROOT"; };
@@ -819,7 +808,6 @@
6198704FF2621309E5D0BB2A = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_OpenGLComponent.cpp"; path = "../../../../modules/juce_opengl/native/juce_win32_OpenGLComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
73C7EC73304CD65E56B213A4 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_opengl/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
2CC07971F6E29673DBA9D375 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_opengl.h"; path = "../../../../modules/juce_opengl/juce_opengl.h"; sourceTree = "SOURCE_ROOT"; };
2A0805BBCA4C01CEF1EDA756 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_opengl.mm"; path = "../../../../modules/juce_opengl/juce_opengl.mm"; sourceTree = "SOURCE_ROOT"; };
C747B4BEC93DC2C81A263839 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DirectShowComponent.h"; path = "../../../../modules/juce_video/playback/juce_DirectShowComponent.h"; sourceTree = "SOURCE_ROOT"; };
7258093ACEA1972902CA2895 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_QuickTimeMovieComponent.h"; path = "../../../../modules/juce_video/playback/juce_QuickTimeMovieComponent.h"; sourceTree = "SOURCE_ROOT"; };
30C853F9F5BFB8C2432C9E2F = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CameraDevice.h"; path = "../../../../modules/juce_video/capture/juce_CameraDevice.h"; sourceTree = "SOURCE_ROOT"; };
@@ -831,7 +819,6 @@
F920DDA2B1AAFEF83BB77BB6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_QuickTimeMovieComponent.cpp"; path = "../../../../modules/juce_video/native/juce_win32_QuickTimeMovieComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
D7D8000F7F53925CFF248702 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_video/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
F1A4DDC35D9A994C4889F173 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_video.h"; path = "../../../../modules/juce_video/juce_video.h"; sourceTree = "SOURCE_ROOT"; };
9497D0A71BF4E586E2965C29 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_video.mm"; path = "../../../../modules/juce_video/juce_video.mm"; sourceTree = "SOURCE_ROOT"; };
F18B460F38FE13FD138A134C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = "SOURCE_ROOT"; };
90BA003B0652041E31916253 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_basics.mm"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
92CC7B8AC38CD9F5BEF43666 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_devices.mm"; path = "../../../../modules/juce_audio_devices/juce_audio_devices.mm"; sourceTree = "SOURCE_ROOT"; };
@@ -905,8 +892,7 @@
240A8D17CC6174FB07BE58E1,
E86983916C7154A49839E2EC,
EE699B3663022F4C7E310451,
5860EAFF0A076C5A0BA47211,
90BA003B0652041E31916253 ); name = "juce_audio_basics"; sourceTree = "<group>"; };
5860EAFF0A076C5A0BA47211 ); name = "juce_audio_basics"; sourceTree = "<group>"; };
4664F553691B09F7685D1EFF = { isa = PBXGroup; children = (
6FD478D29BB5C76CCF7C21EC,
C6FD5B6E754FDD419DB68EC4,
@@ -955,8 +941,7 @@
2443D0A94607F858A9F183DA,
3CEE0FC366DF31FC97A79910,
91213846A49FFDBA4052AF65,
BE88DE2171F720AB3B13A681,
92CC7B8AC38CD9F5BEF43666 ); name = "juce_audio_devices"; sourceTree = "<group>"; };
BE88DE2171F720AB3B13A681 ); name = "juce_audio_devices"; sourceTree = "<group>"; };
77EF3C9A7071680017765B3B = { isa = PBXGroup; children = (
F853DBA7A4B0E6FD686BCF0B,
B6AD55A17C210FF9EFCD11CA,
@@ -991,8 +976,7 @@
C777BBD782F95AA11FDEE1C6,
71BA48064C65C45BAFBB273C,
822FCFC556A8E453947FE59D,
394903BA55A4A6DECADB3F9B,
773371ADF72AB3796F33054D ); name = "juce_audio_formats"; sourceTree = "<group>"; };
394903BA55A4A6DECADB3F9B ); name = "juce_audio_formats"; sourceTree = "<group>"; };
7A8F5DB4CC940667A0E8F9D4 = { isa = PBXGroup; children = (
72677D91863426836733A8D2,
BEB3B9F054734783FD9D6854,
@@ -1033,8 +1017,7 @@
434A4F8575F2E35C43256F24,
515196A62CD7B09925F43814,
8559C2A3AA5BC3B651BE93A2,
116F30059E9F220AEB0A4F5F,
F1CA86D63B1E2470C12F134B ); name = "juce_audio_processors"; sourceTree = "<group>"; };
116F30059E9F220AEB0A4F5F ); name = "juce_audio_processors"; sourceTree = "<group>"; };
B88597C76BE25871C34D79FE = { isa = PBXGroup; children = (
A76C490D0BDA01B1BB061AA6,
01BBF6C9E6B77362403D9701,
@@ -1243,8 +1226,7 @@
EF070F9AAA8480F102B93890,
FD0F518F4FE4ECBB9BFC0A1F,
666CE7674CC83DB59E6C5866,
DB71EAC51153E71B6C88CA91,
138F64F6CD26039F2824DF88 ); name = "juce_core"; sourceTree = "<group>"; };
DB71EAC51153E71B6C88CA91 ); name = "juce_core"; sourceTree = "<group>"; };
E74AE6A18BAF34574E870352 = { isa = PBXGroup; children = (
585C5371136CA964C943C1A7,
97ADD7F0C4D54B52BB0D203E,
@@ -1261,8 +1243,7 @@
E74AE6A18BAF34574E870352,
0A20E06E34AED139230F6800,
497579DCBD0CBDFE6FE358F8,
760D3E56CBC9EB3A8422E146,
0BD07D10FA9DB6A31BDDA110 ); name = "juce_cryptography"; sourceTree = "<group>"; };
760D3E56CBC9EB3A8422E146 ); name = "juce_cryptography"; sourceTree = "<group>"; };
ADFE44673DEC1E5E24FE27F4 = { isa = PBXGroup; children = (
241EB5595E322DF1D6519A1F,
EACD6E1200E5CF9839146CFC,
@@ -1282,8 +1263,7 @@
263E8686E9ACE4D9E1E75242,
F4FA1110789B12366887B5F3,
8A055C45FE824FD2DBCC305A,
C860E7BA9388EEF0E0D04A02,
CD3B532A7941FC08F0041C99 ); name = "juce_data_structures"; sourceTree = "<group>"; };
C860E7BA9388EEF0E0D04A02 ); name = "juce_data_structures"; sourceTree = "<group>"; };
18BD4E32214A4F278BF8D8AA = { isa = PBXGroup; children = (
7224CAE5D8944DB21A9EA5D0,
5088D230FA825F802AE86746,
@@ -1332,8 +1312,7 @@
1EFED28CD74DEB447828D5DA,
14B2798A0A13ED4C8167E772,
CB3D100D4EF7D02744548AA5,
D2CA0EACB096C5BF22CAFE5A,
75B719C3233AD8BB35DF4F96 ); name = "juce_events"; sourceTree = "<group>"; };
D2CA0EACB096C5BF22CAFE5A ); name = "juce_events"; sourceTree = "<group>"; };
886EAA26BF6A55C28C66F470 = { isa = PBXGroup; children = (
9523AED486BC0A319FA2B983,
76C12C8521CE1FEAF012D45C,
@@ -1425,8 +1404,7 @@
32B604AF57F0620BF5B488E3,
5128462B18D993BA3B2B8791,
6E77871A124D5F49C1D9E9BB,
7999D99D6EC78660FEA6C8CB,
B9597475944436CC056C1B5B ); name = "juce_graphics"; sourceTree = "<group>"; };
7999D99D6EC78660FEA6C8CB ); name = "juce_graphics"; sourceTree = "<group>"; };
D75691CD20A730F98D348C67 = { isa = PBXGroup; children = (
1B39F132F37DBE578F907146,
A7EEB1AE7E62DE16AC2C916C,
@@ -1705,8 +1683,7 @@
19ADD8D09971064A184F21F7,
B420ED25F21C01702C4FC5BD,
F1462B00BBE99F37D9A00279,
9064DE24CC619CF25B5965D9,
CC2EC24F591E8E2034E56431 ); name = "juce_gui_basics"; sourceTree = "<group>"; };
9064DE24CC619CF25B5965D9 ); name = "juce_gui_basics"; sourceTree = "<group>"; };
BFD871FE61E5B27BB4F4786E = { isa = PBXGroup; children = (
3E94452EAF5B41070A71113F,
E30CF834F3A4510A46CAE692,
@@ -1763,8 +1740,7 @@
C19526D310B2F45CAAB6DB91,
1C53EA90FDC62E2DFAB4903C,
A5F5848EB3431362F6B162F6,
CD8ABF158B23786A3DA32B11,
C6122A23E5ECD5FE68C6B39E ); name = "juce_gui_extra"; sourceTree = "<group>"; };
CD8ABF158B23786A3DA32B11 ); name = "juce_gui_extra"; sourceTree = "<group>"; };
2C97D53E99820E6C838B5584 = { isa = PBXGroup; children = (
573948B87BEE9ED7C0D61B96,
0014FEC4EECDBEC9D3E4D2C3,
@@ -1780,8 +1756,7 @@
2C97D53E99820E6C838B5584,
9D364C0153DE35BED2852412,
73C7EC73304CD65E56B213A4,
2CC07971F6E29673DBA9D375,
2A0805BBCA4C01CEF1EDA756 ); name = "juce_opengl"; sourceTree = "<group>"; };
2CC07971F6E29673DBA9D375 ); name = "juce_opengl"; sourceTree = "<group>"; };
5F8E586747C962B0AE2FB8F9 = { isa = PBXGroup; children = (
C747B4BEC93DC2C81A263839,
7258093ACEA1972902CA2895 ); name = playback; sourceTree = "<group>"; };
@@ -1799,8 +1774,7 @@
61C7EC143642CBAB07E80C1E,
95E97099741E5C76AAA20F8C,
D7D8000F7F53925CFF248702,
F1A4DDC35D9A994C4889F173,
9497D0A71BF4E586E2965C29 ); name = "juce_video"; sourceTree = "<group>"; };
F1A4DDC35D9A994C4889F173 ); name = "juce_video"; sourceTree = "<group>"; };
E748964600D5974B5A9420BD = { isa = PBXGroup; children = (
5B973550D06E604519804027,
05F110AAB3B630BA3BD1A433,
@@ -1832,7 +1806,7 @@
9497D0A71BF4E586E2965C29,
0307F51185EE3481E67B4C54 ); name = "Juce Library Code"; sourceTree = "<group>"; };
132622950074EBC9C8B6B717 = { isa = PBXGroup; children = (
1C2637C4F538B137DDC54D95 ); name = Resources; sourceTree = "<group>"; };
AA36AECF7FBE8A062E75B35E ); name = Resources; sourceTree = "<group>"; };
26D5E869E6FD8DB238036278 = { isa = PBXGroup; children = (
A8ED49F61418F5DA637BC17F,
DEB744B655FBF14870773B66,


+ 0
- 130
extras/audio plugin host/Builds/VisualStudio2005/Plugin Host.vcproj View File

@@ -341,16 +341,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_devices">
<Filter Name="audio_io">
@@ -617,16 +607,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_formats">
<Filter Name="format">
@@ -789,16 +769,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_processors">
<Filter Name="processors">
@@ -949,16 +919,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_core">
<Filter Name="text">
@@ -1781,16 +1741,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.h"/>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_cryptography">
<Filter Name="encryption">
@@ -1863,16 +1813,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.h"/>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_data_structures">
<Filter Name="values">
@@ -1948,16 +1888,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.h"/>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_events">
<Filter Name="messages">
@@ -2152,16 +2082,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.h"/>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_graphics">
<Filter Name="colour">
@@ -2570,16 +2490,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.h"/>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_basics">
<Filter Name="components">
@@ -3904,16 +3814,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_extra">
<Filter Name="code_editor">
@@ -4143,16 +4043,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_opengl">
<Filter Name="opengl">
@@ -4215,16 +4105,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_opengl\juce_opengl.h"/>
<File RelativePath="..\..\..\..\modules\juce_opengl\juce_opengl.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_video">
<Filter Name="playback">
@@ -4289,16 +4169,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_video\juce_video.h"/>
<File RelativePath="..\..\..\..\modules\juce_video\juce_video.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
</Filter>
<Filter Name="Juce Library Code">


+ 0
- 130
extras/audio plugin host/Builds/VisualStudio2008/Plugin Host.vcproj View File

@@ -341,16 +341,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_devices">
<Filter Name="audio_io">
@@ -617,16 +607,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_formats">
<Filter Name="format">
@@ -789,16 +769,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_processors">
<Filter Name="processors">
@@ -949,16 +919,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_core">
<Filter Name="text">
@@ -1781,16 +1741,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.h"/>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_cryptography">
<Filter Name="encryption">
@@ -1863,16 +1813,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.h"/>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_data_structures">
<Filter Name="values">
@@ -1948,16 +1888,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.h"/>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_events">
<Filter Name="messages">
@@ -2152,16 +2082,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.h"/>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_graphics">
<Filter Name="colour">
@@ -2570,16 +2490,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.h"/>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_basics">
<Filter Name="components">
@@ -3904,16 +3814,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_extra">
<Filter Name="code_editor">
@@ -4143,16 +4043,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_opengl">
<Filter Name="opengl">
@@ -4215,16 +4105,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_opengl\juce_opengl.h"/>
<File RelativePath="..\..\..\..\modules\juce_opengl\juce_opengl.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_video">
<Filter Name="playback">
@@ -4289,16 +4169,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_video\juce_video.h"/>
<File RelativePath="..\..\..\..\modules\juce_video\juce_video.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
</Filter>
<Filter Name="Juce Library Code">


+ 5
- 0
extras/audio plugin host/JuceLibraryCode/AppConfig.h View File

@@ -10,6 +10,9 @@
*/
#ifndef __JUCE_APPCONFIG_NTE0XB0IJ__
#define __JUCE_APPCONFIG_NTE0XB0IJ__
//==============================================================================
#define JUCE_MODULE_AVAILABLE_juce_audio_basics 1
#define JUCE_MODULE_AVAILABLE_juce_audio_devices 1
@@ -81,3 +84,5 @@
//#define JUCE_MEDIAFOUNDATION
#define JUCE_QUICKTIME 0
#define JUCE_USE_CAMERA 0
#endif // __JUCE_APPCONFIG_NTE0XB0IJ__

+ 13
- 13
extras/audio plugin host/JuceLibraryCode/JuceHeader.h View File

@@ -14,19 +14,19 @@
#define __APPHEADERFILE_NTE0XB0IJ__
#include "AppConfig.h"
#include "../../../modules/juce_audio_basics/juce_audio_basics.h"
#include "../../../modules/juce_audio_devices/juce_audio_devices.h"
#include "../../../modules/juce_audio_formats/juce_audio_formats.h"
#include "../../../modules/juce_audio_processors/juce_audio_processors.h"
#include "../../../modules/juce_core/juce_core.h"
#include "../../../modules/juce_cryptography/juce_cryptography.h"
#include "../../../modules/juce_data_structures/juce_data_structures.h"
#include "../../../modules/juce_events/juce_events.h"
#include "../../../modules/juce_graphics/juce_graphics.h"
#include "../../../modules/juce_gui_basics/juce_gui_basics.h"
#include "../../../modules/juce_gui_extra/juce_gui_extra.h"
#include "../../../modules/juce_opengl/juce_opengl.h"
#include "../../../modules/juce_video/juce_video.h"
#include "modules/juce_audio_basics/juce_audio_basics.h"
#include "modules/juce_audio_devices/juce_audio_devices.h"
#include "modules/juce_audio_formats/juce_audio_formats.h"
#include "modules/juce_audio_processors/juce_audio_processors.h"
#include "modules/juce_core/juce_core.h"
#include "modules/juce_cryptography/juce_cryptography.h"
#include "modules/juce_data_structures/juce_data_structures.h"
#include "modules/juce_events/juce_events.h"
#include "modules/juce_graphics/juce_graphics.h"
#include "modules/juce_gui_basics/juce_gui_basics.h"
#include "modules/juce_gui_extra/juce_gui_extra.h"
#include "modules/juce_opengl/juce_opengl.h"
#include "modules/juce_video/juce_video.h"
#if ! DONT_SET_USING_JUCE_NAMESPACE
// If your code uses a lot of JUCE classes, then this will obviously save you


+ 5
- 0
extras/audio plugin host/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_basics/juce_audio_basics.h"

+ 5
- 0
extras/audio plugin host/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_devices/juce_audio_devices.h"

+ 5
- 0
extras/audio plugin host/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_formats/juce_audio_formats.h"

+ 5
- 0
extras/audio plugin host/JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_audio_processors/juce_audio_processors.h"

+ 5
- 0
extras/audio plugin host/JuceLibraryCode/modules/juce_core/juce_core.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_core/juce_core.h"

+ 5
- 0
extras/audio plugin host/JuceLibraryCode/modules/juce_cryptography/juce_cryptography.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_cryptography/juce_cryptography.h"

+ 5
- 0
extras/audio plugin host/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_data_structures/juce_data_structures.h"

+ 5
- 0
extras/audio plugin host/JuceLibraryCode/modules/juce_events/juce_events.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_events/juce_events.h"

+ 5
- 0
extras/audio plugin host/JuceLibraryCode/modules/juce_graphics/juce_graphics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_graphics/juce_graphics.h"

+ 5
- 0
extras/audio plugin host/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_gui_basics/juce_gui_basics.h"

+ 5
- 0
extras/audio plugin host/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_gui_extra/juce_gui_extra.h"

+ 5
- 0
extras/audio plugin host/JuceLibraryCode/modules/juce_opengl/juce_opengl.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_opengl/juce_opengl.h"

+ 5
- 0
extras/audio plugin host/JuceLibraryCode/modules/juce_video/juce_video.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_video/juce_video.h"

+ 3
- 45
extras/binarybuilder/Builds/MacOSX/BinaryBuilder.xcodeproj/project.pbxproj View File

@@ -6,32 +6,12 @@
objectVersion = 45;
objects = {

8C9019232ED599839765DF56 = { isa = PBXBuildFile; fileRef = ED3544DD4CBD0D3FC901849D; };
24BD48D3FBC9865DDEB76D29 = { isa = PBXBuildFile; fileRef = 6CEF9B52E96544A7E0F9DB3F; };
E8996D80686F2B3EC62DBDBB = { isa = PBXBuildFile; fileRef = EA37F12B4A648826A16783DA; };
BF6D53618D24D1D9EAC491D3 = { isa = PBXBuildFile; fileRef = B615DA55AA857E6B76638816; };
330A9643F50DE8BEACDBB61B = { isa = PBXBuildFile; fileRef = A0C73F1FA737622AE21305B3; };
99FCE4C1FE4BE160260A9B37 = { isa = PBXBuildFile; fileRef = 93736A7960CCFDA9A0A76A1E; };
7FE9AA5C36FD1C7F6F98E900 = { isa = PBXBuildFile; fileRef = ED2212B07DF0526EF6013533; };
0735D492AB157E5F26F2293A = { isa = PBXBuildFile; fileRef = 438F5DACAEEAEC535F117A30; };
008367830DF5DB21FBAAA93F = { isa = PBXBuildFile; fileRef = 4329D0F03D71615755CA0F8C; };
489C322518A3C4F4DC8E8FE4 = { isa = PBXBuildFile; fileRef = A75E813ADC899A7CB86A5A17; };
9B12BA0402DA13494DFAE588 = { isa = PBXBuildFile; fileRef = FFEE664BA0E3073207CFB5C1; };
53E0B9862C5E908771C0228F = { isa = PBXBuildFile; fileRef = CC95D9F28ED51FD1BA1F0BFC; };
707392A801368BCEE86E5256 = { isa = PBXBuildFile; fileRef = 1232773B3163B55FCA916C89; };
847A67C4E7F9A730E17F8A61 = { isa = PBXBuildFile; fileRef = 67D76FDDF5CC1BE39EAA92A6; };
ED3544DD4CBD0D3FC901849D = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
6CEF9B52E96544A7E0F9DB3F = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
EA37F12B4A648826A16783DA = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
B615DA55AA857E6B76638816 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
A0C73F1FA737622AE21305B3 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
93736A7960CCFDA9A0A76A1E = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiscRecording.framework; path = System/Library/Frameworks/DiscRecording.framework; sourceTree = SDKROOT; };
ED2212B07DF0526EF6013533 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
438F5DACAEEAEC535F117A30 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
4329D0F03D71615755CA0F8C = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = System/Library/Frameworks/QTKit.framework; sourceTree = SDKROOT; };
A75E813ADC899A7CB86A5A17 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
FFEE664BA0E3073207CFB5C1 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = System/Library/Frameworks/QuickTime.framework; sourceTree = SDKROOT; };
CC95D9F28ED51FD1BA1F0BFC = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
7FABD4A9FCB57F9C63BD5D34 = { isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = BinaryBuilder; sourceTree = "BUILT_PRODUCTS_DIR"; };
1232773B3163B55FCA916C89 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = "SOURCE_ROOT"; };
EBB444E4337F1915218BDDC4 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CharacterFunctions.cpp"; path = "../../../../modules/juce_core/text/juce_CharacterFunctions.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -208,7 +188,6 @@
08C6163C008F4258D1BC88B8 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Threads.cpp"; path = "../../../../modules/juce_core/native/juce_win32_Threads.cpp"; sourceTree = "SOURCE_ROOT"; };
AAB4F24E746E441AF4E10B84 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_core/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
2FDAE5AC49E9EF70C20E7DBE = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_core.h"; path = "../../../../modules/juce_core/juce_core.h"; sourceTree = "SOURCE_ROOT"; };
67D76FDDF5CC1BE39EAA92A6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../../../modules/juce_core/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
35D341E671931B417A1FD669 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = "SOURCE_ROOT"; };
67D76FDDF5CC1BE39EAA92A6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../../../modules/juce_core/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
476FF0F8BE833CD54C01FF82 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = "SOURCE_ROOT"; };
@@ -424,8 +403,7 @@
335F0A71D2299756694EEBBE,
31576C66888AF31FF171CD3C,
AAB4F24E746E441AF4E10B84,
2FDAE5AC49E9EF70C20E7DBE,
67D76FDDF5CC1BE39EAA92A6 ); name = "juce_core"; sourceTree = "<group>"; };
2FDAE5AC49E9EF70C20E7DBE ); name = "juce_core"; sourceTree = "<group>"; };
3CA1912D397BAFAFC119E3EB = { isa = PBXGroup; children = (
9092FA428465B3ED758CB651 ); name = "Juce Modules"; sourceTree = "<group>"; };
9310BD97E4BDBEE06D277513 = { isa = PBXGroup; children = (
@@ -434,18 +412,8 @@
476FF0F8BE833CD54C01FF82 ); name = "Juce Library Code"; sourceTree = "<group>"; };
578E3D7C3819F32E2E3C6A34 = { isa = PBXGroup; children = ( ); name = Resources; sourceTree = "<group>"; };
6A2DE3401F8295169E892596 = { isa = PBXGroup; children = (
ED3544DD4CBD0D3FC901849D,
6CEF9B52E96544A7E0F9DB3F,
EA37F12B4A648826A16783DA,
B615DA55AA857E6B76638816,
A0C73F1FA737622AE21305B3,
93736A7960CCFDA9A0A76A1E,
ED2212B07DF0526EF6013533,
438F5DACAEEAEC535F117A30,
4329D0F03D71615755CA0F8C,
A75E813ADC899A7CB86A5A17,
FFEE664BA0E3073207CFB5C1,
CC95D9F28ED51FD1BA1F0BFC ); name = Frameworks; sourceTree = "<group>"; };
ED2212B07DF0526EF6013533 ); name = Frameworks; sourceTree = "<group>"; };
8532B0CC7DC2F05D888E79F2 = { isa = PBXGroup; children = (
7FABD4A9FCB57F9C63BD5D34 ); name = Products; sourceTree = "<group>"; };
6DFB0526C5FDA6A794B7585A = { isa = PBXGroup; children = (
@@ -526,18 +494,8 @@
707392A801368BCEE86E5256,
847A67C4E7F9A730E17F8A61 ); runOnlyForDeploymentPostprocessing = 0; };
753185144E84CC3E130F945B = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
8C9019232ED599839765DF56,
24BD48D3FBC9865DDEB76D29,
E8996D80686F2B3EC62DBDBB,
BF6D53618D24D1D9EAC491D3,
330A9643F50DE8BEACDBB61B,
99FCE4C1FE4BE160260A9B37,
7FE9AA5C36FD1C7F6F98E900,
0735D492AB157E5F26F2293A,
008367830DF5DB21FBAAA93F,
489C322518A3C4F4DC8E8FE4,
9B12BA0402DA13494DFAE588,
53E0B9862C5E908771C0228F ); runOnlyForDeploymentPostprocessing = 0; };
7FE9AA5C36FD1C7F6F98E900 ); runOnlyForDeploymentPostprocessing = 0; };
495DDE27E308E15C44991018 = { isa = PBXNativeTarget; buildConfigurationList = 195657633D555407C2EA0CE8; buildPhases = (
F485685C969D78B9212B61AD,
C02C54CA659982168A3DA559,


+ 0
- 10
extras/binarybuilder/Builds/VisualStudio2008/BinaryBuilder.vcproj View File

@@ -954,16 +954,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.h"/>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
</Filter>
<Filter Name="Juce Library Code">


+ 5
- 0
extras/binarybuilder/JuceLibraryCode/AppConfig.h View File

@@ -10,6 +10,9 @@
*/
#ifndef __JUCE_APPCONFIG_3T6YQETY1__
#define __JUCE_APPCONFIG_3T6YQETY1__
//==============================================================================
#define JUCE_MODULE_AVAILABLE_juce_core 1
@@ -20,3 +23,5 @@
//#define JUCE_LOG_ASSERTIONS
//#define JUCE_CHECK_MEMORY_LEAKS
//#define JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
#endif // __JUCE_APPCONFIG_3T6YQETY1__

+ 1
- 1
extras/binarybuilder/JuceLibraryCode/JuceHeader.h View File

@@ -14,7 +14,7 @@
#define __APPHEADERFILE_3T6YQETY1__
#include "AppConfig.h"
#include "../../../modules/juce_core/juce_core.h"
#include "modules/juce_core/juce_core.h"
#if ! DONT_SET_USING_JUCE_NAMESPACE
// If your code uses a lot of JUCE classes, then this will obviously save you


+ 7
- 47
extras/example projects/Builds/MacOSX/HelloWorld.xcodeproj/project.pbxproj View File

@@ -6,17 +6,10 @@
objectVersion = 45;
objects = {

D397D8CEF8663F449B4439C0 = { isa = PBXBuildFile; fileRef = 334D0368264EA3F0CCE0EE17; };
7BC4087FD54A2C1ED196C892 = { isa = PBXBuildFile; fileRef = B3F65BEEC3F6EB68E4E746B9; };
3F902D2C41E0C1FFC90C2724 = { isa = PBXBuildFile; fileRef = 314FB1B624F52EE7A456FE43; };
056513FD57B5879AEDB3FB4D = { isa = PBXBuildFile; fileRef = 0C1D9AF08416142C7942E38F; };
891256EECE8E8E7FAFCA1185 = { isa = PBXBuildFile; fileRef = F6CFFFBA71C908EBE5016F2C; };
EFF4A46CD8DC98212AF9F5A0 = { isa = PBXBuildFile; fileRef = E98B2A14394D946A9396C587; };
C5E169F7107EC2306276438A = { isa = PBXBuildFile; fileRef = 4329D15C5681F82FF9E090AD; };
6D3C942E85A6141029E184A4 = { isa = PBXBuildFile; fileRef = 99871D47887B822442F0D4AA; };
569A272ED68671F2FE9903B8 = { isa = PBXBuildFile; fileRef = 9A319F9C07F2071858B869F6; };
9EA4F1C0E2356AB5C07CE95E = { isa = PBXBuildFile; fileRef = FD6640D5A61A403DBC58B581; };
E12A6AAFEC6BB91A41D85FF2 = { isa = PBXBuildFile; fileRef = 55F526D67974ADF30BBE1F3B; };
A9F87921F5EF364874BF8D08 = { isa = PBXBuildFile; fileRef = 12AC899E6756C592BEFD6565; };
C67B5243DBC7218FEC5DBCC0 = { isa = PBXBuildFile; fileRef = 793A37C60BF46C10BD7FC6F3; };
9B11A7532637EC12F1DC4B2E = { isa = PBXBuildFile; fileRef = 712387DD847BBDA027E9452E; };
@@ -26,17 +19,10 @@
403005EB49C23151E0C7248C = { isa = PBXBuildFile; fileRef = 44B93FF7967BF4E26ED039E2; };
9D1E42529FB0B6DDDC3457DE = { isa = PBXBuildFile; fileRef = 578E8DC15B453C459D5981C9; };
B12AC86ED7CB39E6B52EFBC0 = { isa = PBXBuildFile; fileRef = 6072E4A5F7128313C23AD035; };
334D0368264EA3F0CCE0EE17 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
B3F65BEEC3F6EB68E4E746B9 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
314FB1B624F52EE7A456FE43 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
0C1D9AF08416142C7942E38F = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
F6CFFFBA71C908EBE5016F2C = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
E98B2A14394D946A9396C587 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiscRecording.framework; path = System/Library/Frameworks/DiscRecording.framework; sourceTree = SDKROOT; };
4329D15C5681F82FF9E090AD = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
99871D47887B822442F0D4AA = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
9A319F9C07F2071858B869F6 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = System/Library/Frameworks/QTKit.framework; sourceTree = SDKROOT; };
FD6640D5A61A403DBC58B581 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
55F526D67974ADF30BBE1F3B = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = System/Library/Frameworks/QuickTime.framework; sourceTree = SDKROOT; };
12AC899E6756C592BEFD6565 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
D5A29444C637255D66ACB7AE = { isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HelloWorld.app; sourceTree = "BUILT_PRODUCTS_DIR"; };
4596684181E5482B97F9D0E5 = { isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Info.plist; sourceTree = "SOURCE_ROOT"; };
@@ -217,7 +203,6 @@
5FCED5D7D910E919D49BE322 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Threads.cpp"; path = "../../../../modules/juce_core/native/juce_win32_Threads.cpp"; sourceTree = "SOURCE_ROOT"; };
F1CCB1E94EFFEBDBF8D076FD = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_core/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
76D1A438237A9531C6FCE728 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_core.h"; path = "../../../../modules/juce_core/juce_core.h"; sourceTree = "SOURCE_ROOT"; };
BEEF2F68DF4DB1B49299FC10 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../../../modules/juce_core/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
CE7E80DB6068EB1630C5B7A6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Value.cpp"; path = "../../../../modules/juce_data_structures/values/juce_Value.cpp"; sourceTree = "SOURCE_ROOT"; };
742D3994021C7DBD93888983 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Value.h"; path = "../../../../modules/juce_data_structures/values/juce_Value.h"; sourceTree = "SOURCE_ROOT"; };
78F977A94D95EC7E3875DC38 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ValueTree.cpp"; path = "../../../../modules/juce_data_structures/values/juce_ValueTree.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -231,7 +216,6 @@
71863353E77A5682D543B908 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PropertiesFile.h"; path = "../../../../modules/juce_data_structures/app_properties/juce_PropertiesFile.h"; sourceTree = "SOURCE_ROOT"; };
256517C7F0A8FDF735305EE1 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_data_structures/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
63C0A22CA5AE9C155A44679A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_data_structures.h"; path = "../../../../modules/juce_data_structures/juce_data_structures.h"; sourceTree = "SOURCE_ROOT"; };
589B2E9C8B77AA2D5A783920 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_data_structures.mm"; path = "../../../../modules/juce_data_structures/juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
0D848567EACBFBD77403C377 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ApplicationBase.cpp"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.cpp"; sourceTree = "SOURCE_ROOT"; };
FBE89CB20CB80EA5845D84ED = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationBase.h"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.h"; sourceTree = "SOURCE_ROOT"; };
B8C0A37CF02A66A256285B7D = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CallbackMessage.h"; path = "../../../../modules/juce_events/messages/juce_CallbackMessage.h"; sourceTree = "SOURCE_ROOT"; };
@@ -270,7 +254,6 @@
8BEAE72EDE682D52DF777476 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Messaging.cpp"; path = "../../../../modules/juce_events/native/juce_win32_Messaging.cpp"; sourceTree = "SOURCE_ROOT"; };
669DDA8F501E9E4CADC8A83C = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_events/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
6D2AC82EB2CD73D58C3E1BF1 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_events.h"; path = "../../../../modules/juce_events/juce_events.h"; sourceTree = "SOURCE_ROOT"; };
0017D445356186C09F446C3D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_events.mm"; path = "../../../../modules/juce_events/juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
2083685698D2B857F816D72A = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Colour.cpp"; path = "../../../../modules/juce_graphics/colour/juce_Colour.cpp"; sourceTree = "SOURCE_ROOT"; };
0121E70734F4CD0F5A86F1E3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Colour.h"; path = "../../../../modules/juce_graphics/colour/juce_Colour.h"; sourceTree = "SOURCE_ROOT"; };
D6EB67104C58CC2DE8BF7F67 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ColourGradient.cpp"; path = "../../../../modules/juce_graphics/colour/juce_ColourGradient.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -344,7 +327,6 @@
EADB9E580B8C7446815DE643 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Fonts.cpp"; path = "../../../../modules/juce_graphics/native/juce_win32_Fonts.cpp"; sourceTree = "SOURCE_ROOT"; };
09D7429C25730D6F3B4E0642 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_graphics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
03F9A31F70ED4485581AE552 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_graphics.h"; path = "../../../../modules/juce_graphics/juce_graphics.h"; sourceTree = "SOURCE_ROOT"; };
44B93FF7967BF4E26ED039E2 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_graphics.mm"; path = "../../../../modules/juce_graphics/juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
A699BCB405A37D7DE9049FDD = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Component.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_Component.cpp"; sourceTree = "SOURCE_ROOT"; };
324E7B1070988C3C06A0BEF3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Component.h"; path = "../../../../modules/juce_gui_basics/components/juce_Component.h"; sourceTree = "SOURCE_ROOT"; };
FC2C6E2F967891D6076365AF = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentListener.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_ComponentListener.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -589,7 +571,6 @@
5F5B43B4E3CEE4E7D4B83AB5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Windowing.cpp"; path = "../../../../modules/juce_gui_basics/native/juce_win32_Windowing.cpp"; sourceTree = "SOURCE_ROOT"; };
8CA6E682CD0F4D5D33152F00 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
2BC499A6DE885A18B4CD8260 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_basics.h"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.h"; sourceTree = "SOURCE_ROOT"; };
578E8DC15B453C459D5981C9 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_basics.mm"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
D9F40FA0B1810F2C63E63EC6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeDocument.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.cpp"; sourceTree = "SOURCE_ROOT"; };
7E6CC2B705DA0F2FA03F0439 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CodeDocument.h"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.h"; sourceTree = "SOURCE_ROOT"; };
35DD8BB94D949A04771E2B90 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeEditorComponent.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -634,7 +615,6 @@
2FEB089D59F15E94AE69703D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WebBrowserComponent.cpp"; path = "../../../../modules/juce_gui_extra/native/juce_win32_WebBrowserComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
30554FF0C56AD18750257F8D = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_extra/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
58EA7A879E5A368F972748B8 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_extra.h"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.h"; sourceTree = "SOURCE_ROOT"; };
6072E4A5F7128313C23AD035 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_extra.mm"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.mm"; sourceTree = "SOURCE_ROOT"; };
8CEB00814B14C1027DFE30E3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = "SOURCE_ROOT"; };
BEEF2F68DF4DB1B49299FC10 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../../../modules/juce_core/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
589B2E9C8B77AA2D5A783920 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_data_structures.mm"; path = "../../../../modules/juce_data_structures/juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
@@ -857,8 +837,7 @@
8A57CA1CBCBB3E176C2D4527,
886F2C01510BAAD0F56027A6,
F1CCB1E94EFFEBDBF8D076FD,
76D1A438237A9531C6FCE728,
BEEF2F68DF4DB1B49299FC10 ); name = "juce_core"; sourceTree = "<group>"; };
76D1A438237A9531C6FCE728 ); name = "juce_core"; sourceTree = "<group>"; };
385E0FD93F12DC738E63448B = { isa = PBXGroup; children = (
CE7E80DB6068EB1630C5B7A6,
742D3994021C7DBD93888983,
@@ -878,8 +857,7 @@
B19E41F8FBD292FE4A6B7FD9,
9F5ADB928AC1C05BC1FBD38A,
256517C7F0A8FDF735305EE1,
63C0A22CA5AE9C155A44679A,
589B2E9C8B77AA2D5A783920 ); name = "juce_data_structures"; sourceTree = "<group>"; };
63C0A22CA5AE9C155A44679A ); name = "juce_data_structures"; sourceTree = "<group>"; };
A21D09A43360FD4CE56CE531 = { isa = PBXGroup; children = (
0D848567EACBFBD77403C377,
FBE89CB20CB80EA5845D84ED,
@@ -928,8 +906,7 @@
A95E9D0FE974A969D19CF271,
AF12330C1C3A9B61EBDB050A,
669DDA8F501E9E4CADC8A83C,
6D2AC82EB2CD73D58C3E1BF1,
0017D445356186C09F446C3D ); name = "juce_events"; sourceTree = "<group>"; };
6D2AC82EB2CD73D58C3E1BF1 ); name = "juce_events"; sourceTree = "<group>"; };
23CE65A8C18113D8E6EA1107 = { isa = PBXGroup; children = (
2083685698D2B857F816D72A,
0121E70734F4CD0F5A86F1E3,
@@ -1021,8 +998,7 @@
DD16CF11591610205F38A68A,
EB88019D2AFF41DF959F9428,
09D7429C25730D6F3B4E0642,
03F9A31F70ED4485581AE552,
44B93FF7967BF4E26ED039E2 ); name = "juce_graphics"; sourceTree = "<group>"; };
03F9A31F70ED4485581AE552 ); name = "juce_graphics"; sourceTree = "<group>"; };
62B65C4F32CDEE1EF6A8A90E = { isa = PBXGroup; children = (
A699BCB405A37D7DE9049FDD,
324E7B1070988C3C06A0BEF3,
@@ -1301,8 +1277,7 @@
B40D92429BA8B46F72B44E8E,
5F80A7A80433BF9686B4E254,
8CA6E682CD0F4D5D33152F00,
2BC499A6DE885A18B4CD8260,
578E8DC15B453C459D5981C9 ); name = "juce_gui_basics"; sourceTree = "<group>"; };
2BC499A6DE885A18B4CD8260 ); name = "juce_gui_basics"; sourceTree = "<group>"; };
5A383C70731C60911E6985F5 = { isa = PBXGroup; children = (
D9F40FA0B1810F2C63E63EC6,
7E6CC2B705DA0F2FA03F0439,
@@ -1359,8 +1334,7 @@
6BF5E15522D8A272032AE928,
B7B3A5120FFDDC425428BDD3,
30554FF0C56AD18750257F8D,
58EA7A879E5A368F972748B8,
6072E4A5F7128313C23AD035 ); name = "juce_gui_extra"; sourceTree = "<group>"; };
58EA7A879E5A368F972748B8 ); name = "juce_gui_extra"; sourceTree = "<group>"; };
82A850C8020C4560C4084D54 = { isa = PBXGroup; children = (
F69AB9EE6EF759AE687B11CB,
DC40104D134A51AAD12BFC52,
@@ -1378,19 +1352,12 @@
6072E4A5F7128313C23AD035,
9E67BF939715E2A640FF6AFB ); name = "Juce Library Code"; sourceTree = "<group>"; };
AE86EC0712AA99EF212AD4AE = { isa = PBXGroup; children = (
B786F246076E6F5D363A6A2C ); name = Resources; sourceTree = "<group>"; };
4596684181E5482B97F9D0E5 ); name = Resources; sourceTree = "<group>"; };
C134A2DBF8134BD791778F0F = { isa = PBXGroup; children = (
334D0368264EA3F0CCE0EE17,
B3F65BEEC3F6EB68E4E746B9,
314FB1B624F52EE7A456FE43,
0C1D9AF08416142C7942E38F,
F6CFFFBA71C908EBE5016F2C,
E98B2A14394D946A9396C587,
4329D15C5681F82FF9E090AD,
99871D47887B822442F0D4AA,
9A319F9C07F2071858B869F6,
FD6640D5A61A403DBC58B581,
55F526D67974ADF30BBE1F3B,
12AC899E6756C592BEFD6565 ); name = Frameworks; sourceTree = "<group>"; };
DC3A70675753A61E8C7CD36B = { isa = PBXGroup; children = (
D5A29444C637255D66ACB7AE ); name = Products; sourceTree = "<group>"; };
@@ -1478,17 +1445,10 @@
9D1E42529FB0B6DDDC3457DE,
B12AC86ED7CB39E6B52EFBC0 ); runOnlyForDeploymentPostprocessing = 0; };
CB4944AF280662FF07FEFEC4 = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
D397D8CEF8663F449B4439C0,
7BC4087FD54A2C1ED196C892,
3F902D2C41E0C1FFC90C2724,
056513FD57B5879AEDB3FB4D,
891256EECE8E8E7FAFCA1185,
EFF4A46CD8DC98212AF9F5A0,
C5E169F7107EC2306276438A,
6D3C942E85A6141029E184A4,
569A272ED68671F2FE9903B8,
9EA4F1C0E2356AB5C07CE95E,
E12A6AAFEC6BB91A41D85FF2,
A9F87921F5EF364874BF8D08 ); runOnlyForDeploymentPostprocessing = 0; };
9F559EB2CC99871D47887B82 = { isa = PBXNativeTarget; buildConfigurationList = 6F5E160F06E7FAD8B5C96752; buildPhases = (
4B8D17F77F2E2E7A2419CB17,


+ 0
- 60
extras/example projects/Builds/VisualStudio2005/HelloWorld.vcproj View File

@@ -956,16 +956,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.h"/>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_data_structures">
<Filter Name="values">
@@ -1041,16 +1031,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.h"/>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_events">
<Filter Name="messages">
@@ -1245,16 +1225,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.h"/>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_graphics">
<Filter Name="colour">
@@ -1663,16 +1633,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.h"/>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_basics">
<Filter Name="components">
@@ -2997,16 +2957,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_extra">
<Filter Name="code_editor">
@@ -3236,16 +3186,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
</Filter>
<Filter Name="Juce Library Code">


+ 0
- 60
extras/example projects/Builds/VisualStudio2008/HelloWorld.vcproj View File

@@ -956,16 +956,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.h"/>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_data_structures">
<Filter Name="values">
@@ -1041,16 +1031,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.h"/>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_events">
<Filter Name="messages">
@@ -1245,16 +1225,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.h"/>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_graphics">
<Filter Name="colour">
@@ -1663,16 +1633,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.h"/>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_basics">
<Filter Name="components">
@@ -2997,16 +2957,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_extra">
<Filter Name="code_editor">
@@ -3236,16 +3186,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
</Filter>
<Filter Name="Juce Library Code">


+ 7
- 31
extras/example projects/Builds/iOS/HelloWorld.xcodeproj/project.pbxproj View File

@@ -6,12 +6,9 @@
objectVersion = 45;
objects = {

D397D8CEF8663F449B4439C0 = { isa = PBXBuildFile; fileRef = 334D0368264EA3F0CCE0EE17; };
1622BC343C98F98AC2AC0459 = { isa = PBXBuildFile; fileRef = 0B19E915E1E0EEC05BA88866; };
2F1CDA747BD63008A80CB986 = { isa = PBXBuildFile; fileRef = B9D3D799056426FE0C1CCDEC; };
D8DBAED4AB03622A655367C6 = { isa = PBXBuildFile; fileRef = CEDC260F91A2E281EC5DA347; };
C37934E8A18A3A82637C1445 = { isa = PBXBuildFile; fileRef = D211E515199671889E7CF811; };
9EA4F1C0E2356AB5C07CE95E = { isa = PBXBuildFile; fileRef = FD6640D5A61A403DBC58B581; };
BAEB975FAD8A99FA884DC593 = { isa = PBXBuildFile; fileRef = C258EDBF4F8898E84C03063E; };
C67B5243DBC7218FEC5DBCC0 = { isa = PBXBuildFile; fileRef = 793A37C60BF46C10BD7FC6F3; };
9B11A7532637EC12F1DC4B2E = { isa = PBXBuildFile; fileRef = 712387DD847BBDA027E9452E; };
@@ -21,12 +18,9 @@
403005EB49C23151E0C7248C = { isa = PBXBuildFile; fileRef = 44B93FF7967BF4E26ED039E2; };
9D1E42529FB0B6DDDC3457DE = { isa = PBXBuildFile; fileRef = 578E8DC15B453C459D5981C9; };
B12AC86ED7CB39E6B52EFBC0 = { isa = PBXBuildFile; fileRef = 6072E4A5F7128313C23AD035; };
334D0368264EA3F0CCE0EE17 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
0B19E915E1E0EEC05BA88866 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
B9D3D799056426FE0C1CCDEC = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
CEDC260F91A2E281EC5DA347 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
D211E515199671889E7CF811 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
FD6640D5A61A403DBC58B581 = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
C258EDBF4F8898E84C03063E = { isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
D5A29444C637255D66ACB7AE = { isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HelloWorld.app; sourceTree = "BUILT_PRODUCTS_DIR"; };
4596684181E5482B97F9D0E5 = { isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Info.plist; sourceTree = "SOURCE_ROOT"; };
@@ -207,7 +201,6 @@
5FCED5D7D910E919D49BE322 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Threads.cpp"; path = "../../../../modules/juce_core/native/juce_win32_Threads.cpp"; sourceTree = "SOURCE_ROOT"; };
F1CCB1E94EFFEBDBF8D076FD = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_core/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
76D1A438237A9531C6FCE728 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_core.h"; path = "../../../../modules/juce_core/juce_core.h"; sourceTree = "SOURCE_ROOT"; };
BEEF2F68DF4DB1B49299FC10 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../../../modules/juce_core/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
CE7E80DB6068EB1630C5B7A6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Value.cpp"; path = "../../../../modules/juce_data_structures/values/juce_Value.cpp"; sourceTree = "SOURCE_ROOT"; };
742D3994021C7DBD93888983 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Value.h"; path = "../../../../modules/juce_data_structures/values/juce_Value.h"; sourceTree = "SOURCE_ROOT"; };
78F977A94D95EC7E3875DC38 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ValueTree.cpp"; path = "../../../../modules/juce_data_structures/values/juce_ValueTree.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -221,7 +214,6 @@
71863353E77A5682D543B908 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PropertiesFile.h"; path = "../../../../modules/juce_data_structures/app_properties/juce_PropertiesFile.h"; sourceTree = "SOURCE_ROOT"; };
256517C7F0A8FDF735305EE1 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_data_structures/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
63C0A22CA5AE9C155A44679A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_data_structures.h"; path = "../../../../modules/juce_data_structures/juce_data_structures.h"; sourceTree = "SOURCE_ROOT"; };
589B2E9C8B77AA2D5A783920 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_data_structures.mm"; path = "../../../../modules/juce_data_structures/juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
0D848567EACBFBD77403C377 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ApplicationBase.cpp"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.cpp"; sourceTree = "SOURCE_ROOT"; };
FBE89CB20CB80EA5845D84ED = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationBase.h"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.h"; sourceTree = "SOURCE_ROOT"; };
B8C0A37CF02A66A256285B7D = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CallbackMessage.h"; path = "../../../../modules/juce_events/messages/juce_CallbackMessage.h"; sourceTree = "SOURCE_ROOT"; };
@@ -260,7 +252,6 @@
8BEAE72EDE682D52DF777476 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Messaging.cpp"; path = "../../../../modules/juce_events/native/juce_win32_Messaging.cpp"; sourceTree = "SOURCE_ROOT"; };
669DDA8F501E9E4CADC8A83C = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_events/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
6D2AC82EB2CD73D58C3E1BF1 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_events.h"; path = "../../../../modules/juce_events/juce_events.h"; sourceTree = "SOURCE_ROOT"; };
0017D445356186C09F446C3D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_events.mm"; path = "../../../../modules/juce_events/juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
2083685698D2B857F816D72A = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Colour.cpp"; path = "../../../../modules/juce_graphics/colour/juce_Colour.cpp"; sourceTree = "SOURCE_ROOT"; };
0121E70734F4CD0F5A86F1E3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Colour.h"; path = "../../../../modules/juce_graphics/colour/juce_Colour.h"; sourceTree = "SOURCE_ROOT"; };
D6EB67104C58CC2DE8BF7F67 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ColourGradient.cpp"; path = "../../../../modules/juce_graphics/colour/juce_ColourGradient.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -334,7 +325,6 @@
EADB9E580B8C7446815DE643 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Fonts.cpp"; path = "../../../../modules/juce_graphics/native/juce_win32_Fonts.cpp"; sourceTree = "SOURCE_ROOT"; };
09D7429C25730D6F3B4E0642 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_graphics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
03F9A31F70ED4485581AE552 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_graphics.h"; path = "../../../../modules/juce_graphics/juce_graphics.h"; sourceTree = "SOURCE_ROOT"; };
44B93FF7967BF4E26ED039E2 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_graphics.mm"; path = "../../../../modules/juce_graphics/juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
A699BCB405A37D7DE9049FDD = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Component.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_Component.cpp"; sourceTree = "SOURCE_ROOT"; };
324E7B1070988C3C06A0BEF3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Component.h"; path = "../../../../modules/juce_gui_basics/components/juce_Component.h"; sourceTree = "SOURCE_ROOT"; };
FC2C6E2F967891D6076365AF = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentListener.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_ComponentListener.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -579,7 +569,6 @@
5F5B43B4E3CEE4E7D4B83AB5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Windowing.cpp"; path = "../../../../modules/juce_gui_basics/native/juce_win32_Windowing.cpp"; sourceTree = "SOURCE_ROOT"; };
8CA6E682CD0F4D5D33152F00 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
2BC499A6DE885A18B4CD8260 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_basics.h"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.h"; sourceTree = "SOURCE_ROOT"; };
578E8DC15B453C459D5981C9 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_basics.mm"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
D9F40FA0B1810F2C63E63EC6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeDocument.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.cpp"; sourceTree = "SOURCE_ROOT"; };
7E6CC2B705DA0F2FA03F0439 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CodeDocument.h"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.h"; sourceTree = "SOURCE_ROOT"; };
35DD8BB94D949A04771E2B90 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeEditorComponent.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -624,7 +613,6 @@
2FEB089D59F15E94AE69703D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WebBrowserComponent.cpp"; path = "../../../../modules/juce_gui_extra/native/juce_win32_WebBrowserComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
30554FF0C56AD18750257F8D = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_extra/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
58EA7A879E5A368F972748B8 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_extra.h"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.h"; sourceTree = "SOURCE_ROOT"; };
6072E4A5F7128313C23AD035 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_extra.mm"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.mm"; sourceTree = "SOURCE_ROOT"; };
8CEB00814B14C1027DFE30E3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = "SOURCE_ROOT"; };
BEEF2F68DF4DB1B49299FC10 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../../../modules/juce_core/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
589B2E9C8B77AA2D5A783920 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_data_structures.mm"; path = "../../../../modules/juce_data_structures/juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
@@ -847,8 +835,7 @@
8A57CA1CBCBB3E176C2D4527,
886F2C01510BAAD0F56027A6,
F1CCB1E94EFFEBDBF8D076FD,
76D1A438237A9531C6FCE728,
BEEF2F68DF4DB1B49299FC10 ); name = "juce_core"; sourceTree = "<group>"; };
76D1A438237A9531C6FCE728 ); name = "juce_core"; sourceTree = "<group>"; };
385E0FD93F12DC738E63448B = { isa = PBXGroup; children = (
CE7E80DB6068EB1630C5B7A6,
742D3994021C7DBD93888983,
@@ -868,8 +855,7 @@
B19E41F8FBD292FE4A6B7FD9,
9F5ADB928AC1C05BC1FBD38A,
256517C7F0A8FDF735305EE1,
63C0A22CA5AE9C155A44679A,
589B2E9C8B77AA2D5A783920 ); name = "juce_data_structures"; sourceTree = "<group>"; };
63C0A22CA5AE9C155A44679A ); name = "juce_data_structures"; sourceTree = "<group>"; };
A21D09A43360FD4CE56CE531 = { isa = PBXGroup; children = (
0D848567EACBFBD77403C377,
FBE89CB20CB80EA5845D84ED,
@@ -918,8 +904,7 @@
A95E9D0FE974A969D19CF271,
AF12330C1C3A9B61EBDB050A,
669DDA8F501E9E4CADC8A83C,
6D2AC82EB2CD73D58C3E1BF1,
0017D445356186C09F446C3D ); name = "juce_events"; sourceTree = "<group>"; };
6D2AC82EB2CD73D58C3E1BF1 ); name = "juce_events"; sourceTree = "<group>"; };
23CE65A8C18113D8E6EA1107 = { isa = PBXGroup; children = (
2083685698D2B857F816D72A,
0121E70734F4CD0F5A86F1E3,
@@ -1011,8 +996,7 @@
DD16CF11591610205F38A68A,
EB88019D2AFF41DF959F9428,
09D7429C25730D6F3B4E0642,
03F9A31F70ED4485581AE552,
44B93FF7967BF4E26ED039E2 ); name = "juce_graphics"; sourceTree = "<group>"; };
03F9A31F70ED4485581AE552 ); name = "juce_graphics"; sourceTree = "<group>"; };
62B65C4F32CDEE1EF6A8A90E = { isa = PBXGroup; children = (
A699BCB405A37D7DE9049FDD,
324E7B1070988C3C06A0BEF3,
@@ -1291,8 +1275,7 @@
B40D92429BA8B46F72B44E8E,
5F80A7A80433BF9686B4E254,
8CA6E682CD0F4D5D33152F00,
2BC499A6DE885A18B4CD8260,
578E8DC15B453C459D5981C9 ); name = "juce_gui_basics"; sourceTree = "<group>"; };
2BC499A6DE885A18B4CD8260 ); name = "juce_gui_basics"; sourceTree = "<group>"; };
5A383C70731C60911E6985F5 = { isa = PBXGroup; children = (
D9F40FA0B1810F2C63E63EC6,
7E6CC2B705DA0F2FA03F0439,
@@ -1349,8 +1332,7 @@
6BF5E15522D8A272032AE928,
B7B3A5120FFDDC425428BDD3,
30554FF0C56AD18750257F8D,
58EA7A879E5A368F972748B8,
6072E4A5F7128313C23AD035 ); name = "juce_gui_extra"; sourceTree = "<group>"; };
58EA7A879E5A368F972748B8 ); name = "juce_gui_extra"; sourceTree = "<group>"; };
82A850C8020C4560C4084D54 = { isa = PBXGroup; children = (
F69AB9EE6EF759AE687B11CB,
DC40104D134A51AAD12BFC52,
@@ -1368,14 +1350,11 @@
6072E4A5F7128313C23AD035,
9E67BF939715E2A640FF6AFB ); name = "Juce Library Code"; sourceTree = "<group>"; };
AE86EC0712AA99EF212AD4AE = { isa = PBXGroup; children = (
B786F246076E6F5D363A6A2C ); name = Resources; sourceTree = "<group>"; };
4596684181E5482B97F9D0E5 ); name = Resources; sourceTree = "<group>"; };
C134A2DBF8134BD791778F0F = { isa = PBXGroup; children = (
334D0368264EA3F0CCE0EE17,
0B19E915E1E0EEC05BA88866,
B9D3D799056426FE0C1CCDEC,
CEDC260F91A2E281EC5DA347,
D211E515199671889E7CF811,
FD6640D5A61A403DBC58B581,
C258EDBF4F8898E84C03063E ); name = Frameworks; sourceTree = "<group>"; };
DC3A70675753A61E8C7CD36B = { isa = PBXGroup; children = (
D5A29444C637255D66ACB7AE ); name = Products; sourceTree = "<group>"; };
@@ -1467,12 +1446,9 @@
9D1E42529FB0B6DDDC3457DE,
B12AC86ED7CB39E6B52EFBC0 ); runOnlyForDeploymentPostprocessing = 0; };
CB4944AF280662FF07FEFEC4 = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
D397D8CEF8663F449B4439C0,
1622BC343C98F98AC2AC0459,
2F1CDA747BD63008A80CB986,
D8DBAED4AB03622A655367C6,
C37934E8A18A3A82637C1445,
9EA4F1C0E2356AB5C07CE95E,
BAEB975FAD8A99FA884DC593 ); runOnlyForDeploymentPostprocessing = 0; };
9F559EB2CC99871D47887B82 = { isa = PBXNativeTarget; buildConfigurationList = 6F5E160F06E7FAD8B5C96752; buildPhases = (
4B8D17F77F2E2E7A2419CB17,


+ 5
- 0
extras/example projects/JuceLibraryCode/AppConfig.h View File

@@ -10,6 +10,9 @@
*/
#ifndef __JUCE_APPCONFIG_TTAKTK1S__
#define __JUCE_APPCONFIG_TTAKTK1S__
//==============================================================================
#define JUCE_MODULE_AVAILABLE_juce_core 1
#define JUCE_MODULE_AVAILABLE_juce_data_structures 1
@@ -43,3 +46,5 @@
// juce_gui_extra flags:
//#define JUCE_WEB_BROWSER
#endif // __JUCE_APPCONFIG_TTAKTK1S__

+ 6
- 6
extras/example projects/JuceLibraryCode/JuceHeader.h View File

@@ -14,12 +14,12 @@
#define __APPHEADERFILE_TTAKTK1S__
#include "AppConfig.h"
#include "../../../modules/juce_core/juce_core.h"
#include "../../../modules/juce_data_structures/juce_data_structures.h"
#include "../../../modules/juce_events/juce_events.h"
#include "../../../modules/juce_graphics/juce_graphics.h"
#include "../../../modules/juce_gui_basics/juce_gui_basics.h"
#include "../../../modules/juce_gui_extra/juce_gui_extra.h"
#include "modules/juce_core/juce_core.h"
#include "modules/juce_data_structures/juce_data_structures.h"
#include "modules/juce_events/juce_events.h"
#include "modules/juce_graphics/juce_graphics.h"
#include "modules/juce_gui_basics/juce_gui_basics.h"
#include "modules/juce_gui_extra/juce_gui_extra.h"
#if ! DONT_SET_USING_JUCE_NAMESPACE
// If your code uses a lot of JUCE classes, then this will obviously save you


+ 5
- 0
extras/example projects/JuceLibraryCode/modules/juce_core/juce_core.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_core/juce_core.h"

+ 5
- 0
extras/example projects/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_data_structures/juce_data_structures.h"

+ 5
- 0
extras/example projects/JuceLibraryCode/modules/juce_events/juce_events.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_events/juce_events.h"

+ 5
- 0
extras/example projects/JuceLibraryCode/modules/juce_graphics/juce_graphics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_graphics/juce_graphics.h"

+ 5
- 0
extras/example projects/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_gui_basics/juce_gui_basics.h"

+ 5
- 0
extras/example projects/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h View File

@@ -0,0 +1,5 @@
// This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../modules/juce_gui_extra/juce_gui_extra.h"

+ 13
- 39
extras/static library/Builds/MacOSX/juce.xcodeproj/project.pbxproj View File

@@ -58,7 +58,6 @@
65CDA708038E5B002F70CE22 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Synthesiser.h"; path = "../../../../modules/juce_audio_basics/synthesisers/juce_Synthesiser.h"; sourceTree = "SOURCE_ROOT"; };
3E513F71B30E2723A4D05F0B = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
A8697E495A0364323143CDCB = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_basics.h"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.h"; sourceTree = "SOURCE_ROOT"; };
E0A39475565DFCF57820BD0D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_basics.mm"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
BFCD0C2DEBB1CF43F50B7D95 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioDeviceManager.cpp"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.cpp"; sourceTree = "SOURCE_ROOT"; };
15E6EFB9C54BD429D355D97E = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioDeviceManager.h"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.h"; sourceTree = "SOURCE_ROOT"; };
F2C13811BAA57E6AEDD6556C = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioIODevice.cpp"; path = "../../../../modules/juce_audio_devices/audio_io/juce_AudioIODevice.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -97,7 +96,6 @@
7ED01359D5465C4F1C1B5C05 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WASAPI.cpp"; path = "../../../../modules/juce_audio_devices/native/juce_win32_WASAPI.cpp"; sourceTree = "SOURCE_ROOT"; };
E11ADC90E49AF59186F1FB1E = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_devices/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
FE70727CB0F3188262A2F23A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_devices.h"; path = "../../../../modules/juce_audio_devices/juce_audio_devices.h"; sourceTree = "SOURCE_ROOT"; };
E2B510D50387D1DDE4838110 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_devices.mm"; path = "../../../../modules/juce_audio_devices/juce_audio_devices.mm"; sourceTree = "SOURCE_ROOT"; };
474B6FF1E4BCEED5AF0A1BB4 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormat.cpp"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
0596E9EBBC2D07D1155C6C74 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioFormat.h"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
DEDB315B0FCC6AC0546F1577 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormatManager.cpp"; path = "../../../../modules/juce_audio_formats/format/juce_AudioFormatManager.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -126,7 +124,6 @@
1423D099EE852B125B983D2D = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Sampler.h"; path = "../../../../modules/juce_audio_formats/sampler/juce_Sampler.h"; sourceTree = "SOURCE_ROOT"; };
D227631FA6A4EC3ADA0E3146 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_formats/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
8831A704A5A0AEB6F06A8A45 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_formats.h"; path = "../../../../modules/juce_audio_formats/juce_audio_formats.h"; sourceTree = "SOURCE_ROOT"; };
C73B15E84736BB50A6C250F7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_formats.mm"; path = "../../../../modules/juce_audio_formats/juce_audio_formats.mm"; sourceTree = "SOURCE_ROOT"; };
C15F01EBD6301E6A9EC2F38C = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioPlayHead.h"; path = "../../../../modules/juce_audio_processors/processors/juce_AudioPlayHead.h"; sourceTree = "SOURCE_ROOT"; };
0EAC5D4A947F4F6B232CB30E = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioPluginInstance.h"; path = "../../../../modules/juce_audio_processors/processors/juce_AudioPluginInstance.h"; sourceTree = "SOURCE_ROOT"; };
D2F7E192670C7329F2C7112F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioProcessor.cpp"; path = "../../../../modules/juce_audio_processors/processors/juce_AudioProcessor.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -159,7 +156,6 @@
CF8EB15BEFA1506E02346DE4 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PluginListComponent.h"; path = "../../../../modules/juce_audio_processors/scanning/juce_PluginListComponent.h"; sourceTree = "SOURCE_ROOT"; };
D54156FDFA57CB9E875DEE5C = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_audio_processors/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
6057C55FEE9B2AE211A99A08 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_processors.h"; path = "../../../../modules/juce_audio_processors/juce_audio_processors.h"; sourceTree = "SOURCE_ROOT"; };
41B21A207B292C57F7BE6FE5 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_processors.mm"; path = "../../../../modules/juce_audio_processors/juce_audio_processors.mm"; sourceTree = "SOURCE_ROOT"; };
F754DD474BD60998F1956550 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CharacterFunctions.cpp"; path = "../../../../modules/juce_core/text/juce_CharacterFunctions.cpp"; sourceTree = "SOURCE_ROOT"; };
50A48A1336B36A4976DCE2BB = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharacterFunctions.h"; path = "../../../../modules/juce_core/text/juce_CharacterFunctions.h"; sourceTree = "SOURCE_ROOT"; };
93BFBE3C473225247259B107 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharPointer_ASCII.h"; path = "../../../../modules/juce_core/text/juce_CharPointer_ASCII.h"; sourceTree = "SOURCE_ROOT"; };
@@ -334,7 +330,6 @@
1356AFA017F632DBA1C51145 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Threads.cpp"; path = "../../../../modules/juce_core/native/juce_win32_Threads.cpp"; sourceTree = "SOURCE_ROOT"; };
B5548BB28CC4349DC4FBA310 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_core/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
2B6A7E00615FDFF39217154A = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_core.h"; path = "../../../../modules/juce_core/juce_core.h"; sourceTree = "SOURCE_ROOT"; };
6377F8410D220B766EB33A32 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../../../modules/juce_core/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
A844F7CC5377A14B0FD21C51 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_BlowFish.cpp"; path = "../../../../modules/juce_cryptography/encryption/juce_BlowFish.cpp"; sourceTree = "SOURCE_ROOT"; };
D7956B3A04D1433AE19C7BE7 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BlowFish.h"; path = "../../../../modules/juce_cryptography/encryption/juce_BlowFish.h"; sourceTree = "SOURCE_ROOT"; };
2E176076BEFD8FC899CAA7D6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Primes.cpp"; path = "../../../../modules/juce_cryptography/encryption/juce_Primes.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -347,7 +342,6 @@
4F673061BE9C989BA77A126B = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SHA256.h"; path = "../../../../modules/juce_cryptography/hashing/juce_SHA256.h"; sourceTree = "SOURCE_ROOT"; };
896D0D27FD17A5D59572A3A2 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_cryptography/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
C6F5C2900BC5E311BAC14CF0 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_cryptography.h"; path = "../../../../modules/juce_cryptography/juce_cryptography.h"; sourceTree = "SOURCE_ROOT"; };
5BC8016A3A99BE8A416CFCC9 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_cryptography.mm"; path = "../../../../modules/juce_cryptography/juce_cryptography.mm"; sourceTree = "SOURCE_ROOT"; };
730659A3AE3D25D90DF0F5C9 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Value.cpp"; path = "../../../../modules/juce_data_structures/values/juce_Value.cpp"; sourceTree = "SOURCE_ROOT"; };
39C5026D4FE1C77F6FA3B7A6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Value.h"; path = "../../../../modules/juce_data_structures/values/juce_Value.h"; sourceTree = "SOURCE_ROOT"; };
3D8141728B6A263005900A4B = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ValueTree.cpp"; path = "../../../../modules/juce_data_structures/values/juce_ValueTree.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -361,7 +355,6 @@
361F0C2C255F9044A16EE71B = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PropertiesFile.h"; path = "../../../../modules/juce_data_structures/app_properties/juce_PropertiesFile.h"; sourceTree = "SOURCE_ROOT"; };
DAFDF09F3E8D37B9025B8C04 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_data_structures/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
18598BF5E383D6D7266F95AC = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_data_structures.h"; path = "../../../../modules/juce_data_structures/juce_data_structures.h"; sourceTree = "SOURCE_ROOT"; };
1D24F764B95DF4E036A36743 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_data_structures.mm"; path = "../../../../modules/juce_data_structures/juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
C21D5F3F18904599403DF18A = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ApplicationBase.cpp"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.cpp"; sourceTree = "SOURCE_ROOT"; };
A080668A3A8D57685177B2F0 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationBase.h"; path = "../../../../modules/juce_events/messages/juce_ApplicationBase.h"; sourceTree = "SOURCE_ROOT"; };
7D587D453E0FB06433438980 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CallbackMessage.h"; path = "../../../../modules/juce_events/messages/juce_CallbackMessage.h"; sourceTree = "SOURCE_ROOT"; };
@@ -400,7 +393,6 @@
4073B0F61C4D6714AC92A298 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Messaging.cpp"; path = "../../../../modules/juce_events/native/juce_win32_Messaging.cpp"; sourceTree = "SOURCE_ROOT"; };
1B25A4579EF3D80F7AE3D65E = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_events/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
12B292F6F092CD9758594904 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_events.h"; path = "../../../../modules/juce_events/juce_events.h"; sourceTree = "SOURCE_ROOT"; };
C5B0AD1E6336D0926C7E9A40 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_events.mm"; path = "../../../../modules/juce_events/juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
E51B422FD6B70119C531053D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Colour.cpp"; path = "../../../../modules/juce_graphics/colour/juce_Colour.cpp"; sourceTree = "SOURCE_ROOT"; };
B6BAB1DF71CA07C227A12F05 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Colour.h"; path = "../../../../modules/juce_graphics/colour/juce_Colour.h"; sourceTree = "SOURCE_ROOT"; };
9B7330E98A3D15EFB4DAAD89 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ColourGradient.cpp"; path = "../../../../modules/juce_graphics/colour/juce_ColourGradient.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -474,7 +466,6 @@
9F7367204951CD085E771456 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Fonts.cpp"; path = "../../../../modules/juce_graphics/native/juce_win32_Fonts.cpp"; sourceTree = "SOURCE_ROOT"; };
BD601B645248472107783464 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_graphics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
C8817DE8BEC28E4724351374 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_graphics.h"; path = "../../../../modules/juce_graphics/juce_graphics.h"; sourceTree = "SOURCE_ROOT"; };
094118C0D3403EA43B0B6705 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_graphics.mm"; path = "../../../../modules/juce_graphics/juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
6B21858C3378B63FB52FDDF0 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Component.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_Component.cpp"; sourceTree = "SOURCE_ROOT"; };
E7D755E9BE6EC6FED3CBEC06 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Component.h"; path = "../../../../modules/juce_gui_basics/components/juce_Component.h"; sourceTree = "SOURCE_ROOT"; };
A1C537F7D45EEAA8D48E93C1 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentListener.cpp"; path = "../../../../modules/juce_gui_basics/components/juce_ComponentListener.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -719,7 +710,6 @@
14E32C9C21A33EA9A1E378D8 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Windowing.cpp"; path = "../../../../modules/juce_gui_basics/native/juce_win32_Windowing.cpp"; sourceTree = "SOURCE_ROOT"; };
314FBF5BFBE4971F1F3F6D22 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_basics/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
E06C637E1C6D94DA91E8B082 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_basics.h"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.h"; sourceTree = "SOURCE_ROOT"; };
1C175699991A76076A84BFEB = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_basics.mm"; path = "../../../../modules/juce_gui_basics/juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
8E8CD978FF5749EF30006CE8 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeDocument.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.cpp"; sourceTree = "SOURCE_ROOT"; };
33F59C8F33A049E17D69424B = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CodeDocument.h"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.h"; sourceTree = "SOURCE_ROOT"; };
FA6655818A79D4C6544959B3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeEditorComponent.cpp"; path = "../../../../modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
@@ -764,7 +754,6 @@
E473D16597C698567A84AD4F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WebBrowserComponent.cpp"; path = "../../../../modules/juce_gui_extra/native/juce_win32_WebBrowserComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
F5EE18C9034F1B492C40BDA0 = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_gui_extra/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
1D72436FDB2F7041634276CA = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_extra.h"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.h"; sourceTree = "SOURCE_ROOT"; };
150BBE7E24E8DCD59F550E48 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_extra.mm"; path = "../../../../modules/juce_gui_extra/juce_gui_extra.mm"; sourceTree = "SOURCE_ROOT"; };
A732DC02BBE986BF0765764F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OpenGLComponent.cpp"; path = "../../../../modules/juce_opengl/opengl/juce_OpenGLComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
501C821E2ED9A6A109832D6D = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLComponent.h"; path = "../../../../modules/juce_opengl/opengl/juce_OpenGLComponent.h"; sourceTree = "SOURCE_ROOT"; };
78F5A67F6FF9DA192A58B4A1 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLContext.h"; path = "../../../../modules/juce_opengl/opengl/juce_OpenGLContext.h"; sourceTree = "SOURCE_ROOT"; };
@@ -776,7 +765,6 @@
B0800499326E0BE02B6F17D3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_OpenGLComponent.cpp"; path = "../../../../modules/juce_opengl/native/juce_win32_OpenGLComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
C3BF80BD7048DE358C516F5E = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_opengl/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
7CB80DCC36EE9D5A01382E2E = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_opengl.h"; path = "../../../../modules/juce_opengl/juce_opengl.h"; sourceTree = "SOURCE_ROOT"; };
7AF099F50A4809A5378CF200 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_opengl.mm"; path = "../../../../modules/juce_opengl/juce_opengl.mm"; sourceTree = "SOURCE_ROOT"; };
173048F81838CAAF50C584E2 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DirectShowComponent.h"; path = "../../../../modules/juce_video/playback/juce_DirectShowComponent.h"; sourceTree = "SOURCE_ROOT"; };
C241AD850EAD9E003869734F = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_QuickTimeMovieComponent.h"; path = "../../../../modules/juce_video/playback/juce_QuickTimeMovieComponent.h"; sourceTree = "SOURCE_ROOT"; };
80C0E74445BBBFA98ABBF9D9 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CameraDevice.h"; path = "../../../../modules/juce_video/capture/juce_CameraDevice.h"; sourceTree = "SOURCE_ROOT"; };
@@ -788,7 +776,6 @@
491971FDF1A6F5DF6246C66F = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_QuickTimeMovieComponent.cpp"; path = "../../../../modules/juce_video/native/juce_win32_QuickTimeMovieComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
26C19449BE5F993336C3D2BC = { isa = PBXFileReference; lastKnownFileType = file; name = "juce_module_info"; path = "../../../../modules/juce_video/juce_module_info"; sourceTree = "SOURCE_ROOT"; };
419C611DAD9691238E184C2D = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_video.h"; path = "../../../../modules/juce_video/juce_video.h"; sourceTree = "SOURCE_ROOT"; };
E48F74F26BFFDD6E1835A8D3 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_video.mm"; path = "../../../../modules/juce_video/juce_video.mm"; sourceTree = "SOURCE_ROOT"; };
4073DA5988F90BD44A296EF6 = { isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = "SOURCE_ROOT"; };
E0A39475565DFCF57820BD0D = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_basics.mm"; path = "../../../../modules/juce_audio_basics/juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
E2B510D50387D1DDE4838110 = { isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_devices.mm"; path = "../../../../modules/juce_audio_devices/juce_audio_devices.mm"; sourceTree = "SOURCE_ROOT"; };
@@ -855,8 +842,7 @@
74F311510C6D6CD24D4DA39A,
385217EBAC7D5C8BDEC83E95,
3E513F71B30E2723A4D05F0B,
A8697E495A0364323143CDCB,
E0A39475565DFCF57820BD0D ); name = "juce_audio_basics"; sourceTree = "<group>"; };
A8697E495A0364323143CDCB ); name = "juce_audio_basics"; sourceTree = "<group>"; };
965D99AEA91600DE9EEC69A9 = { isa = PBXGroup; children = (
BFCD0C2DEBB1CF43F50B7D95,
15E6EFB9C54BD429D355D97E,
@@ -905,8 +891,7 @@
744B64F38603F03FEF90DE83,
7CD7931EB6DA39D4DD36E4C9,
E11ADC90E49AF59186F1FB1E,
FE70727CB0F3188262A2F23A,
E2B510D50387D1DDE4838110 ); name = "juce_audio_devices"; sourceTree = "<group>"; };
FE70727CB0F3188262A2F23A ); name = "juce_audio_devices"; sourceTree = "<group>"; };
C7D7C0D4B07D60E74D05A6E5 = { isa = PBXGroup; children = (
474B6FF1E4BCEED5AF0A1BB4,
0596E9EBBC2D07D1155C6C74,
@@ -941,8 +926,7 @@
076F4F22D2F55289466D3C70,
C0A2DC408B71CB32D54A72E6,
D227631FA6A4EC3ADA0E3146,
8831A704A5A0AEB6F06A8A45,
C73B15E84736BB50A6C250F7 ); name = "juce_audio_formats"; sourceTree = "<group>"; };
8831A704A5A0AEB6F06A8A45 ); name = "juce_audio_formats"; sourceTree = "<group>"; };
CA78E10F1C9F0E4ED687448D = { isa = PBXGroup; children = (
C15F01EBD6301E6A9EC2F38C,
0EAC5D4A947F4F6B232CB30E,
@@ -983,8 +967,7 @@
9332E3D0B5FEEB3489C4BADE,
A1592AF17CE3B8706B8383CE,
D54156FDFA57CB9E875DEE5C,
6057C55FEE9B2AE211A99A08,
41B21A207B292C57F7BE6FE5 ); name = "juce_audio_processors"; sourceTree = "<group>"; };
6057C55FEE9B2AE211A99A08 ); name = "juce_audio_processors"; sourceTree = "<group>"; };
087E2B12BBEE505809DCD4A8 = { isa = PBXGroup; children = (
F754DD474BD60998F1956550,
50A48A1336B36A4976DCE2BB,
@@ -1193,8 +1176,7 @@
3FFF93E5EA8087D93858834A,
4DF7F5D99FE0E392C18B55C8,
B5548BB28CC4349DC4FBA310,
2B6A7E00615FDFF39217154A,
6377F8410D220B766EB33A32 ); name = "juce_core"; sourceTree = "<group>"; };
2B6A7E00615FDFF39217154A ); name = "juce_core"; sourceTree = "<group>"; };
37327AEBCBAB2C3F75165E0C = { isa = PBXGroup; children = (
A844F7CC5377A14B0FD21C51,
D7956B3A04D1433AE19C7BE7,
@@ -1211,8 +1193,7 @@
37327AEBCBAB2C3F75165E0C,
4A1884A884AAD911599EB4B9,
896D0D27FD17A5D59572A3A2,
C6F5C2900BC5E311BAC14CF0,
5BC8016A3A99BE8A416CFCC9 ); name = "juce_cryptography"; sourceTree = "<group>"; };
C6F5C2900BC5E311BAC14CF0 ); name = "juce_cryptography"; sourceTree = "<group>"; };
EDE7D8A27DE716355A8D72AE = { isa = PBXGroup; children = (
730659A3AE3D25D90DF0F5C9,
39C5026D4FE1C77F6FA3B7A6,
@@ -1232,8 +1213,7 @@
66261AC129B7ECB01786ADFB,
44E2A56BC8970A1D9E1601AD,
DAFDF09F3E8D37B9025B8C04,
18598BF5E383D6D7266F95AC,
1D24F764B95DF4E036A36743 ); name = "juce_data_structures"; sourceTree = "<group>"; };
18598BF5E383D6D7266F95AC ); name = "juce_data_structures"; sourceTree = "<group>"; };
67A5D27D7046370FB1972353 = { isa = PBXGroup; children = (
C21D5F3F18904599403DF18A,
A080668A3A8D57685177B2F0,
@@ -1282,8 +1262,7 @@
6EF766D72759E32BAEB72084,
64BA0DD44A1FE523C7F6322C,
1B25A4579EF3D80F7AE3D65E,
12B292F6F092CD9758594904,
C5B0AD1E6336D0926C7E9A40 ); name = "juce_events"; sourceTree = "<group>"; };
12B292F6F092CD9758594904 ); name = "juce_events"; sourceTree = "<group>"; };
D8663E700F665CAAC3054F2A = { isa = PBXGroup; children = (
E51B422FD6B70119C531053D,
B6BAB1DF71CA07C227A12F05,
@@ -1375,8 +1354,7 @@
81AE98EA97FB5AE22B53D39C,
9010EA7568D49B9172CAD24B,
BD601B645248472107783464,
C8817DE8BEC28E4724351374,
094118C0D3403EA43B0B6705 ); name = "juce_graphics"; sourceTree = "<group>"; };
C8817DE8BEC28E4724351374 ); name = "juce_graphics"; sourceTree = "<group>"; };
174F251770A327D0C3D3D711 = { isa = PBXGroup; children = (
6B21858C3378B63FB52FDDF0,
E7D755E9BE6EC6FED3CBEC06,
@@ -1655,8 +1633,7 @@
69956C1AD97DFE214EDE7CA1,
041971703218095852DE1067,
314FBF5BFBE4971F1F3F6D22,
E06C637E1C6D94DA91E8B082,
1C175699991A76076A84BFEB ); name = "juce_gui_basics"; sourceTree = "<group>"; };
E06C637E1C6D94DA91E8B082 ); name = "juce_gui_basics"; sourceTree = "<group>"; };
0FC01648B1E1AA53EA83C318 = { isa = PBXGroup; children = (
8E8CD978FF5749EF30006CE8,
33F59C8F33A049E17D69424B,
@@ -1713,8 +1690,7 @@
108DBA2D50BEFC34D045273B,
6C4B7EEB3DD226042043EBE6,
F5EE18C9034F1B492C40BDA0,
1D72436FDB2F7041634276CA,
150BBE7E24E8DCD59F550E48 ); name = "juce_gui_extra"; sourceTree = "<group>"; };
1D72436FDB2F7041634276CA ); name = "juce_gui_extra"; sourceTree = "<group>"; };
7C8F6979D98E0644B91AA03D = { isa = PBXGroup; children = (
A732DC02BBE986BF0765764F,
501C821E2ED9A6A109832D6D,
@@ -1730,8 +1706,7 @@
7C8F6979D98E0644B91AA03D,
ED2ED05BA2DA3D95081470CB,
C3BF80BD7048DE358C516F5E,
7CB80DCC36EE9D5A01382E2E,
7AF099F50A4809A5378CF200 ); name = "juce_opengl"; sourceTree = "<group>"; };
7CB80DCC36EE9D5A01382E2E ); name = "juce_opengl"; sourceTree = "<group>"; };
AF76ECB187C56998D4CE03A3 = { isa = PBXGroup; children = (
173048F81838CAAF50C584E2,
C241AD850EAD9E003869734F ); name = playback; sourceTree = "<group>"; };
@@ -1749,8 +1724,7 @@
A1BF705F864EC3834D7767C8,
D5D214E4B41A545DE0315B36,
26C19449BE5F993336C3D2BC,
419C611DAD9691238E184C2D,
E48F74F26BFFDD6E1835A8D3 ); name = "juce_video"; sourceTree = "<group>"; };
419C611DAD9691238E184C2D ); name = "juce_video"; sourceTree = "<group>"; };
37312A9040D19F2291237B67 = { isa = PBXGroup; children = (
9A8FC9AB106A682C5F2F9BD1,
55E9A4E5F3C238927160FFEC,


+ 0
- 130
extras/static library/Builds/VisualStudio2008/juce.vcproj View File

@@ -304,16 +304,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_devices">
<Filter Name="audio_io">
@@ -580,16 +570,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_formats">
<Filter Name="format">
@@ -752,16 +732,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_audio_processors">
<Filter Name="processors">
@@ -912,16 +882,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.h"/>
<File RelativePath="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_core">
<Filter Name="text">
@@ -1744,16 +1704,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.h"/>
<File RelativePath="..\..\..\..\modules\juce_core\juce_core.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_cryptography">
<Filter Name="encryption">
@@ -1826,16 +1776,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.h"/>
<File RelativePath="..\..\..\..\modules\juce_cryptography\juce_cryptography.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_data_structures">
<Filter Name="values">
@@ -1911,16 +1851,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.h"/>
<File RelativePath="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_events">
<Filter Name="messages">
@@ -2115,16 +2045,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.h"/>
<File RelativePath="..\..\..\..\modules\juce_events\juce_events.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_graphics">
<Filter Name="colour">
@@ -2533,16 +2453,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.h"/>
<File RelativePath="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_basics">
<Filter Name="components">
@@ -3867,16 +3777,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_gui_extra">
<Filter Name="code_editor">
@@ -4106,16 +4006,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.h"/>
<File RelativePath="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_opengl">
<Filter Name="opengl">
@@ -4178,16 +4068,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_opengl\juce_opengl.h"/>
<File RelativePath="..\..\..\..\modules\juce_opengl\juce_opengl.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
<Filter Name="juce_video">
<Filter Name="playback">
@@ -4252,16 +4132,6 @@
</FileConfiguration>
</File>
<File RelativePath="..\..\..\..\modules\juce_video\juce_video.h"/>
<File RelativePath="..\..\..\..\modules\juce_video\juce_video.cpp">
<FileConfiguration Name="Debug|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
<FileConfiguration Name="Release|Win32"
ExcludedFromBuild="true">
<Tool Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
</Filter>
</Filter>
<Filter Name="Juce Library Code">


+ 0
- 39
extras/static library/Builds/VisualStudio2010/juce.vcxproj View File

@@ -170,9 +170,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\synthesisers\juce_Synthesiser.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\audio_io\juce_AudioDeviceManager.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -242,9 +239,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\native\juce_win32_WASAPI.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_formats\format\juce_AudioFormat.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -284,9 +278,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_formats\sampler\juce_Sampler.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\processors\juce_AudioProcessor.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -320,9 +311,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\scanning\juce_PluginListComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\text\juce_CharacterFunctions.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -524,9 +512,6 @@
<ClCompile Include="..\..\..\..\modules\juce_core\native\juce_win32_Threads.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -542,9 +527,6 @@
<ClCompile Include="..\..\..\..\modules\juce_cryptography\hashing\juce_SHA256.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\juce_cryptography.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_Value.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -560,9 +542,6 @@
<ClCompile Include="..\..\..\..\modules\juce_data_structures\app_properties\juce_PropertiesFile.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_events\messages\juce_ApplicationBase.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -608,9 +587,6 @@
<ClCompile Include="..\..\..\..\modules\juce_events\native\juce_win32_Messaging.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_events\juce_events.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_graphics\colour\juce_Colour.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -713,9 +689,6 @@
<ClCompile Include="..\..\..\..\modules\juce_graphics\native\juce_win32_Fonts.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\components\juce_Component.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -1061,9 +1034,6 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\native\juce_win32_Windowing.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\code_editor\juce_CodeDocument.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -1118,9 +1088,6 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\native\juce_win32_WebBrowserComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_opengl\opengl\juce_OpenGLComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -1133,9 +1100,6 @@
<ClCompile Include="..\..\..\..\modules\juce_opengl\native\juce_win32_OpenGLComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_opengl\juce_opengl.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_video\native\juce_android_CameraDevice.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@@ -1148,9 +1112,6 @@
<ClCompile Include="..\..\..\..\modules\juce_video\native\juce_win32_QuickTimeMovieComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_video\juce_video.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp"/>
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.cpp"/>
<ClCompile Include="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.cpp"/>


+ 0
- 39
extras/static library/Builds/VisualStudio2010/juce.vcxproj.filters View File

@@ -349,9 +349,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\juce_module_info">
<Filter>Juce Modules\juce_audio_basics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<Filter>Juce Modules\juce_audio_basics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\audio_io\juce_AudioDeviceManager.cpp">
<Filter>Juce Modules\juce_audio_devices\audio_io</Filter>
</ClCompile>
@@ -430,9 +427,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\juce_module_info">
<Filter>Juce Modules\juce_audio_devices</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_devices\juce_audio_devices.cpp">
<Filter>Juce Modules\juce_audio_devices</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_formats\format\juce_AudioFormat.cpp">
<Filter>Juce Modules\juce_audio_formats\format</Filter>
</ClCompile>
@@ -475,9 +469,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_formats\juce_module_info">
<Filter>Juce Modules\juce_audio_formats</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_formats\juce_audio_formats.cpp">
<Filter>Juce Modules\juce_audio_formats</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\processors\juce_AudioProcessor.cpp">
<Filter>Juce Modules\juce_audio_processors\processors</Filter>
</ClCompile>
@@ -517,9 +508,6 @@
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\juce_module_info">
<Filter>Juce Modules\juce_audio_processors</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_processors\juce_audio_processors.cpp">
<Filter>Juce Modules\juce_audio_processors</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\text\juce_CharacterFunctions.cpp">
<Filter>Juce Modules\juce_core\text</Filter>
</ClCompile>
@@ -739,9 +727,6 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_module_info">
<Filter>Juce Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<Filter>Juce Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>Juce Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@@ -760,9 +745,6 @@
<ClCompile Include="..\..\..\..\modules\juce_cryptography\juce_module_info">
<Filter>Juce Modules\juce_cryptography</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\juce_cryptography.cpp">
<Filter>Juce Modules\juce_cryptography</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_Value.cpp">
<Filter>Juce Modules\juce_data_structures\values</Filter>
</ClCompile>
@@ -781,9 +763,6 @@
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_module_info">
<Filter>Juce Modules\juce_data_structures</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
<Filter>Juce Modules\juce_data_structures</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_events\messages\juce_ApplicationBase.cpp">
<Filter>Juce Modules\juce_events\messages</Filter>
</ClCompile>
@@ -838,9 +817,6 @@
<ClCompile Include="..\..\..\..\modules\juce_events\juce_module_info">
<Filter>Juce Modules\juce_events</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_events\juce_events.cpp">
<Filter>Juce Modules\juce_events</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_graphics\colour\juce_Colour.cpp">
<Filter>Juce Modules\juce_graphics\colour</Filter>
</ClCompile>
@@ -952,9 +928,6 @@
<ClCompile Include="..\..\..\..\modules\juce_graphics\juce_module_info">
<Filter>Juce Modules\juce_graphics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_graphics\juce_graphics.cpp">
<Filter>Juce Modules\juce_graphics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\components\juce_Component.cpp">
<Filter>Juce Modules\juce_gui_basics\components</Filter>
</ClCompile>
@@ -1324,9 +1297,6 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\juce_module_info">
<Filter>Juce Modules\juce_gui_basics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\juce_gui_basics.cpp">
<Filter>Juce Modules\juce_gui_basics</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\code_editor\juce_CodeDocument.cpp">
<Filter>Juce Modules\juce_gui_extra\code_editor</Filter>
</ClCompile>
@@ -1399,9 +1369,6 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\juce_module_info">
<Filter>Juce Modules\juce_gui_extra</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_extra\juce_gui_extra.cpp">
<Filter>Juce Modules\juce_gui_extra</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_opengl\opengl\juce_OpenGLComponent.cpp">
<Filter>Juce Modules\juce_opengl\opengl</Filter>
</ClCompile>
@@ -1423,9 +1390,6 @@
<ClCompile Include="..\..\..\..\modules\juce_opengl\juce_module_info">
<Filter>Juce Modules\juce_opengl</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_opengl\juce_opengl.cpp">
<Filter>Juce Modules\juce_opengl</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_video\native\juce_android_CameraDevice.cpp">
<Filter>Juce Modules\juce_video\native</Filter>
</ClCompile>
@@ -1447,9 +1411,6 @@
<ClCompile Include="..\..\..\..\modules\juce_video\juce_module_info">
<Filter>Juce Modules\juce_video</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_video\juce_video.cpp">
<Filter>Juce Modules\juce_video</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_audio_basics\juce_audio_basics.cpp">
<Filter>Juce Library Code</Filter>
</ClCompile>


Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save