diff --git a/examples/BLOCKS/BlocksDrawing/Builds/LinuxMakefile/Makefile b/examples/BLOCKS/BlocksDrawing/Builds/LinuxMakefile/Makefile
index 68f417cab4..d98729626f 100644
--- a/examples/BLOCKS/BlocksDrawing/Builds/LinuxMakefile/Makefile
+++ b/examples/BLOCKS/BlocksDrawing/Builds/LinuxMakefile/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := BlocksDrawing
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := BlocksDrawing
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -79,7 +86,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -87,7 +94,7 @@ check-pkg-config:
clean:
@echo Cleaning BlocksDrawing
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping BlocksDrawing
@@ -96,71 +103,71 @@ strip:
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_devices.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_formats.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_processors.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_utils_c7eb679f.o: ../../JuceLibraryCode/juce_audio_utils.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_utils.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_blocks_basics_d4b203f5.o: ../../JuceLibraryCode/juce_blocks_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_blocks_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_opengl_cd70b4c2.o: ../../JuceLibraryCode/juce_opengl.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_opengl.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/BLOCKS/BlocksDrawing/Builds/VisualStudio2013/BlocksDrawing.vcxproj b/examples/BLOCKS/BlocksDrawing/Builds/VisualStudio2013/BlocksDrawing.vcxproj
index 5f672a2a99..6b57c77d64 100644
--- a/examples/BLOCKS/BlocksDrawing/Builds/VisualStudio2013/BlocksDrawing.vcxproj
+++ b/examples/BLOCKS/BlocksDrawing/Builds/VisualStudio2013/BlocksDrawing.vcxproj
@@ -39,8 +39,10 @@
<_ProjectFileVersion>10.0.30319.1
BlocksDrawing
+ .exe
true
BlocksDrawing
+ .exe
true
v120
diff --git a/examples/BLOCKS/BlocksDrawing/Builds/VisualStudio2015/BlocksDrawing.vcxproj b/examples/BLOCKS/BlocksDrawing/Builds/VisualStudio2015/BlocksDrawing.vcxproj
index dd6583b815..84581f8b4a 100644
--- a/examples/BLOCKS/BlocksDrawing/Builds/VisualStudio2015/BlocksDrawing.vcxproj
+++ b/examples/BLOCKS/BlocksDrawing/Builds/VisualStudio2015/BlocksDrawing.vcxproj
@@ -39,8 +39,10 @@
<_ProjectFileVersion>10.0.30319.1
BlocksDrawing
+ .exe
true
BlocksDrawing
+ .exe
true
v140
diff --git a/examples/BLOCKS/BlocksMonitor/Builds/LinuxMakefile/Makefile b/examples/BLOCKS/BlocksMonitor/Builds/LinuxMakefile/Makefile
index b7c97b79e1..6f410a0f56 100644
--- a/examples/BLOCKS/BlocksMonitor/Builds/LinuxMakefile/Makefile
+++ b/examples/BLOCKS/BlocksMonitor/Builds/LinuxMakefile/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := BlocksMonitor
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := BlocksMonitor
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -79,7 +86,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -87,7 +94,7 @@ check-pkg-config:
clean:
@echo Cleaning BlocksMonitor
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping BlocksMonitor
@@ -96,71 +103,71 @@ strip:
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_devices.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_formats.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_processors.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_utils_c7eb679f.o: ../../JuceLibraryCode/juce_audio_utils.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_utils.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_blocks_basics_d4b203f5.o: ../../JuceLibraryCode/juce_blocks_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_blocks_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_opengl_cd70b4c2.o: ../../JuceLibraryCode/juce_opengl.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_opengl.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/BLOCKS/BlocksMonitor/Builds/VisualStudio2013/BlocksMonitor.vcxproj b/examples/BLOCKS/BlocksMonitor/Builds/VisualStudio2013/BlocksMonitor.vcxproj
index 7cca2c40d8..cd2a2d5fe9 100644
--- a/examples/BLOCKS/BlocksMonitor/Builds/VisualStudio2013/BlocksMonitor.vcxproj
+++ b/examples/BLOCKS/BlocksMonitor/Builds/VisualStudio2013/BlocksMonitor.vcxproj
@@ -39,8 +39,10 @@
<_ProjectFileVersion>10.0.30319.1
BlocksMonitor
+ .exe
true
BlocksMonitor
+ .exe
true
v120
diff --git a/examples/BLOCKS/BlocksMonitor/Builds/VisualStudio2015/BlocksMonitor.vcxproj b/examples/BLOCKS/BlocksMonitor/Builds/VisualStudio2015/BlocksMonitor.vcxproj
index b06b1e3a12..12a5a281d1 100644
--- a/examples/BLOCKS/BlocksMonitor/Builds/VisualStudio2015/BlocksMonitor.vcxproj
+++ b/examples/BLOCKS/BlocksMonitor/Builds/VisualStudio2015/BlocksMonitor.vcxproj
@@ -39,8 +39,10 @@
<_ProjectFileVersion>10.0.30319.1
BlocksMonitor
+ .exe
true
BlocksMonitor
+ .exe
true
v140
diff --git a/examples/BLOCKS/BlocksMonitor/Builds/iOS/BlocksMonitor.xcodeproj/project.pbxproj b/examples/BLOCKS/BlocksMonitor/Builds/iOS/BlocksMonitor.xcodeproj/project.pbxproj
index c98fc59dca..77aeb63140 100644
--- a/examples/BLOCKS/BlocksMonitor/Builds/iOS/BlocksMonitor.xcodeproj/project.pbxproj
+++ b/examples/BLOCKS/BlocksMonitor/Builds/iOS/BlocksMonitor.xcodeproj/project.pbxproj
@@ -6,3547 +6,2714 @@
objectVersion = 46;
objects = {
-/* Begin PBXBuildFile section */
- 09AD8FE14AB25476E5B895F0 /* juce_audio_formats.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1559C4DCC579423B1A05CF89 /* juce_audio_formats.mm */; };
- 0D2A7C0067BE86F2CFDF180E /* juce_audio_processors.mm in Sources */ = {isa = PBXBuildFile; fileRef = C8FBA54671860CB3636D7A76 /* juce_audio_processors.mm */; };
- 1AED1945B3F869251C0AE961 /* juce_audio_basics.mm in Sources */ = {isa = PBXBuildFile; fileRef = C0CE2DBD3E07E03623F29618 /* juce_audio_basics.mm */; };
- 1D0987A356ABA1C3B4A785BD /* CoreMIDI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B5A57064DFB2BD47270A42E6 /* CoreMIDI.framework */; };
- 3601C134F7B5A1AB67E814D7 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6D2AA08C51674AC355C3C4B9 /* QuartzCore.framework */; };
- 3A0447CE74DA2F6F547581E2 /* juce_core.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7BAF11556203D550CE5E1560 /* juce_core.mm */; };
- 3FB72C8D23D5F6CB77C88C63 /* juce_opengl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5D456364DF7A1A1C1CBCA1F0 /* juce_opengl.mm */; };
- 732F2CFE7C7968D6638BC5D1 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3ABF91F41A610658F5B17523 /* Accelerate.framework */; };
- 76FF951CD8921AFDC24648FB /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 230ECC5997D02F79080DD55D /* AudioToolbox.framework */; };
- 7D8C07117F2E674F24031D72 /* juce_data_structures.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B6EFF388E31F7E480380796 /* juce_data_structures.mm */; };
- 86C00C6333D9F12FED7C221A /* juce_gui_extra.mm in Sources */ = {isa = PBXBuildFile; fileRef = EF02685FDE72675F4B750650 /* juce_gui_extra.mm */; };
- 8865BAB56BA7C344961B8C78 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 850772CD6A8E69EACB89CB02 /* Images.xcassets */; };
- 8DCEF084990118E5E8781096 /* juce_blocks_basics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 830F7516AA78496143854C16 /* juce_blocks_basics.cpp */; };
- 918E1AB94993954386975092 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71386FCE19C79DC74F1623FF /* Foundation.framework */; };
- 924BC7B8C552402D22C30959 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D4DA6EE18C4F580FC8A220B8 /* CoreAudio.framework */; };
- A458DA809D44DCCB921620D2 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8F72A06310DEB2A6E6A0DA18 /* CoreGraphics.framework */; };
- B4F2D8F80F24A3A8B90D2519 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C48524BD8330E2A4710D99FF /* CoreText.framework */; };
- B92223437105FB45C1973FF5 /* CoreAudioKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 88A4EE2311F2D063677B1822 /* CoreAudioKit.framework */; };
- C3771B5653D9760164E40FBB /* juce_audio_utils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 460CE4619594A71E9BCE42A3 /* juce_audio_utils.mm */; };
- C38A78F09BFE9B4378FF23C0 /* juce_gui_basics.mm in Sources */ = {isa = PBXBuildFile; fileRef = E6D09BB9A4D7592AA53FA63C /* juce_gui_basics.mm */; };
- C8DA641BA677BA04FD298869 /* juce_events.mm in Sources */ = {isa = PBXBuildFile; fileRef = 993004BB53091A0FBEB0E418 /* juce_events.mm */; };
- D2EAAF12976946EE8C45FB0B /* Main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE1AA6017CEF48540B7D5521 /* Main.cpp */; };
- D650FA605147B0260A8A94C7 /* juce_graphics.mm in Sources */ = {isa = PBXBuildFile; fileRef = 787FCE42F8EFF4F62B69363D /* juce_graphics.mm */; };
- E17C689ADF6944C5DBFB87FC /* juce_audio_devices.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5D4BEFEC0E129949C58876DD /* juce_audio_devices.mm */; };
- F0C1938D68C0994E2338379C /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BF4AF0A830706A80B2D1ADC5 /* OpenGLES.framework */; };
- F88FFF629E47F8CB257B7157 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0726638325182847094ED297 /* AVFoundation.framework */; };
- FBF94D0D4A73E69D79614536 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 849DD96FF7656F52F1972F38 /* UIKit.framework */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXFileReference section */
- 00558AF4AA37DD00B15B21A8 /* BlocksMonitor.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BlocksMonitor.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 0063493D90122A5E9F9000A5 /* inffast.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inffast.h; path = ../../../../../modules/juce_core/zip/zlib/inffast.h; sourceTree = SOURCE_ROOT; };
- 007566E450CC50CB63D1C11C /* juce_OpenGL_win32.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGL_win32.h; path = ../../../../../modules/juce_opengl/native/juce_OpenGL_win32.h; sourceTree = SOURCE_ROOT; };
- 00D6F7A03576F399711D5ABC /* juce_CodeEditorComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_CodeEditorComponent.cpp; path = ../../../../../modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp; sourceTree = SOURCE_ROOT; };
- 012B74A5BAF1F975F4A0C648 /* juce_LEDRow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LEDRow.h; path = ../../../../../modules/juce_blocks_basics/blocks/juce_LEDRow.h; sourceTree = SOURCE_ROOT; };
- 012EF1197FF04E76BD620071 /* juce_TemporaryFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TemporaryFile.h; path = ../../../../../modules/juce_core/files/juce_TemporaryFile.h; sourceTree = SOURCE_ROOT; };
- 0138E84BEADF91E11BF423E8 /* juce_CharPointer_ASCII.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CharPointer_ASCII.h; path = ../../../../../modules/juce_core/text/juce_CharPointer_ASCII.h; sourceTree = SOURCE_ROOT; };
- 01B2BABD6C54666254257CF9 /* juce_RelativeCoordinate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_RelativeCoordinate.h; path = ../../../../../modules/juce_gui_basics/positioning/juce_RelativeCoordinate.h; sourceTree = SOURCE_ROOT; };
- 01F94B27ADD4198E3CC15C0B /* juce_Process.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Process.h; path = ../../../../../modules/juce_core/threads/juce_Process.h; sourceTree = SOURCE_ROOT; };
- 02148EBC074DA2992CC96E88 /* juce_win32_SystemStats.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_SystemStats.cpp; path = ../../../../../modules/juce_core/native/juce_win32_SystemStats.cpp; sourceTree = SOURCE_ROOT; };
- 02633833709D15831BB6A4B8 /* juce_DrawableRectangle.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DrawableRectangle.cpp; path = ../../../../../modules/juce_gui_basics/drawables/juce_DrawableRectangle.cpp; sourceTree = SOURCE_ROOT; };
- 02B1467586FBA8F5C471CDCE /* juce_DrawableButton.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DrawableButton.cpp; path = ../../../../../modules/juce_gui_basics/buttons/juce_DrawableButton.cpp; sourceTree = SOURCE_ROOT; };
- 02CE3CA00AB6A0E0C6EA7C45 /* juce_DynamicObject.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DynamicObject.cpp; path = ../../../../../modules/juce_core/containers/juce_DynamicObject.cpp; sourceTree = SOURCE_ROOT; };
- 031D1BC4C76359BA17663E17 /* juce_ResizableWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ResizableWindow.h; path = ../../../../../modules/juce_gui_basics/windows/juce_ResizableWindow.h; sourceTree = SOURCE_ROOT; };
- 034E4F3996519B2624117798 /* juce_PhysicalTopologySource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PhysicalTopologySource.h; path = ../../../../../modules/juce_blocks_basics/topology/juce_PhysicalTopologySource.h; sourceTree = SOURCE_ROOT; };
- 036AB53DA1FCBDB74F591CC3 /* juce_SpinLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_SpinLock.h; path = ../../../../../modules/juce_core/threads/juce_SpinLock.h; sourceTree = SOURCE_ROOT; };
- 0377FDB5BDD3EC08C3F83FBD /* juce_Application.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Application.h; path = ../../../../../modules/juce_gui_basics/application/juce_Application.h; sourceTree = SOURCE_ROOT; };
- 03AF279CB4C8AA1B917C9E6E /* juce_StretchableObjectResizer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_StretchableObjectResizer.h; path = ../../../../../modules/juce_gui_basics/layout/juce_StretchableObjectResizer.h; sourceTree = SOURCE_ROOT; };
- 04185482CCC0316BF46B2DC7 /* window_flac.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = window_flac.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/window_flac.c; sourceTree = SOURCE_ROOT; };
- 044402CF33BF673FD4FE541E /* juce_TimeSliceThread.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TimeSliceThread.cpp; path = ../../../../../modules/juce_core/threads/juce_TimeSliceThread.cpp; sourceTree = SOURCE_ROOT; };
- 0460787CA1702E4A267536CD /* juce_AudioTransportSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioTransportSource.h; path = ../../../../../modules/juce_audio_devices/sources/juce_AudioTransportSource.h; sourceTree = SOURCE_ROOT; };
- 04874C168F8DB8B3661AE099 /* floor_all.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = floor_all.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/floor_all.h"; sourceTree = SOURCE_ROOT; };
- 0496A10293C6532DB2889643 /* ogg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ogg.h; path = ../../../../../modules/juce_audio_formats/codecs/oggvorbis/ogg.h; sourceTree = SOURCE_ROOT; };
- 04B6090AAC1B334B1F121BE0 /* juce_WavAudioFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_WavAudioFormat.cpp; path = ../../../../../modules/juce_audio_formats/codecs/juce_WavAudioFormat.cpp; sourceTree = SOURCE_ROOT; };
- 04C07E0DE8225D8E6F791D96 /* juce_GlyphArrangement.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_GlyphArrangement.cpp; path = ../../../../../modules/juce_graphics/fonts/juce_GlyphArrangement.cpp; sourceTree = SOURCE_ROOT; };
- 04D3FE9C1AC2AB770BFFE0EF /* juce_ButtonPropertyComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ButtonPropertyComponent.h; path = ../../../../../modules/juce_gui_basics/properties/juce_ButtonPropertyComponent.h; sourceTree = SOURCE_ROOT; };
- 04E0627AC999CE642D9009F5 /* juce_RelativeCoordinate.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_RelativeCoordinate.cpp; path = ../../../../../modules/juce_gui_basics/positioning/juce_RelativeCoordinate.cpp; sourceTree = SOURCE_ROOT; };
- 0589A9A25D0130ABC2840F23 /* juce_MPEZoneLayout.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MPEZoneLayout.h; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h; sourceTree = SOURCE_ROOT; };
- 05F4C8ED36A49DC106309AB3 /* all.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = all.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/all.h; sourceTree = SOURCE_ROOT; };
- 060D039A8903F16757040051 /* juce_DragAndDropTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DragAndDropTarget.h; path = ../../../../../modules/juce_gui_basics/mouse/juce_DragAndDropTarget.h; sourceTree = SOURCE_ROOT; };
- 06497F2BEB751B1840F27F62 /* juce_graphics.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_graphics.cpp; path = ../../../../../modules/juce_graphics/juce_graphics.cpp; sourceTree = SOURCE_ROOT; };
- 0697A131C2572A76CBC3A2D4 /* juce_WindowsMediaAudioFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_WindowsMediaAudioFormat.cpp; path = ../../../../../modules/juce_audio_formats/codecs/juce_WindowsMediaAudioFormat.cpp; sourceTree = SOURCE_ROOT; };
- 06B84EC6276C82A50AA87A78 /* juce_linux_FileChooser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_FileChooser.cpp; path = ../../../../../modules/juce_gui_basics/native/juce_linux_FileChooser.cpp; sourceTree = SOURCE_ROOT; };
- 06BB9F1EBA1172275FE5413D /* juce_ScopedWriteLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ScopedWriteLock.h; path = ../../../../../modules/juce_core/threads/juce_ScopedWriteLock.h; sourceTree = SOURCE_ROOT; };
- 06EC101285EA08EEDDB65F87 /* juce_TopologySource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TopologySource.h; path = ../../../../../modules/juce_blocks_basics/topology/juce_TopologySource.h; sourceTree = SOURCE_ROOT; };
- 0717F6008681C056FF92AE41 /* juce_OpenGLImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGLImage.h; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLImage.h; sourceTree = SOURCE_ROOT; };
- 0721D51684D1E4BEAF849793 /* jcinit.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcinit.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jcinit.c; sourceTree = SOURCE_ROOT; };
- 0726638325182847094ED297 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
- 078D0122C02815C45F14E220 /* juce_core.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_core.h; path = ../../../../../modules/juce_core/juce_core.h; sourceTree = SOURCE_ROOT; };
- 0798ABC473768B7DA59020BB /* juce_CoreAudioFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CoreAudioFormat.h; path = ../../../../../modules/juce_audio_formats/codecs/juce_CoreAudioFormat.h; sourceTree = SOURCE_ROOT; };
- 07E12DE4ACDC0607DB48477A /* juce_StatisticsAccumulator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_StatisticsAccumulator.h; path = ../../../../../modules/juce_core/maths/juce_StatisticsAccumulator.h; sourceTree = SOURCE_ROOT; };
- 084F07B2269A72130EDC450D /* misc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = misc.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/misc.h"; sourceTree = SOURCE_ROOT; };
- 08C26B85297999984DECB587 /* juce_File.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_File.cpp; path = ../../../../../modules/juce_core/files/juce_File.cpp; sourceTree = SOURCE_ROOT; };
- 093309B3FE42407C9C80EB2F /* juce_ListBox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ListBox.cpp; path = ../../../../../modules/juce_gui_basics/widgets/juce_ListBox.cpp; sourceTree = SOURCE_ROOT; };
- 096474E2642303EBBE13AD4B /* block.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = block.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/block.c"; sourceTree = SOURCE_ROOT; };
- 09BB66CFEE9A832CFCF2CCD2 /* juce_OwnedArray.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OwnedArray.h; path = ../../../../../modules/juce_core/containers/juce_OwnedArray.h; sourceTree = SOURCE_ROOT; };
- 0A268ACBB1D36A862A755465 /* juce_ScopedValueSetter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ScopedValueSetter.h; path = ../../../../../modules/juce_core/containers/juce_ScopedValueSetter.h; sourceTree = SOURCE_ROOT; };
- 0A7A9EA59E25C13CB9C14A7D /* juce_linux_CommonFile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_CommonFile.cpp; path = ../../../../../modules/juce_core/native/juce_linux_CommonFile.cpp; sourceTree = SOURCE_ROOT; };
- 0A986A71F3920D38E7D88F58 /* juce_MessageListener.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MessageListener.cpp; path = ../../../../../modules/juce_events/messages/juce_MessageListener.cpp; sourceTree = SOURCE_ROOT; };
- 0A9B3441E4C766603206171A /* jcmaster.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmaster.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jcmaster.c; sourceTree = SOURCE_ROOT; };
- 0AA6BBC6867F7EEA5C10722A /* juce_ModifierKeys.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ModifierKeys.h; path = ../../../../../modules/juce_gui_basics/keyboard/juce_ModifierKeys.h; sourceTree = SOURCE_ROOT; };
- 0B30452CA065C138233F99E7 /* juce_AudioParameterInt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioParameterInt.h; path = ../../../../../modules/juce_audio_processors/utilities/juce_AudioParameterInt.h; sourceTree = SOURCE_ROOT; };
- 0B3FBA4C1CFF6D65E98AEFE1 /* juce_OpenGLGraphicsContext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_OpenGLGraphicsContext.cpp; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLGraphicsContext.cpp; sourceTree = SOURCE_ROOT; };
- 0BB1CC68B7BB505B480D6174 /* JuceHeader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = SOURCE_ROOT; };
- 0BB1F767785BA329DAE91DBD /* juce_TabbedButtonBar.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TabbedButtonBar.h; path = ../../../../../modules/juce_gui_basics/layout/juce_TabbedButtonBar.h; sourceTree = SOURCE_ROOT; };
- 0C338FC94EF538E20E3BD3CB /* juce_ToggleButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ToggleButton.h; path = ../../../../../modules/juce_gui_basics/buttons/juce_ToggleButton.h; sourceTree = SOURCE_ROOT; };
- 0C59026808740853C23AE185 /* juce_UndoManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_UndoManager.h; path = ../../../../../modules/juce_data_structures/undomanager/juce_UndoManager.h; sourceTree = SOURCE_ROOT; };
- 0CC5574662C83E89FB9A4F6A /* inffixed.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inffixed.h; path = ../../../../../modules/juce_core/zip/zlib/inffixed.h; sourceTree = SOURCE_ROOT; };
- 0D5C830BBE28DBA8795B10DE /* juce_win32_DragAndDrop.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_DragAndDrop.cpp; path = ../../../../../modules/juce_gui_basics/native/juce_win32_DragAndDrop.cpp; sourceTree = SOURCE_ROOT; };
- 0D6E37748850EAE66F9CA70B /* juce_AudioAppComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioAppComponent.h; path = ../../../../../modules/juce_audio_utils/gui/juce_AudioAppComponent.h; sourceTree = SOURCE_ROOT; };
- 0DA6CC35E4AFC202C7D5298F /* juce_win32_Network.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_Network.cpp; path = ../../../../../modules/juce_core/native/juce_win32_Network.cpp; sourceTree = SOURCE_ROOT; };
- 0DA6F88B400D1BA27A9EF72B /* juce_PNGLoader.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PNGLoader.cpp; path = ../../../../../modules/juce_graphics/image_formats/juce_PNGLoader.cpp; sourceTree = SOURCE_ROOT; };
- 0DBCD27DE42DAF64EF974F1D /* juce_audio_processors.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_audio_processors.h; path = ../../../../../modules/juce_audio_processors/juce_audio_processors.h; sourceTree = SOURCE_ROOT; };
- 0DE80059716B40D2D9BBEFC9 /* juce_LookAndFeel_V2.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_LookAndFeel_V2.cpp; path = ../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V2.cpp; sourceTree = SOURCE_ROOT; };
- 0DEF8B7D54BF56ED8569D690 /* juce_ResizableEdgeComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ResizableEdgeComponent.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_ResizableEdgeComponent.cpp; sourceTree = SOURCE_ROOT; };
- 0E18DB38D8B88859C5D16D11 /* juce_AudioSampleBuffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioSampleBuffer.h; path = ../../../../../modules/juce_audio_basics/buffers/juce_AudioSampleBuffer.h; sourceTree = SOURCE_ROOT; };
- 0E204D9C847CEC5AE4391ED5 /* juce_Component.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Component.h; path = ../../../../../modules/juce_gui_basics/components/juce_Component.h; sourceTree = SOURCE_ROOT; };
- 0E4C2A01524E87834E2FB4B2 /* juce_TextDragAndDropTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TextDragAndDropTarget.h; path = ../../../../../modules/juce_gui_basics/mouse/juce_TextDragAndDropTarget.h; sourceTree = SOURCE_ROOT; };
- 0EC222E14CC7DADB74BE6E80 /* juce_ToggleButton.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ToggleButton.cpp; path = ../../../../../modules/juce_gui_basics/buttons/juce_ToggleButton.cpp; sourceTree = SOURCE_ROOT; };
- 0EE7D572D91B088532018993 /* juce_LowLevelGraphicsPostScriptRenderer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_LowLevelGraphicsPostScriptRenderer.cpp; path = ../../../../../modules/juce_graphics/contexts/juce_LowLevelGraphicsPostScriptRenderer.cpp; sourceTree = SOURCE_ROOT; };
- 0F40FDDE37B6B63FEA333F05 /* juce_Toolbar.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Toolbar.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_Toolbar.h; sourceTree = SOURCE_ROOT; };
- 0FBF55B74F1BFBAF8F670E2C /* jinclude.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jinclude.h; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jinclude.h; sourceTree = SOURCE_ROOT; };
- 104CA8597373932F80F25354 /* jcsample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcsample.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jcsample.c; sourceTree = SOURCE_ROOT; };
- 104FFDFF6CC57A7630FB7EAC /* juce_ScopedXLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ScopedXLock.h; path = ../../../../../modules/juce_events/native/juce_ScopedXLock.h; sourceTree = SOURCE_ROOT; };
- 106C8F431770C832B77BFFD9 /* juce_AudioThumbnailCache.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioThumbnailCache.cpp; path = ../../../../../modules/juce_audio_utils/gui/juce_AudioThumbnailCache.cpp; sourceTree = SOURCE_ROOT; };
- 1072ED1E4C961324C65D3305 /* juce_LookAndFeel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LookAndFeel.h; path = ../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.h; sourceTree = SOURCE_ROOT; };
- 108582FEE483C0EAE1FF767D /* juce_OpenGLShaderProgram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_OpenGLShaderProgram.cpp; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLShaderProgram.cpp; sourceTree = SOURCE_ROOT; };
- 10AAEECABC6BA65A3D2C4933 /* juce_ChangeListener.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ChangeListener.h; path = ../../../../../modules/juce_events/broadcasters/juce_ChangeListener.h; sourceTree = SOURCE_ROOT; };
- 11A1987734275CA22120DD49 /* juce_ScopedLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ScopedLock.h; path = ../../../../../modules/juce_core/threads/juce_ScopedLock.h; sourceTree = SOURCE_ROOT; };
- 11D3E71143E92D6D541C2E68 /* jchuff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jchuff.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jchuff.c; sourceTree = SOURCE_ROOT; };
- 122B74F324719CFD9425A135 /* vorbisenc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = vorbisenc.h; path = ../../../../../modules/juce_audio_formats/codecs/oggvorbis/vorbisenc.h; sourceTree = SOURCE_ROOT; };
- 12B073CF9C72D46B540CB899 /* juce_win32_Windowing.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_Windowing.cpp; path = ../../../../../modules/juce_gui_basics/native/juce_win32_Windowing.cpp; sourceTree = SOURCE_ROOT; };
- 12DF2FA1DB7312F834B0721E /* juce_AudioProcessorParameters.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioProcessorParameters.cpp; path = ../../../../../modules/juce_audio_processors/utilities/juce_AudioProcessorParameters.cpp; sourceTree = SOURCE_ROOT; };
- 1311A028E6551920CCB23899 /* juce_AiffAudioFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AiffAudioFormat.cpp; path = ../../../../../modules/juce_audio_formats/codecs/juce_AiffAudioFormat.cpp; sourceTree = SOURCE_ROOT; };
- 132DA30E80054A4CB1682F5C /* juce_GZIPCompressorOutputStream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_GZIPCompressorOutputStream.cpp; path = ../../../../../modules/juce_core/zip/juce_GZIPCompressorOutputStream.cpp; sourceTree = SOURCE_ROOT; };
- 134A859AAAD880C6CA78BA16 /* juce_StretchableLayoutResizerBar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_StretchableLayoutResizerBar.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_StretchableLayoutResizerBar.cpp; sourceTree = SOURCE_ROOT; };
- 135A4D01694084A7B641D217 /* window.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = window.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/window.c"; sourceTree = SOURCE_ROOT; };
- 137382482B888F9A1245CB52 /* juce_linux_Windowing.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_Windowing.cpp; path = ../../../../../modules/juce_gui_basics/native/juce_linux_Windowing.cpp; sourceTree = SOURCE_ROOT; };
- 13B537AE02190300E0DA5322 /* adler32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = adler32.c; path = ../../../../../modules/juce_core/zip/zlib/adler32.c; sourceTree = SOURCE_ROOT; };
- 13C55E3F2AA2B95275CB050B /* juce_AudioProcessorListener.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioProcessorListener.h; path = ../../../../../modules/juce_audio_processors/processors/juce_AudioProcessorListener.h; sourceTree = SOURCE_ROOT; };
- 13ECF6CF71CA92E4E1F845C6 /* juce_MouseInactivityDetector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MouseInactivityDetector.h; path = ../../../../../modules/juce_gui_basics/mouse/juce_MouseInactivityDetector.h; sourceTree = SOURCE_ROOT; };
- 13F0C5C5B5775E09051D19D0 /* juce_RectanglePlacement.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_RectanglePlacement.cpp; path = ../../../../../modules/juce_graphics/placement/juce_RectanglePlacement.cpp; sourceTree = SOURCE_ROOT; };
- 148AC48B82DFEC98FECBF5AC /* juce_InterprocessConnectionServer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_InterprocessConnectionServer.h; path = ../../../../../modules/juce_events/interprocess/juce_InterprocessConnectionServer.h; sourceTree = SOURCE_ROOT; };
- 1520C6D07978AEAC58F684F8 /* lpc_flac.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = lpc_flac.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c; sourceTree = SOURCE_ROOT; };
- 15494D9F18EC8265BBB4BA44 /* juce_core.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_core.cpp; path = ../../../../../modules/juce_core/juce_core.cpp; sourceTree = SOURCE_ROOT; };
- 1559C4DCC579423B1A05CF89 /* juce_audio_formats.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_audio_formats.mm; path = ../../JuceLibraryCode/juce_audio_formats.mm; sourceTree = SOURCE_ROOT; };
- 15BEE6B9299B0E97F16C07D8 /* juce_MouseEvent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MouseEvent.cpp; path = ../../../../../modules/juce_gui_basics/mouse/juce_MouseEvent.cpp; sourceTree = SOURCE_ROOT; };
- 16118DB20238C2B904A3FDA7 /* juce_BorderSize.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BorderSize.h; path = ../../../../../modules/juce_graphics/geometry/juce_BorderSize.h; sourceTree = SOURCE_ROOT; };
- 1655D2F156B917E893A29FEA /* juce_NamedValueSet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_NamedValueSet.h; path = ../../../../../modules/juce_core/containers/juce_NamedValueSet.h; sourceTree = SOURCE_ROOT; };
- 1673C95BCCE19C8F4664703E /* juce_String.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_String.cpp; path = ../../../../../modules/juce_core/text/juce_String.cpp; sourceTree = SOURCE_ROOT; };
- 16DD43E629D9E32F1FE86143 /* juce_audio_processors.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_audio_processors.cpp; path = ../../../../../modules/juce_audio_processors/juce_audio_processors.cpp; sourceTree = SOURCE_ROOT; };
- 16E132B11E1648815CEFF729 /* juce_MenuBarModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MenuBarModel.h; path = ../../../../../modules/juce_gui_basics/menus/juce_MenuBarModel.h; sourceTree = SOURCE_ROOT; };
- 170F6D425FF66C0388540225 /* juce_WebInputStream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_WebInputStream.h; path = ../../../../../modules/juce_core/network/juce_WebInputStream.h; sourceTree = SOURCE_ROOT; };
- 1719057E5D9514D7DD88DEB9 /* juce_AudioChannelSet.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioChannelSet.cpp; path = ../../../../../modules/juce_audio_basics/buffers/juce_AudioChannelSet.cpp; sourceTree = SOURCE_ROOT; };
- 1737459117017D5BBEE069D2 /* juce_AudioAppComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioAppComponent.cpp; path = ../../../../../modules/juce_audio_utils/gui/juce_AudioAppComponent.cpp; sourceTree = SOURCE_ROOT; };
- 1758DCBCE1766DA3968BEC1F /* juce_curl_Network.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_curl_Network.cpp; path = ../../../../../modules/juce_core/native/juce_curl_Network.cpp; sourceTree = SOURCE_ROOT; };
- 177856ECCAE5F779DB31EBCF /* juce_mac_Strings.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_Strings.mm; path = ../../../../../modules/juce_core/native/juce_mac_Strings.mm; sourceTree = SOURCE_ROOT; };
- 17B2AAE117564DA4933B70AA /* juce_PathStrokeType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PathStrokeType.h; path = ../../../../../modules/juce_graphics/geometry/juce_PathStrokeType.h; sourceTree = SOURCE_ROOT; };
- 18319D005DF6998885AC677F /* setup_16.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = setup_16.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_16.h"; sourceTree = SOURCE_ROOT; };
- 184CE8BA435703F28975DC5D /* juce_NotificationType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_NotificationType.h; path = ../../../../../modules/juce_events/messages/juce_NotificationType.h; sourceTree = SOURCE_ROOT; };
- 184F543273935A63366BCA51 /* juce_AudioDeviceSelectorComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioDeviceSelectorComponent.cpp; path = ../../../../../modules/juce_audio_utils/gui/juce_AudioDeviceSelectorComponent.cpp; sourceTree = SOURCE_ROOT; };
- 18828011791118DF6440C6A4 /* juce_SharedResourcePointer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_SharedResourcePointer.h; path = ../../../../../modules/juce_core/memory/juce_SharedResourcePointer.h; sourceTree = SOURCE_ROOT; };
- 1896F7A05A4372B4247C34A4 /* juce_File.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_File.h; path = ../../../../../modules/juce_core/files/juce_File.h; sourceTree = SOURCE_ROOT; };
- 190BFEB9E9811F1D73306F79 /* juce_NamedPipe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_NamedPipe.h; path = ../../../../../modules/juce_core/network/juce_NamedPipe.h; sourceTree = SOURCE_ROOT; };
- 193954F9CF9005014377F9FF /* juce_events.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_events.cpp; path = ../../../../../modules/juce_events/juce_events.cpp; sourceTree = SOURCE_ROOT; };
- 193EE3A9C056FB7BFD83667C /* juce_blocks_basics.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_blocks_basics.h; path = ../../../../../modules/juce_blocks_basics/juce_blocks_basics.h; sourceTree = SOURCE_ROOT; };
- 19482F63E164192F9C0CC655 /* juce_Identifier.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Identifier.h; path = ../../../../../modules/juce_core/text/juce_Identifier.h; sourceTree = SOURCE_ROOT; };
- 197D3D704A44AA39F3F92F1F /* juce_SystemStats.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_SystemStats.cpp; path = ../../../../../modules/juce_core/system/juce_SystemStats.cpp; sourceTree = SOURCE_ROOT; };
- 199FB84B17D7610C48A08C12 /* juce_TableListBox.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TableListBox.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_TableListBox.h; sourceTree = SOURCE_ROOT; };
- 19BF72ABEB3B9D8D776744EE /* juce_LookAndFeel_V3.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LookAndFeel_V3.h; path = ../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V3.h; sourceTree = SOURCE_ROOT; };
- 19CDD6C2AE371BE31174D5F1 /* juce_KeyListener.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_KeyListener.cpp; path = ../../../../../modules/juce_gui_basics/keyboard/juce_KeyListener.cpp; sourceTree = SOURCE_ROOT; };
- 1A54156E7F0715AA90652992 /* juce_FileChooserDialogBox.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileChooserDialogBox.h; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FileChooserDialogBox.h; sourceTree = SOURCE_ROOT; };
- 1A58C7E03F2C3D22E356E817 /* juce_DirectoryIterator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DirectoryIterator.cpp; path = ../../../../../modules/juce_core/files/juce_DirectoryIterator.cpp; sourceTree = SOURCE_ROOT; };
- 1A9FEB70EB440AE3B3BE52D2 /* registry.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = registry.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/registry.h"; sourceTree = SOURCE_ROOT; };
- 1B3FB995CF83C1B588F8F9BF /* juce_WindowsRegistry.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_WindowsRegistry.h; path = ../../../../../modules/juce_core/misc/juce_WindowsRegistry.h; sourceTree = SOURCE_ROOT; };
- 1B6684D65B3AF31CAB4D7B8E /* jdmainct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmainct.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdmainct.c; sourceTree = SOURCE_ROOT; };
- 1BB1E8928FBEB3F72621F2F6 /* jcprepct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcprepct.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jcprepct.c; sourceTree = SOURCE_ROOT; };
- 1BD83CC88D6EA454CE3CC746 /* juce_linux_BluetoothMidiDevicePairingDialogue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_BluetoothMidiDevicePairingDialogue.cpp; path = ../../../../../modules/juce_audio_utils/native/juce_linux_BluetoothMidiDevicePairingDialogue.cpp; sourceTree = SOURCE_ROOT; };
- 1BE918CC1F7F26F93A4B8EC1 /* juce_LocalisedStrings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LocalisedStrings.h; path = ../../../../../modules/juce_core/text/juce_LocalisedStrings.h; sourceTree = SOURCE_ROOT; };
- 1C024E345C38DCAB8D0BE6F9 /* fixed.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = fixed.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/fixed.c; sourceTree = SOURCE_ROOT; };
- 1C14BD4230F9672D9AE44BFF /* juce_MultiDocumentPanel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MultiDocumentPanel.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_MultiDocumentPanel.cpp; sourceTree = SOURCE_ROOT; };
- 1CC0B58D7AEA47DADB041C96 /* juce_CachedValue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_CachedValue.cpp; path = ../../../../../modules/juce_data_structures/values/juce_CachedValue.cpp; sourceTree = SOURCE_ROOT; };
- 1CDA4FD4B1B51222AEE6DCA2 /* juce_MarkerList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MarkerList.h; path = ../../../../../modules/juce_gui_basics/positioning/juce_MarkerList.h; sourceTree = SOURCE_ROOT; };
- 1CF24016C5884A75DE865988 /* juce_DrawablePath.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DrawablePath.h; path = ../../../../../modules/juce_gui_basics/drawables/juce_DrawablePath.h; sourceTree = SOURCE_ROOT; };
- 1D0E04EA23573F4C5199DFF3 /* juce_DropShadower.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DropShadower.h; path = ../../../../../modules/juce_gui_basics/misc/juce_DropShadower.h; sourceTree = SOURCE_ROOT; };
- 1D9A7BEB060662FBA38DF385 /* juce_AudioDeviceManager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioDeviceManager.cpp; path = ../../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.cpp; sourceTree = SOURCE_ROOT; };
- 1DC75AA5AD6118F35371BDB0 /* juce_android_Network.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_Network.cpp; path = ../../../../../modules/juce_core/native/juce_android_Network.cpp; sourceTree = SOURCE_ROOT; };
- 1DCD9527835FD4771E959818 /* juce_SystemClipboard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_SystemClipboard.h; path = ../../../../../modules/juce_gui_basics/keyboard/juce_SystemClipboard.h; sourceTree = SOURCE_ROOT; };
- 1DFD35C6D473DCAEE12C18DF /* juce_FileSearchPath.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FileSearchPath.cpp; path = ../../../../../modules/juce_core/files/juce_FileSearchPath.cpp; sourceTree = SOURCE_ROOT; };
- 1E5474F79E3971C77F173C21 /* juce_SystemStats.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_SystemStats.h; path = ../../../../../modules/juce_core/system/juce_SystemStats.h; sourceTree = SOURCE_ROOT; };
- 1E614A63C2C2AA7B858DF4C1 /* juce_MPEMessages.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MPEMessages.cpp; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPEMessages.cpp; sourceTree = SOURCE_ROOT; };
- 1E78B98A70BD5E14381302DC /* juce_AudioIODevice.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioIODevice.cpp; path = ../../../../../modules/juce_audio_devices/audio_io/juce_AudioIODevice.cpp; sourceTree = SOURCE_ROOT; };
- 1EA1A059799CA880FA6E2ADB /* juce_AudioParameterChoice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioParameterChoice.h; path = ../../../../../modules/juce_audio_processors/utilities/juce_AudioParameterChoice.h; sourceTree = SOURCE_ROOT; };
- 1EAF33874D8D4F13676C412C /* juce_BitmapLEDProgram.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BitmapLEDProgram.h; path = ../../../../../modules/juce_blocks_basics/visualisers/juce_BitmapLEDProgram.h; sourceTree = SOURCE_ROOT; };
- 1ED66F4F7C1B6FA4369A8E95 /* res0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = res0.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/res0.c"; sourceTree = SOURCE_ROOT; };
- 1F58F7262450884A7E6BEF4F /* juce_graphics.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_graphics.h; path = ../../../../../modules/juce_graphics/juce_graphics.h; sourceTree = SOURCE_ROOT; };
- 1FEB7C2AD69F03FD21C04CD8 /* juce_MenuBarComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MenuBarComponent.h; path = ../../../../../modules/juce_gui_basics/menus/juce_MenuBarComponent.h; sourceTree = SOURCE_ROOT; };
- 1FF09BE12A8EE7359DEB6A11 /* juce_ActionBroadcaster.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ActionBroadcaster.cpp; path = ../../../../../modules/juce_events/broadcasters/juce_ActionBroadcaster.cpp; sourceTree = SOURCE_ROOT; };
- 200E7992C80ECC1AE74C9468 /* juce_MemoryMappedAudioFormatReader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MemoryMappedAudioFormatReader.h; path = ../../../../../modules/juce_audio_formats/format/juce_MemoryMappedAudioFormatReader.h; sourceTree = SOURCE_ROOT; };
- 20352597FF0FD0A4B487CCFC /* juce_gui_basics.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_gui_basics.cpp; path = ../../../../../modules/juce_gui_basics/juce_gui_basics.cpp; sourceTree = SOURCE_ROOT; };
- 20AFC08D3825F8F1EA4C4352 /* pngget.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngget.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngget.c; sourceTree = SOURCE_ROOT; };
- 20E50B7CC91B87CFA1CC8C17 /* alloc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/alloc.h; sourceTree = SOURCE_ROOT; };
- 2116BBCD560828B835577E82 /* jconfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jconfig.h; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jconfig.h; sourceTree = SOURCE_ROOT; };
- 21479ABF74938D58A8859E57 /* juce_AffineTransform.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AffineTransform.cpp; path = ../../../../../modules/juce_graphics/geometry/juce_AffineTransform.cpp; sourceTree = SOURCE_ROOT; };
- 215273F35854D93D4684F590 /* juce_ImageConvolutionKernel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ImageConvolutionKernel.cpp; path = ../../../../../modules/juce_graphics/images/juce_ImageConvolutionKernel.cpp; sourceTree = SOURCE_ROOT; };
- 215A5B82922A9A95F68FE7BA /* juce_DrawableButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DrawableButton.h; path = ../../../../../modules/juce_gui_basics/buttons/juce_DrawableButton.h; sourceTree = SOURCE_ROOT; };
- 21E9D0E35F84BCF5897B262C /* juce_ResamplingAudioSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ResamplingAudioSource.h; path = ../../../../../modules/juce_audio_basics/sources/juce_ResamplingAudioSource.h; sourceTree = SOURCE_ROOT; };
- 222A183111DEA8A63599510A /* BlockComponents.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = BlockComponents.h; path = ../../Source/BlockComponents.h; sourceTree = SOURCE_ROOT; };
- 226BD1CCCAD60DBD0167568E /* juce_MenuBarModel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MenuBarModel.cpp; path = ../../../../../modules/juce_gui_basics/menus/juce_MenuBarModel.cpp; sourceTree = SOURCE_ROOT; };
- 2282324E575678E8837470EF /* jccoefct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jccoefct.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jccoefct.c; sourceTree = SOURCE_ROOT; };
- 22866A3227D44A6B5CF577F6 /* jfdctflt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctflt.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jfdctflt.c; sourceTree = SOURCE_ROOT; };
- 228C128F3835E988917C908E /* juce_posix_SharedCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_posix_SharedCode.h; path = ../../../../../modules/juce_core/native/juce_posix_SharedCode.h; sourceTree = SOURCE_ROOT; };
- 228CF6C968876BDA6ABC9242 /* juce_MPENote.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MPENote.h; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPENote.h; sourceTree = SOURCE_ROOT; };
- 22A1487B587036337AC48F11 /* juce_MidiOutput.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MidiOutput.h; path = ../../../../../modules/juce_audio_devices/midi_io/juce_MidiOutput.h; sourceTree = SOURCE_ROOT; };
- 22A423BB04E0A3F1C2C3CA63 /* pngread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngread.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngread.c; sourceTree = SOURCE_ROOT; };
- 22B33EA86FAB7366A914C948 /* bitrate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = bitrate.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/bitrate.h"; sourceTree = SOURCE_ROOT; };
- 22B991F37C9D185AD22048F9 /* juce_String.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_String.h; path = ../../../../../modules/juce_core/text/juce_String.h; sourceTree = SOURCE_ROOT; };
- 22ED7F3091B15731766D82C9 /* juce_MPEInstrument.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MPEInstrument.h; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPEInstrument.h; sourceTree = SOURCE_ROOT; };
- 23063052109C21CA6277AA4F /* floor_books.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = floor_books.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/books/floor/floor_books.h"; sourceTree = SOURCE_ROOT; };
- 230ECC5997D02F79080DD55D /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
- 2317A757B8847CE1AE30010F /* juce_ApplicationBase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ApplicationBase.cpp; path = ../../../../../modules/juce_events/messages/juce_ApplicationBase.cpp; sourceTree = SOURCE_ROOT; };
- 23543D16B95632B1C14B943E /* juce_LookAndFeel_V1.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LookAndFeel_V1.h; path = ../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V1.h; sourceTree = SOURCE_ROOT; };
- 23C4B5A7859ACA959F99FDE9 /* juce_MP3AudioFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MP3AudioFormat.h; path = ../../../../../modules/juce_audio_formats/codecs/juce_MP3AudioFormat.h; sourceTree = SOURCE_ROOT; };
- 23C9352D9EEFA048506947EE /* juce_DrawableImage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DrawableImage.cpp; path = ../../../../../modules/juce_gui_basics/drawables/juce_DrawableImage.cpp; sourceTree = SOURCE_ROOT; };
- 23DAF49B90FB33BB97015CCA /* juce_OpenGLFrameBuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_OpenGLFrameBuffer.cpp; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLFrameBuffer.cpp; sourceTree = SOURCE_ROOT; };
- 23E0BB729907E348A33E996F /* juce_Block.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Block.h; path = ../../../../../modules/juce_blocks_basics/blocks/juce_Block.h; sourceTree = SOURCE_ROOT; };
- 23E572AAE21BB03B019F07EA /* jquant1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jquant1.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jquant1.c; sourceTree = SOURCE_ROOT; };
- 242A96C7860436DE347CD432 /* juce_VST3PluginFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_VST3PluginFormat.h; path = ../../../../../modules/juce_audio_processors/format_types/juce_VST3PluginFormat.h; sourceTree = SOURCE_ROOT; };
- 242F542B9738479E885167E6 /* juce_AudioProcessorGraph.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioProcessorGraph.cpp; path = ../../../../../modules/juce_audio_processors/processors/juce_AudioProcessorGraph.cpp; sourceTree = SOURCE_ROOT; };
- 243F5C11D97748ED03B760C6 /* README.txt */ = {isa = PBXFileReference; lastKnownFileType = text.txt; name = README.txt; path = ../../../../../modules/juce_blocks_basics/README.txt; sourceTree = SOURCE_ROOT; };
- 2440CDB6EEC69DDB25DABA04 /* juce_CharacterFunctions.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_CharacterFunctions.cpp; path = ../../../../../modules/juce_core/text/juce_CharacterFunctions.cpp; sourceTree = SOURCE_ROOT; };
- 2524470C265DC4C41D0F12FD /* pngwutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwutil.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngwutil.c; sourceTree = SOURCE_ROOT; };
- 255D982E8E88EC37AF5D58CB /* juce_SortedSet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_SortedSet.h; path = ../../../../../modules/juce_core/containers/juce_SortedSet.h; sourceTree = SOURCE_ROOT; };
- 25616CCE492D37070C5FCBFF /* juce_TextEditor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TextEditor.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_TextEditor.h; sourceTree = SOURCE_ROOT; };
- 259877493D9B71079446749E /* juce_android_Files.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_Files.cpp; path = ../../../../../modules/juce_core/native/juce_android_Files.cpp; sourceTree = SOURCE_ROOT; };
- 259D44F4C84C586F476BBA0C /* juce_Variant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Variant.h; path = ../../../../../modules/juce_core/containers/juce_Variant.h; sourceTree = SOURCE_ROOT; };
- 26083ECFA60A676C6365DA3D /* juce_CodeTokeniser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CodeTokeniser.h; path = ../../../../../modules/juce_gui_extra/code_editor/juce_CodeTokeniser.h; sourceTree = SOURCE_ROOT; };
- 263C2C63172A2793CE67D3D4 /* juce_BooleanPropertyComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BooleanPropertyComponent.h; path = ../../../../../modules/juce_gui_basics/properties/juce_BooleanPropertyComponent.h; sourceTree = SOURCE_ROOT; };
- 269A9F80899756D1F87AA82D /* juce_ImageFileFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ImageFileFormat.h; path = ../../../../../modules/juce_graphics/images/juce_ImageFileFormat.h; sourceTree = SOURCE_ROOT; };
- 26B9B07C8F5E7214A9D5EA8B /* juce_BluetoothMidiDevicePairingDialogue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BluetoothMidiDevicePairingDialogue.h; path = ../../../../../modules/juce_audio_utils/gui/juce_BluetoothMidiDevicePairingDialogue.h; sourceTree = SOURCE_ROOT; };
- 26D37FF39DEC1AAD1AC03A53 /* juce_ApplicationCommandID.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ApplicationCommandID.h; path = ../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandID.h; sourceTree = SOURCE_ROOT; };
- 26FC7D9E7E5BB2D4535FB0CE /* juce_MPENote.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MPENote.cpp; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPENote.cpp; sourceTree = SOURCE_ROOT; };
- 271866450733C15873B1E46D /* jcmainct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmainct.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jcmainct.c; sourceTree = SOURCE_ROOT; };
- 272EA32D51A8C8AD73A45D9D /* juce_DrawableImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DrawableImage.h; path = ../../../../../modules/juce_gui_basics/drawables/juce_DrawableImage.h; sourceTree = SOURCE_ROOT; };
- 2736B4003A6B1E2AFB5B0F60 /* juce_ImageButton.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ImageButton.cpp; path = ../../../../../modules/juce_gui_basics/buttons/juce_ImageButton.cpp; sourceTree = SOURCE_ROOT; };
- 27609A10FE09083D4C31AC75 /* juce_KeyMappingEditorComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_KeyMappingEditorComponent.h; path = ../../../../../modules/juce_gui_extra/misc/juce_KeyMappingEditorComponent.h; sourceTree = SOURCE_ROOT; };
- 276FEE4DBCB6806D06E959BB /* juce_DropShadower.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DropShadower.cpp; path = ../../../../../modules/juce_gui_basics/misc/juce_DropShadower.cpp; sourceTree = SOURCE_ROOT; };
- 27957B112247D501D6B6FB8C /* jdsample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdsample.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdsample.c; sourceTree = SOURCE_ROOT; };
- 2799B7075032596236A1A6C4 /* juce_AiffAudioFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AiffAudioFormat.h; path = ../../../../../modules/juce_audio_formats/codecs/juce_AiffAudioFormat.h; sourceTree = SOURCE_ROOT; };
- 27DF9F9857FE41EC6A51B601 /* juce_AudioProcessorValueTreeState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioProcessorValueTreeState.h; path = ../../../../../modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.h; sourceTree = SOURCE_ROOT; };
- 281F71278F1CE0C02ECB2EC4 /* juce_VST3Common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_VST3Common.h; path = ../../../../../modules/juce_audio_processors/format_types/juce_VST3Common.h; sourceTree = SOURCE_ROOT; };
- 287298405BC363E9C2492200 /* res_books_stereo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = res_books_stereo.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/books/coupled/res_books_stereo.h"; sourceTree = SOURCE_ROOT; };
- 289FA55DC2B007BF300AA35E /* juce_OpenGLTexture.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_OpenGLTexture.cpp; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLTexture.cpp; sourceTree = SOURCE_ROOT; };
- 28DC9D131B0DAEB78CEA016A /* juce_PropertyPanel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PropertyPanel.h; path = ../../../../../modules/juce_gui_basics/properties/juce_PropertyPanel.h; sourceTree = SOURCE_ROOT; };
- 28EA90843E65FB432CDF2329 /* setup_32.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = setup_32.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_32.h"; sourceTree = SOURCE_ROOT; };
- 2926E85AC4A3BDBC357DADA8 /* juce_ResizableCornerComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ResizableCornerComponent.h; path = ../../../../../modules/juce_gui_basics/layout/juce_ResizableCornerComponent.h; sourceTree = SOURCE_ROOT; };
- 296E767F3EC21EEDF71AACD9 /* juce_LeakedObjectDetector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LeakedObjectDetector.h; path = ../../../../../modules/juce_core/memory/juce_LeakedObjectDetector.h; sourceTree = SOURCE_ROOT; };
- 2972426DAB18DB5F584BC1E9 /* juce_linux_SystemStats.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_SystemStats.cpp; path = ../../../../../modules/juce_core/native/juce_linux_SystemStats.cpp; sourceTree = SOURCE_ROOT; };
- 2973E5E96EE07B12B06E4901 /* juce_mac_MouseCursor.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_MouseCursor.mm; path = ../../../../../modules/juce_gui_basics/native/juce_mac_MouseCursor.mm; sourceTree = SOURCE_ROOT; };
- 2A1D123CDD681C79A4830CD9 /* juce_FlexBox.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FlexBox.h; path = ../../../../../modules/juce_gui_basics/layout/juce_FlexBox.h; sourceTree = SOURCE_ROOT; };
- 2A28AB08780C76D52CA8D732 /* juce_ApplicationCommandInfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ApplicationCommandInfo.cpp; path = ../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandInfo.cpp; sourceTree = SOURCE_ROOT; };
- 2A8F3A1F1C343D6EB025FDD1 /* juce_AudioDeviceSelectorComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioDeviceSelectorComponent.h; path = ../../../../../modules/juce_audio_utils/gui/juce_AudioDeviceSelectorComponent.h; sourceTree = SOURCE_ROOT; };
- 2AAF0E53F74A1B4AD7B0684A /* juce_Variant.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Variant.cpp; path = ../../../../../modules/juce_core/containers/juce_Variant.cpp; sourceTree = SOURCE_ROOT; };
- 2AC4F829CD8C78F19827A695 /* juce_MessageListener.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MessageListener.h; path = ../../../../../modules/juce_events/messages/juce_MessageListener.h; sourceTree = SOURCE_ROOT; };
- 2ACDC9BC9FB57E955B8D2811 /* juce_Reverb.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Reverb.h; path = ../../../../../modules/juce_audio_basics/effects/juce_Reverb.h; sourceTree = SOURCE_ROOT; };
- 2B64FDC069A6D6C03128F3C3 /* juce_RectanglePlacement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_RectanglePlacement.h; path = ../../../../../modules/juce_graphics/placement/juce_RectanglePlacement.h; sourceTree = SOURCE_ROOT; };
- 2B6844B8253422926CF12456 /* juce_Sampler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Sampler.h; path = ../../../../../modules/juce_audio_formats/sampler/juce_Sampler.h; sourceTree = SOURCE_ROOT; };
- 2B83CA343CAE71BE4F5A8F8E /* juce_AudioParameterFloat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioParameterFloat.h; path = ../../../../../modules/juce_audio_processors/utilities/juce_AudioParameterFloat.h; sourceTree = SOURCE_ROOT; };
- 2BAB647B7DA103003A8A11AE /* juce_Quaternion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Quaternion.h; path = ../../../../../modules/juce_opengl/geometry/juce_Quaternion.h; sourceTree = SOURCE_ROOT; };
- 2BC6A9CE84273433047F4C50 /* juce_OpenGL_linux.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGL_linux.h; path = ../../../../../modules/juce_opengl/native/juce_OpenGL_linux.h; sourceTree = SOURCE_ROOT; };
- 2BF8C1C0452AA518578E2262 /* juce_AudioPlayHead.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioPlayHead.h; path = ../../../../../modules/juce_audio_processors/processors/juce_AudioPlayHead.h; sourceTree = SOURCE_ROOT; };
- 2C126377CD039D5D20DF0090 /* juce_RelativePoint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_RelativePoint.cpp; path = ../../../../../modules/juce_gui_basics/positioning/juce_RelativePoint.cpp; sourceTree = SOURCE_ROOT; };
- 2C7B8BA92ACDE7200C096AD9 /* juce_ApplicationCommandManager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ApplicationCommandManager.cpp; path = ../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandManager.cpp; sourceTree = SOURCE_ROOT; };
- 2D0232CD6B55510B10D2D04D /* juce_Block.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Block.cpp; path = ../../../../../modules/juce_blocks_basics/blocks/juce_Block.cpp; sourceTree = SOURCE_ROOT; };
- 2D2C6DAA3B50438E63266771 /* juce_Point.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Point.h; path = ../../../../../modules/juce_graphics/geometry/juce_Point.h; sourceTree = SOURCE_ROOT; };
- 2D40263014314146060C284D /* juce_VSTCommon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_VSTCommon.h; path = ../../../../../modules/juce_audio_processors/format_types/juce_VSTCommon.h; sourceTree = SOURCE_ROOT; };
- 2D583C31EE6E9A5D8ACD988F /* jversion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jversion.h; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jversion.h; sourceTree = SOURCE_ROOT; };
- 2E3883BEB89636D207BB88B5 /* juce_ArrayAllocationBase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ArrayAllocationBase.h; path = ../../../../../modules/juce_core/containers/juce_ArrayAllocationBase.h; sourceTree = SOURCE_ROOT; };
- 2E667E8E327AB96B7E56BEE3 /* psych_11.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = psych_11.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/psych_11.h"; sourceTree = SOURCE_ROOT; };
- 2E735512175F5ADD2853D83D /* juce_FileOutputStream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FileOutputStream.cpp; path = ../../../../../modules/juce_core/files/juce_FileOutputStream.cpp; sourceTree = SOURCE_ROOT; };
- 2E7B68565DA034DDCF34573C /* juce_CallOutBox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_CallOutBox.cpp; path = ../../../../../modules/juce_gui_basics/windows/juce_CallOutBox.cpp; sourceTree = SOURCE_ROOT; };
- 2EA0BA49F0FEBB8B4BBEE3E0 /* juce_Toolbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Toolbar.cpp; path = ../../../../../modules/juce_gui_basics/widgets/juce_Toolbar.cpp; sourceTree = SOURCE_ROOT; };
- 2EA29D7871008E52A033BE16 /* config_types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = config_types.h; path = ../../../../../modules/juce_audio_formats/codecs/oggvorbis/config_types.h; sourceTree = SOURCE_ROOT; };
- 2ED4E37632885A949CCB9BE9 /* juce_ReadWriteLock.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ReadWriteLock.cpp; path = ../../../../../modules/juce_core/threads/juce_ReadWriteLock.cpp; sourceTree = SOURCE_ROOT; };
- 2F03461E6CBD4354FE073460 /* juce_android_Fonts.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_Fonts.cpp; path = ../../../../../modules/juce_graphics/native/juce_android_Fonts.cpp; sourceTree = SOURCE_ROOT; };
- 2F407D57D8476238C54F8112 /* juce_Thread.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Thread.h; path = ../../../../../modules/juce_core/threads/juce_Thread.h; sourceTree = SOURCE_ROOT; };
- 2F6F34739BCD0348BAC4D5BE /* juce_RelativeCoordinatePositioner.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_RelativeCoordinatePositioner.h; path = ../../../../../modules/juce_gui_basics/positioning/juce_RelativeCoordinatePositioner.h; sourceTree = SOURCE_ROOT; };
- 2F7EBCA1222D6D2E4B89FC2E /* juce_TableHeaderComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TableHeaderComponent.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_TableHeaderComponent.h; sourceTree = SOURCE_ROOT; };
- 2F85284E588516584213B5F1 /* pngrtran.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrtran.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngrtran.c; sourceTree = SOURCE_ROOT; };
- 2FAF11C9F6C314A36C879445 /* juce_TextPropertyComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TextPropertyComponent.h; path = ../../../../../modules/juce_gui_basics/properties/juce_TextPropertyComponent.h; sourceTree = SOURCE_ROOT; };
- 2FB1B8992C3497C5EFE0EB53 /* Info-App.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Info-App.plist"; sourceTree = SOURCE_ROOT; };
- 2FB361FFB25BD8EFB6160374 /* juce_Image.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Image.h; path = ../../../../../modules/juce_graphics/images/juce_Image.h; sourceTree = SOURCE_ROOT; };
- 303AA74F7D9B6F2E8804A2C1 /* infback.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = infback.c; path = ../../../../../modules/juce_core/zip/zlib/infback.c; sourceTree = SOURCE_ROOT; };
- 3067E2B75D1E66CAC8DD65C0 /* bitwriter.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = bitwriter.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/bitwriter.c; sourceTree = SOURCE_ROOT; };
- 30845B589D24B592C853C93E /* juce_GlowEffect.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_GlowEffect.cpp; path = ../../../../../modules/juce_graphics/effects/juce_GlowEffect.cpp; sourceTree = SOURCE_ROOT; };
- 30B2BDB16DA4D564F64D5CC7 /* juce_OpenGLShaderProgram.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGLShaderProgram.h; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLShaderProgram.h; sourceTree = SOURCE_ROOT; };
- 30E6F8EE669C2F151A9F2956 /* jmemmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jmemmgr.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jmemmgr.c; sourceTree = SOURCE_ROOT; };
- 31531D45E19AEC8E3EC90C90 /* juce_MouseInactivityDetector.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MouseInactivityDetector.cpp; path = ../../../../../modules/juce_gui_basics/mouse/juce_MouseInactivityDetector.cpp; sourceTree = SOURCE_ROOT; };
- 31AA33CB3A5577B36EE0017D /* juce_Drawable.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Drawable.cpp; path = ../../../../../modules/juce_gui_basics/drawables/juce_Drawable.cpp; sourceTree = SOURCE_ROOT; };
- 31F899D8732CEAF956AA7A72 /* juce_IPAddress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_IPAddress.h; path = ../../../../../modules/juce_core/network/juce_IPAddress.h; sourceTree = SOURCE_ROOT; };
- 321F587832C3C6C024BDD0E0 /* trees.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = trees.h; path = ../../../../../modules/juce_core/zip/zlib/trees.h; sourceTree = SOURCE_ROOT; };
- 3228E413B22DEEBDBA7ABF83 /* juce_GZIPDecompressorInputStream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_GZIPDecompressorInputStream.cpp; path = ../../../../../modules/juce_core/zip/juce_GZIPDecompressorInputStream.cpp; sourceTree = SOURCE_ROOT; };
- 322BA1353F7CA1DDDE9CAA4D /* envelope.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = envelope.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/envelope.c"; sourceTree = SOURCE_ROOT; };
- 3284EB2D81A682511A78D1AC /* juce_BigInteger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_BigInteger.cpp; path = ../../../../../modules/juce_core/maths/juce_BigInteger.cpp; sourceTree = SOURCE_ROOT; };
- 332586DA099D853A0202054A /* juce_KeyPress.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_KeyPress.cpp; path = ../../../../../modules/juce_gui_basics/keyboard/juce_KeyPress.cpp; sourceTree = SOURCE_ROOT; };
- 335219963DCBA3F85AC6C232 /* juce_CustomTypeface.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_CustomTypeface.cpp; path = ../../../../../modules/juce_graphics/fonts/juce_CustomTypeface.cpp; sourceTree = SOURCE_ROOT; };
- 337DBCFC0A462376DAFA8C3F /* juce_AudioParameterBool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioParameterBool.h; path = ../../../../../modules/juce_audio_processors/utilities/juce_AudioParameterBool.h; sourceTree = SOURCE_ROOT; };
- 33FED0E86133FA3439FCA42B /* juce_TopLevelWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TopLevelWindow.h; path = ../../../../../modules/juce_gui_basics/windows/juce_TopLevelWindow.h; sourceTree = SOURCE_ROOT; };
- 340CD5C7C9744CCCBE3AC335 /* juce_FloatVectorOperations.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FloatVectorOperations.h; path = ../../../../../modules/juce_audio_basics/buffers/juce_FloatVectorOperations.h; sourceTree = SOURCE_ROOT; };
- 340EA1B2263C37EC8A7B6014 /* juce_FilePreviewComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FilePreviewComponent.h; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FilePreviewComponent.h; sourceTree = SOURCE_ROOT; };
- 346470CBB2B9F42E9CB6E7C0 /* setup_44.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = setup_44.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_44.h"; sourceTree = SOURCE_ROOT; };
- 34A09EB72E861BC2E41CF66E /* juce_ApplicationCommandInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ApplicationCommandInfo.h; path = ../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandInfo.h; sourceTree = SOURCE_ROOT; };
- 34A1D01D8C72A0B39C0CF6D5 /* juce_win32_Files.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_Files.cpp; path = ../../../../../modules/juce_core/native/juce_win32_Files.cpp; sourceTree = SOURCE_ROOT; };
- 34A1DB27664840651D853100 /* juce_Label.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Label.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_Label.h; sourceTree = SOURCE_ROOT; };
- 34A745BB4A935998D25D1E86 /* juce_AudioCDReader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioCDReader.h; path = ../../../../../modules/juce_audio_utils/audio_cd/juce_AudioCDReader.h; sourceTree = SOURCE_ROOT; };
- 34B3D0B92C86C84AB27BBE90 /* juce_FileSearchPath.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileSearchPath.h; path = ../../../../../modules/juce_core/files/juce_FileSearchPath.h; sourceTree = SOURCE_ROOT; };
- 352E7E01ACE857617C20A3E1 /* stream_encoder_framing.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = stream_encoder_framing.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/stream_encoder_framing.c; sourceTree = SOURCE_ROOT; };
- 35656731DCD6703896CEE2E8 /* juce_RelativeParallelogram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_RelativeParallelogram.cpp; path = ../../../../../modules/juce_gui_basics/positioning/juce_RelativeParallelogram.cpp; sourceTree = SOURCE_ROOT; };
- 3568F7E50F7858A1B6279DDE /* jdmarker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmarker.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdmarker.c; sourceTree = SOURCE_ROOT; };
- 35A297789A17E01FBE82827F /* juce_TouchSurface.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TouchSurface.h; path = ../../../../../modules/juce_blocks_basics/blocks/juce_TouchSurface.h; sourceTree = SOURCE_ROOT; };
- 3665F1F2237ABB55D7614221 /* juce_audio_utils.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_audio_utils.cpp; path = ../../../../../modules/juce_audio_utils/juce_audio_utils.cpp; sourceTree = SOURCE_ROOT; };
- 36AB1E409836F7CDCD24CE58 /* juce_data_structures.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_data_structures.cpp; path = ../../../../../modules/juce_data_structures/juce_data_structures.cpp; sourceTree = SOURCE_ROOT; };
- 36CA5FBB8A3CE191E952D894 /* juce_linux_SystemTrayIcon.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_SystemTrayIcon.cpp; path = ../../../../../modules/juce_gui_extra/native/juce_linux_SystemTrayIcon.cpp; sourceTree = SOURCE_ROOT; };
- 36D79F468C67AF3D0B800E85 /* juce_URL.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_URL.cpp; path = ../../../../../modules/juce_core/network/juce_URL.cpp; sourceTree = SOURCE_ROOT; };
- 378D773196595D931B25B784 /* setup_44u.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = setup_44u.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_44u.h"; sourceTree = SOURCE_ROOT; };
- 38034209A283D7F8D56B5E53 /* juce_TextLayout.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TextLayout.cpp; path = ../../../../../modules/juce_graphics/fonts/juce_TextLayout.cpp; sourceTree = SOURCE_ROOT; };
- 38448998E8030347F182B334 /* juce_FileListComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileListComponent.h; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FileListComponent.h; sourceTree = SOURCE_ROOT; };
- 3851E8BB5BD4F284C8489033 /* juce_DynamicObject.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DynamicObject.h; path = ../../../../../modules/juce_core/containers/juce_DynamicObject.h; sourceTree = SOURCE_ROOT; };
- 38791AEE23AA4968433982F6 /* juce_VSTMidiEventList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_VSTMidiEventList.h; path = ../../../../../modules/juce_audio_processors/format_types/juce_VSTMidiEventList.h; sourceTree = SOURCE_ROOT; };
- 38A03045629DB69AE42D4206 /* jcapimin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcapimin.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jcapimin.c; sourceTree = SOURCE_ROOT; };
- 392CEE74B1D96166F05D02D9 /* juce_ImageComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ImageComponent.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_ImageComponent.h; sourceTree = SOURCE_ROOT; };
- 3986436BB1332AA00187E0BC /* juce_ImagePreviewComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ImagePreviewComponent.h; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_ImagePreviewComponent.h; sourceTree = SOURCE_ROOT; };
- 398873B7F0980B7D27356464 /* juce_ArrowButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ArrowButton.h; path = ../../../../../modules/juce_gui_basics/buttons/juce_ArrowButton.h; sourceTree = SOURCE_ROOT; };
- 39B450967D7D7D4B1E1ECED3 /* juce_Colour.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Colour.h; path = ../../../../../modules/juce_graphics/colour/juce_Colour.h; sourceTree = SOURCE_ROOT; };
- 39D9DEE8F862C43CF6F4DA7F /* juce_win32_DirectSound.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_DirectSound.cpp; path = ../../../../../modules/juce_audio_devices/native/juce_win32_DirectSound.cpp; sourceTree = SOURCE_ROOT; };
- 3A56A49F2C3025A4E7E74C35 /* juce_OpenGLPixelFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_OpenGLPixelFormat.cpp; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLPixelFormat.cpp; sourceTree = SOURCE_ROOT; };
- 3A5708787015E10D959ED324 /* juce_Memory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Memory.h; path = ../../../../../modules/juce_core/memory/juce_Memory.h; sourceTree = SOURCE_ROOT; };
- 3A648036804F8E2D52E5B60E /* juce_WildcardFileFilter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_WildcardFileFilter.h; path = ../../../../../modules/juce_core/files/juce_WildcardFileFilter.h; sourceTree = SOURCE_ROOT; };
- 3A795BC053BEA2428052FEBE /* juce_ModalComponentManager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ModalComponentManager.cpp; path = ../../../../../modules/juce_gui_basics/components/juce_ModalComponentManager.cpp; sourceTree = SOURCE_ROOT; };
- 3AB83A04D08F2F329AB81AE1 /* juce_ComponentListener.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ComponentListener.h; path = ../../../../../modules/juce_gui_basics/components/juce_ComponentListener.h; sourceTree = SOURCE_ROOT; };
- 3ABF91F41A610658F5B17523 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
- 3AE6DEF29143AA3E59CEB1DA /* juce_ImageConvolutionKernel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ImageConvolutionKernel.h; path = ../../../../../modules/juce_graphics/images/juce_ImageConvolutionKernel.h; sourceTree = SOURCE_ROOT; };
- 3B27E4A68284DA2C27655D59 /* juce_AudioPluginFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioPluginFormat.cpp; path = ../../../../../modules/juce_audio_processors/format/juce_AudioPluginFormat.cpp; sourceTree = SOURCE_ROOT; };
- 3B2A1B51E2C33786098AAE49 /* juce_Colours.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Colours.cpp; path = ../../../../../modules/juce_graphics/colour/juce_Colours.cpp; sourceTree = SOURCE_ROOT; };
- 3B4E0B86B77DC40F15FB3F94 /* jidctflt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctflt.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jidctflt.c; sourceTree = SOURCE_ROOT; };
- 3B63BB4D108A10D0C5FECBEF /* juce_mac_Threads.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_Threads.mm; path = ../../../../../modules/juce_core/native/juce_mac_Threads.mm; sourceTree = SOURCE_ROOT; };
- 3B9D6C4308A396C6953A2B19 /* juce_AbstractFifo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AbstractFifo.cpp; path = ../../../../../modules/juce_core/containers/juce_AbstractFifo.cpp; sourceTree = SOURCE_ROOT; };
- 3BD3060E486C89B438B21F43 /* juce_AttributedString.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AttributedString.cpp; path = ../../../../../modules/juce_graphics/fonts/juce_AttributedString.cpp; sourceTree = SOURCE_ROOT; };
- 3BEC5630096C646AACD87205 /* juce_Button.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Button.cpp; path = ../../../../../modules/juce_gui_basics/buttons/juce_Button.cpp; sourceTree = SOURCE_ROOT; };
- 3C03483C05460B67987EA712 /* codec_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = codec_internal.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/codec_internal.h"; sourceTree = SOURCE_ROOT; };
- 3C43BD70ACCE68D03688BBBF /* envelope.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = envelope.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/envelope.h"; sourceTree = SOURCE_ROOT; };
- 3C5760CD990742E382358250 /* lpc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = lpc.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lpc.c"; sourceTree = SOURCE_ROOT; };
- 3CCEB87B02CFD73B01FE5E3C /* pngwio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwio.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngwio.c; sourceTree = SOURCE_ROOT; };
- 3DA85B078D53F40F9AE66620 /* juce_ResizableEdgeComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ResizableEdgeComponent.h; path = ../../../../../modules/juce_gui_basics/layout/juce_ResizableEdgeComponent.h; sourceTree = SOURCE_ROOT; };
- 3DE8B0B99FE443C92EE32CCF /* juce_CaretComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_CaretComponent.cpp; path = ../../../../../modules/juce_gui_basics/keyboard/juce_CaretComponent.cpp; sourceTree = SOURCE_ROOT; };
- 3DFE53F6F99C7D51A8032CB1 /* png.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = png.h; path = ../../../../../modules/juce_graphics/image_formats/pnglib/png.h; sourceTree = SOURCE_ROOT; };
- 3E176A88BA217ABC03C93CD0 /* juce_MultiTimer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MultiTimer.h; path = ../../../../../modules/juce_events/timers/juce_MultiTimer.h; sourceTree = SOURCE_ROOT; };
- 3E17AE4B984D9E4083124600 /* jfdctint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctint.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jfdctint.c; sourceTree = SOURCE_ROOT; };
- 3E18E1893DB1F592952F6E8F /* LittleFoot Language README.txt */ = {isa = PBXFileReference; lastKnownFileType = text.txt; name = "LittleFoot Language README.txt"; path = "../../../../../modules/juce_blocks_basics/littlefoot/LittleFoot Language README.txt"; sourceTree = SOURCE_ROOT; };
- 3E2249E2AB8DC6FDCC87F9BF /* juce_OpenGLContext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_OpenGLContext.cpp; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLContext.cpp; sourceTree = SOURCE_ROOT; };
- 3E7005B5E5C7E2B1EE1FEA55 /* juce_Value.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Value.h; path = ../../../../../modules/juce_data_structures/values/juce_Value.h; sourceTree = SOURCE_ROOT; };
- 3E85FF93FDA0C5C93F8EE3FA /* juce_AudioDeviceManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioDeviceManager.h; path = ../../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.h; sourceTree = SOURCE_ROOT; };
- 3E8E3CBF730E14A6EC9BEF89 /* juce_MPESynthesiser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MPESynthesiser.h; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPESynthesiser.h; sourceTree = SOURCE_ROOT; };
- 3FFE8EE77F46A343C6D7464E /* juce_audio_devices.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_audio_devices.mm; path = ../../../../../modules/juce_audio_devices/juce_audio_devices.mm; sourceTree = SOURCE_ROOT; };
- 40096AE757FEA9F663BF88B9 /* juce_linux_Network.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_Network.cpp; path = ../../../../../modules/juce_core/native/juce_linux_Network.cpp; sourceTree = SOURCE_ROOT; };
- 40B2DF2617C73C0928FF7D93 /* juce_WebBrowserComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_WebBrowserComponent.h; path = ../../../../../modules/juce_gui_extra/misc/juce_WebBrowserComponent.h; sourceTree = SOURCE_ROOT; };
- 40BCCE9C782DBAF6459C3EDB /* cderror.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cderror.h; path = ../../../../../modules/juce_graphics/image_formats/jpglib/cderror.h; sourceTree = SOURCE_ROOT; };
- 40C17131B384BEEB66A4FAB1 /* juce_PropertyPanel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PropertyPanel.cpp; path = ../../../../../modules/juce_gui_basics/properties/juce_PropertyPanel.cpp; sourceTree = SOURCE_ROOT; };
- 416061525348EB462B1603AB /* juce_gui_extra.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_gui_extra.cpp; path = ../../../../../modules/juce_gui_extra/juce_gui_extra.cpp; sourceTree = SOURCE_ROOT; };
- 41641B5371BDC760981FDF9C /* juce_ios_MessageManager.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_ios_MessageManager.mm; path = ../../../../../modules/juce_events/native/juce_ios_MessageManager.mm; sourceTree = SOURCE_ROOT; };
- 418464056E84CF38CAE498FE /* juce_TimeSliceThread.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TimeSliceThread.h; path = ../../../../../modules/juce_core/threads/juce_TimeSliceThread.h; sourceTree = SOURCE_ROOT; };
- 41AB492EEF462863E50AF460 /* juce_MessageManager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MessageManager.cpp; path = ../../../../../modules/juce_events/messages/juce_MessageManager.cpp; sourceTree = SOURCE_ROOT; };
- 41B259559A84E4D37B411E9E /* juce_audio_formats.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_audio_formats.mm; path = ../../../../../modules/juce_audio_formats/juce_audio_formats.mm; sourceTree = SOURCE_ROOT; };
- 41EA8B9F834209FF197ECE40 /* juce_LAMEEncoderAudioFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LAMEEncoderAudioFormat.h; path = ../../../../../modules/juce_audio_formats/codecs/juce_LAMEEncoderAudioFormat.h; sourceTree = SOURCE_ROOT; };
- 4227DAE98212844575D0D944 /* juce_OpenGL_ios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGL_ios.h; path = ../../../../../modules/juce_opengl/native/juce_OpenGL_ios.h; sourceTree = SOURCE_ROOT; };
- 4231BEF0941784C4F2CDF362 /* juce_MidiBuffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MidiBuffer.h; path = ../../../../../modules/juce_audio_basics/midi/juce_MidiBuffer.h; sourceTree = SOURCE_ROOT; };
- 424E6E480FA0C70D02DF349A /* vorbisenc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = vorbisenc.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/vorbisenc.c"; sourceTree = SOURCE_ROOT; };
- 425B547B9020991C73D4D65E /* juce_SoundPlayer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_SoundPlayer.h; path = ../../../../../modules/juce_audio_utils/players/juce_SoundPlayer.h; sourceTree = SOURCE_ROOT; };
- 42D58F7C9468DB8F354B353F /* juce_Initialisation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Initialisation.h; path = ../../../../../modules/juce_events/messages/juce_Initialisation.h; sourceTree = SOURCE_ROOT; };
- 4307B791E5DC631C9447D24C /* juce_ToolbarItemFactory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ToolbarItemFactory.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_ToolbarItemFactory.h; sourceTree = SOURCE_ROOT; };
- 434FD5F26F8F5052AA287287 /* juce_FlacAudioFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FlacAudioFormat.cpp; path = ../../../../../modules/juce_audio_formats/codecs/juce_FlacAudioFormat.cpp; sourceTree = SOURCE_ROOT; };
- 43573D003FDD2FEA313A8B2F /* juce_GraphicsContext.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_GraphicsContext.h; path = ../../../../../modules/juce_graphics/contexts/juce_GraphicsContext.h; sourceTree = SOURCE_ROOT; };
- 43AF9A4E676708B5C9B936DE /* bitrate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = bitrate.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/bitrate.c"; sourceTree = SOURCE_ROOT; };
- 43BB607E9D1BC08AAF03B711 /* juce_FileSearchPathListComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FileSearchPathListComponent.cpp; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FileSearchPathListComponent.cpp; sourceTree = SOURCE_ROOT; };
- 441A0BB8FD08721B0768A41C /* juce_Sampler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Sampler.cpp; path = ../../../../../modules/juce_audio_formats/sampler/juce_Sampler.cpp; sourceTree = SOURCE_ROOT; };
- 448196AC5604B89ED7BC2086 /* juce_Uuid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Uuid.cpp; path = ../../../../../modules/juce_core/misc/juce_Uuid.cpp; sourceTree = SOURCE_ROOT; };
- 4490CBDB4F5B394BC4C8E22E /* Ogg Vorbis Licence.txt */ = {isa = PBXFileReference; lastKnownFileType = text.txt; name = "Ogg Vorbis Licence.txt"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/Ogg Vorbis Licence.txt"; sourceTree = SOURCE_ROOT; };
- 44ECB2E8A37E35CED1BDEB44 /* assert.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = assert.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/assert.h; sourceTree = SOURCE_ROOT; };
- 451702B185B088648F14A833 /* juce_TextEditor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TextEditor.cpp; path = ../../../../../modules/juce_gui_basics/widgets/juce_TextEditor.cpp; sourceTree = SOURCE_ROOT; };
- 457AE3EFAEB98FE93CEB0ACF /* juce_CoreAudioFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_CoreAudioFormat.cpp; path = ../../../../../modules/juce_audio_formats/codecs/juce_CoreAudioFormat.cpp; sourceTree = SOURCE_ROOT; };
- 4581D33463D9A6F637E8CDD8 /* juce_ScrollBar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ScrollBar.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_ScrollBar.cpp; sourceTree = SOURCE_ROOT; };
- 45DD050BF036D8362025CC86 /* juce_android_GraphicsContext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_GraphicsContext.cpp; path = ../../../../../modules/juce_graphics/native/juce_android_GraphicsContext.cpp; sourceTree = SOURCE_ROOT; };
- 460CE4619594A71E9BCE42A3 /* juce_audio_utils.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_audio_utils.mm; path = ../../JuceLibraryCode/juce_audio_utils.mm; sourceTree = SOURCE_ROOT; };
- 46A6F1936584ED15D40366DE /* juce_ios_UIViewComponentPeer.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_ios_UIViewComponentPeer.mm; path = ../../../../../modules/juce_gui_basics/native/juce_ios_UIViewComponentPeer.mm; sourceTree = SOURCE_ROOT; };
- 46AF0A703258AEE24688FE5B /* juce_ScrollBar.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ScrollBar.h; path = ../../../../../modules/juce_gui_basics/layout/juce_ScrollBar.h; sourceTree = SOURCE_ROOT; };
- 46EA57BC815C91944C720D59 /* juce_QuickTimeAudioFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_QuickTimeAudioFormat.h; path = ../../../../../modules/juce_audio_formats/codecs/juce_QuickTimeAudioFormat.h; sourceTree = SOURCE_ROOT; };
- 4765710DC062B04830654235 /* juce_ScopedPointer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ScopedPointer.h; path = ../../../../../modules/juce_core/memory/juce_ScopedPointer.h; sourceTree = SOURCE_ROOT; };
- 47787A636075A669F8FFA434 /* juce_ReferenceCountedArray.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ReferenceCountedArray.h; path = ../../../../../modules/juce_core/containers/juce_ReferenceCountedArray.h; sourceTree = SOURCE_ROOT; };
- 478C6A7FDD7B257654B67B59 /* juce_ThreadPool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ThreadPool.h; path = ../../../../../modules/juce_core/threads/juce_ThreadPool.h; sourceTree = SOURCE_ROOT; };
- 48037047F1CC53BDB2CBF2E9 /* juce_MidiFile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MidiFile.cpp; path = ../../../../../modules/juce_audio_basics/midi/juce_MidiFile.cpp; sourceTree = SOURCE_ROOT; };
- 4840F2FDA6C6A3E0CA41FA3D /* juce_CachedComponentImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CachedComponentImage.h; path = ../../../../../modules/juce_gui_basics/components/juce_CachedComponentImage.h; sourceTree = SOURCE_ROOT; };
- 4846DC8E7DFB0B17B0FCFF60 /* juce_ToolbarItemComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ToolbarItemComponent.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_ToolbarItemComponent.h; sourceTree = SOURCE_ROOT; };
- 4860027F79C430D081214B03 /* juce_Identifier.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Identifier.cpp; path = ../../../../../modules/juce_core/text/juce_Identifier.cpp; sourceTree = SOURCE_ROOT; };
- 488FA6954BBFB6694C21AEB4 /* juce_BufferingAudioSource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_BufferingAudioSource.cpp; path = ../../../../../modules/juce_audio_basics/sources/juce_BufferingAudioSource.cpp; sourceTree = SOURCE_ROOT; };
- 48FC93C2649A6B6B478AB4B8 /* juce_SplashScreen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_SplashScreen.cpp; path = ../../../../../modules/juce_gui_extra/misc/juce_SplashScreen.cpp; sourceTree = SOURCE_ROOT; };
- 490E933166E75FBF2163CAE0 /* juce_win32_DirectWriteTypeface.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_DirectWriteTypeface.cpp; path = ../../../../../modules/juce_graphics/native/juce_win32_DirectWriteTypeface.cpp; sourceTree = SOURCE_ROOT; };
- 49294AB2D8C5CCBBE763EA04 /* juce_FileChooser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FileChooser.cpp; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FileChooser.cpp; sourceTree = SOURCE_ROOT; };
- 492DC3C535B73B14A707133A /* juce_BubbleComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BubbleComponent.h; path = ../../../../../modules/juce_gui_basics/misc/juce_BubbleComponent.h; sourceTree = SOURCE_ROOT; };
- 4986E10C464822F15B91C7ED /* juce_IIRFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_IIRFilter.cpp; path = ../../../../../modules/juce_audio_basics/effects/juce_IIRFilter.cpp; sourceTree = SOURCE_ROOT; };
- 49D0C33F5968B4B16D73521F /* juce_QuickTimeAudioFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_QuickTimeAudioFormat.cpp; path = ../../../../../modules/juce_audio_formats/codecs/juce_QuickTimeAudioFormat.cpp; sourceTree = SOURCE_ROOT; };
- 49E68BE55F02C76D1A39B8E9 /* juce_LookAndFeel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_LookAndFeel.cpp; path = ../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.cpp; sourceTree = SOURCE_ROOT; };
- 4A46906896AD28D34B0218F3 /* crc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = crc.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/crc.h; sourceTree = SOURCE_ROOT; };
- 4A4FAB8C91193D662A4ACFEF /* juce_AudioProcessorPlayer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioProcessorPlayer.h; path = ../../../../../modules/juce_audio_utils/players/juce_AudioProcessorPlayer.h; sourceTree = SOURCE_ROOT; };
- 4A65ADBD6816BF0C9FE56E0F /* juce_LassoComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LassoComponent.h; path = ../../../../../modules/juce_gui_basics/mouse/juce_LassoComponent.h; sourceTree = SOURCE_ROOT; };
- 4A78F089AF9BAFC1586AF196 /* juce_FileFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FileFilter.cpp; path = ../../../../../modules/juce_core/files/juce_FileFilter.cpp; sourceTree = SOURCE_ROOT; };
- 4A7C8B1D23E9B6B7CCC02741 /* juce_AudioProcessor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioProcessor.cpp; path = ../../../../../modules/juce_audio_processors/processors/juce_AudioProcessor.cpp; sourceTree = SOURCE_ROOT; };
- 4A7D2BA623D3A1DE6B99DF1B /* inffast.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inffast.c; path = ../../../../../modules/juce_core/zip/zlib/inffast.c; sourceTree = SOURCE_ROOT; };
- 4A7DB9A482CFE6B1FCCA6174 /* juce_XMLCodeTokeniser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_XMLCodeTokeniser.h; path = ../../../../../modules/juce_gui_extra/code_editor/juce_XMLCodeTokeniser.h; sourceTree = SOURCE_ROOT; };
- 4AC6C62FB545839E566D0FE9 /* juce_NewLine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_NewLine.h; path = ../../../../../modules/juce_core/text/juce_NewLine.h; sourceTree = SOURCE_ROOT; };
- 4B28F11FE91DFD5341610403 /* jdhuff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdhuff.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdhuff.c; sourceTree = SOURCE_ROOT; };
- 4BE7254995C059C494538C70 /* juce_BlockModels.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BlockModels.h; path = ../../../../../modules/juce_blocks_basics/protocol/juce_BlockModels.h; sourceTree = SOURCE_ROOT; };
- 4C512E6E088C4B973E866756 /* juce_mac_NSViewComponent.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_NSViewComponent.mm; path = ../../../../../modules/juce_gui_extra/native/juce_mac_NSViewComponent.mm; sourceTree = SOURCE_ROOT; };
- 4C9BD4A188792CD1AA04D76E /* juce_Slider.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Slider.cpp; path = ../../../../../modules/juce_gui_basics/widgets/juce_Slider.cpp; sourceTree = SOURCE_ROOT; };
- 4CCFA4612BCBD5FCEB6E02E0 /* juce_PluginListComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PluginListComponent.cpp; path = ../../../../../modules/juce_audio_processors/scanning/juce_PluginListComponent.cpp; sourceTree = SOURCE_ROOT; };
- 4D2D9C398522FA01A9FFFCBB /* juce_MidiBuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MidiBuffer.cpp; path = ../../../../../modules/juce_audio_basics/midi/juce_MidiBuffer.cpp; sourceTree = SOURCE_ROOT; };
- 4D4461D4DE302DC06DE22D68 /* juce_ImageCache.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ImageCache.cpp; path = ../../../../../modules/juce_graphics/images/juce_ImageCache.cpp; sourceTree = SOURCE_ROOT; };
- 4D69C440B571531C56B12E10 /* juce_Logger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Logger.h; path = ../../../../../modules/juce_core/logging/juce_Logger.h; sourceTree = SOURCE_ROOT; };
- 4D84F3F6235C49D0ABAF4885 /* juce_CPlusPlusCodeTokeniser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_CPlusPlusCodeTokeniser.cpp; path = ../../../../../modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniser.cpp; sourceTree = SOURCE_ROOT; };
- 4DCF8D8075DD05492643A922 /* juce_ColourGradient.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ColourGradient.h; path = ../../../../../modules/juce_graphics/colour/juce_ColourGradient.h; sourceTree = SOURCE_ROOT; };
- 4E55A9C84ABE776CCA556594 /* juce_MidiKeyboardComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MidiKeyboardComponent.h; path = ../../../../../modules/juce_audio_utils/gui/juce_MidiKeyboardComponent.h; sourceTree = SOURCE_ROOT; };
- 4E8EA77D5F1F16096D60F3CF /* juce_ApplicationCommandTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ApplicationCommandTarget.h; path = ../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandTarget.h; sourceTree = SOURCE_ROOT; };
- 4E93F48CAB3C538054B0D9B6 /* juce_AsyncUpdater.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AsyncUpdater.h; path = ../../../../../modules/juce_events/broadcasters/juce_AsyncUpdater.h; sourceTree = SOURCE_ROOT; };
- 4EDEDEAB7029C5B5C2A63A15 /* jdmerge.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmerge.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdmerge.c; sourceTree = SOURCE_ROOT; };
- 4EECFA337A245BA2F32FDE9C /* juce_AlertWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AlertWindow.cpp; path = ../../../../../modules/juce_gui_basics/windows/juce_AlertWindow.cpp; sourceTree = SOURCE_ROOT; };
- 4EFDE9EEDF6DA6E5A066F2DF /* juce_core.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_core.mm; path = ../../../../../modules/juce_core/juce_core.mm; sourceTree = SOURCE_ROOT; };
- 4F2671111CAD35AA9A14E50A /* juce_Timer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Timer.cpp; path = ../../../../../modules/juce_events/timers/juce_Timer.cpp; sourceTree = SOURCE_ROOT; };
- 505900B3A9C3E0EB350784F1 /* callback.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = callback.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/callback.h; sourceTree = SOURCE_ROOT; };
- 50FB808D07149E5872D146C8 /* juce_DirectoryIterator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DirectoryIterator.h; path = ../../../../../modules/juce_core/files/juce_DirectoryIterator.h; sourceTree = SOURCE_ROOT; };
- 5122839D8D39723AA8BFBC70 /* juce_Base64.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Base64.cpp; path = ../../../../../modules/juce_core/text/juce_Base64.cpp; sourceTree = SOURCE_ROOT; };
- 515145EF420E45BB7E0402C5 /* juce_LiveConstantEditor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LiveConstantEditor.h; path = ../../../../../modules/juce_gui_extra/misc/juce_LiveConstantEditor.h; sourceTree = SOURCE_ROOT; };
- 516684CBCB8ACBA9E44E4BFD /* juce_VSTPluginFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_VSTPluginFormat.cpp; path = ../../../../../modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp; sourceTree = SOURCE_ROOT; };
- 518466F491B5DC8B80063C73 /* juce_Uuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Uuid.h; path = ../../../../../modules/juce_core/misc/juce_Uuid.h; sourceTree = SOURCE_ROOT; };
- 5236F7786FD9BFC43D9ABD94 /* juce_ValueTreeSynchroniser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ValueTreeSynchroniser.h; path = ../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.h; sourceTree = SOURCE_ROOT; };
- 5247BE9855469B053C368F24 /* juce_MemoryInputStream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MemoryInputStream.cpp; path = ../../../../../modules/juce_core/streams/juce_MemoryInputStream.cpp; sourceTree = SOURCE_ROOT; };
- 5289927ABB985AA0C17AFF50 /* juce_BufferingAudioFormatReader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BufferingAudioFormatReader.h; path = ../../../../../modules/juce_audio_formats/format/juce_BufferingAudioFormatReader.h; sourceTree = SOURCE_ROOT; };
- 529810AFE34B3B173DF7E89B /* juce_mac_SystemTrayIcon.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_mac_SystemTrayIcon.cpp; path = ../../../../../modules/juce_gui_extra/native/juce_mac_SystemTrayIcon.cpp; sourceTree = SOURCE_ROOT; };
- 52C4BC3D28F8184BC2F6B022 /* juce_LuaCodeTokeniser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LuaCodeTokeniser.h; path = ../../../../../modules/juce_gui_extra/code_editor/juce_LuaCodeTokeniser.h; sourceTree = SOURCE_ROOT; };
- 531078615D14BDA90A50AA53 /* juce_ComponentPeer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ComponentPeer.cpp; path = ../../../../../modules/juce_gui_basics/windows/juce_ComponentPeer.cpp; sourceTree = SOURCE_ROOT; };
- 5321E4A1DB897A2B7CF23AC0 /* juce_FlexItem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FlexItem.h; path = ../../../../../modules/juce_gui_basics/layout/juce_FlexItem.h; sourceTree = SOURCE_ROOT; };
- 5329122490F95D7339752A4E /* juce_SubregionStream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_SubregionStream.cpp; path = ../../../../../modules/juce_core/streams/juce_SubregionStream.cpp; sourceTree = SOURCE_ROOT; };
- 53C70300D106400F1AF2C123 /* juce_PropertySet.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PropertySet.cpp; path = ../../../../../modules/juce_core/containers/juce_PropertySet.cpp; sourceTree = SOURCE_ROOT; };
- 541BEA0E11518594C696094F /* juce_KeyMappingEditorComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_KeyMappingEditorComponent.cpp; path = ../../../../../modules/juce_gui_extra/misc/juce_KeyMappingEditorComponent.cpp; sourceTree = SOURCE_ROOT; };
- 5467983B508645F3246CADF1 /* juce_FileTreeComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileTreeComponent.h; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FileTreeComponent.h; sourceTree = SOURCE_ROOT; };
- 54C8D084F87C2B0A407CB3A0 /* juce_JSON.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_JSON.h; path = ../../../../../modules/juce_core/javascript/juce_JSON.h; sourceTree = SOURCE_ROOT; };
- 54EB9618ADF1901432C2345F /* juce_SystemTrayIconComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_SystemTrayIconComponent.h; path = ../../../../../modules/juce_gui_extra/misc/juce_SystemTrayIconComponent.h; sourceTree = SOURCE_ROOT; };
- 54EDF505CD9D19D1FD59D612 /* juce_MidiInput.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MidiInput.h; path = ../../../../../modules/juce_audio_devices/midi_io/juce_MidiInput.h; sourceTree = SOURCE_ROOT; };
- 54FF63024B2057CB82A3009C /* juce_TextButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TextButton.h; path = ../../../../../modules/juce_gui_basics/buttons/juce_TextButton.h; sourceTree = SOURCE_ROOT; };
- 55EFBD6183E831FBD8826325 /* juce_events.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_events.mm; path = ../../../../../modules/juce_events/juce_events.mm; sourceTree = SOURCE_ROOT; };
- 5634188A865D1AED86FC1030 /* juce_Viewport.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Viewport.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_Viewport.cpp; sourceTree = SOURCE_ROOT; };
- 5660E3A821F2F566AAA0DCC3 /* juce_ListenerList.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ListenerList.cpp; path = ../../../../../modules/juce_core/containers/juce_ListenerList.cpp; sourceTree = SOURCE_ROOT; };
- 5687068AA9A10610CCCAE92C /* juce_DrawableText.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DrawableText.cpp; path = ../../../../../modules/juce_gui_basics/drawables/juce_DrawableText.cpp; sourceTree = SOURCE_ROOT; };
- 56A2B221F07582C3693CFABC /* juce_ThreadPool.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ThreadPool.cpp; path = ../../../../../modules/juce_core/threads/juce_ThreadPool.cpp; sourceTree = SOURCE_ROOT; };
- 56E56C2AB629F7288EFFDF99 /* juce_Atomic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Atomic.h; path = ../../../../../modules/juce_core/memory/juce_Atomic.h; sourceTree = SOURCE_ROOT; };
- 57436F09E9FE1CB619681DE1 /* juce_MouseCursor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MouseCursor.cpp; path = ../../../../../modules/juce_gui_basics/mouse/juce_MouseCursor.cpp; sourceTree = SOURCE_ROOT; };
- 5779480339AAA112A12315A1 /* juce_mac_CoreGraphicsContext.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_CoreGraphicsContext.mm; path = ../../../../../modules/juce_graphics/native/juce_mac_CoreGraphicsContext.mm; sourceTree = SOURCE_ROOT; };
- 57BFD80A8E5673123D9004B8 /* juce_DrawableShape.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DrawableShape.h; path = ../../../../../modules/juce_gui_basics/drawables/juce_DrawableShape.h; sourceTree = SOURCE_ROOT; };
- 580B644027718870A081DC4E /* stream_encoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = stream_encoder.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/stream_encoder.h; sourceTree = SOURCE_ROOT; };
- 58880E117B1FCE6771ED958A /* jmemnobs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jmemnobs.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jmemnobs.c; sourceTree = SOURCE_ROOT; };
- 58C7100720C49C23EA841B13 /* juce_win32_ActiveXComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_ActiveXComponent.cpp; path = ../../../../../modules/juce_gui_extra/native/juce_win32_ActiveXComponent.cpp; sourceTree = SOURCE_ROOT; };
- 5901AE44435BBEA1841F2028 /* lsp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = lsp.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lsp.h"; sourceTree = SOURCE_ROOT; };
- 593FDB1011C838F5CB25E6A9 /* pngset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngset.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngset.c; sourceTree = SOURCE_ROOT; };
- 599F21A262B43F26B31A0137 /* juce_FileChooserDialogBox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FileChooserDialogBox.cpp; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FileChooserDialogBox.cpp; sourceTree = SOURCE_ROOT; };
- 59DBC804E4110F9FCDDAB23F /* juce_mac_CoreGraphicsHelpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_mac_CoreGraphicsHelpers.h; path = ../../../../../modules/juce_graphics/native/juce_mac_CoreGraphicsHelpers.h; sourceTree = SOURCE_ROOT; };
- 5AC1394BDDA0F1C11051F763 /* juce_AudioFormatManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioFormatManager.h; path = ../../../../../modules/juce_audio_formats/format/juce_AudioFormatManager.h; sourceTree = SOURCE_ROOT; };
- 5AD9E3796F5E585A81810A09 /* juce_Desktop.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Desktop.h; path = ../../../../../modules/juce_gui_basics/components/juce_Desktop.h; sourceTree = SOURCE_ROOT; };
- 5AEA510A742A1D7BAF22EC41 /* juce_TargetPlatform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TargetPlatform.h; path = ../../../../../modules/juce_core/system/juce_TargetPlatform.h; sourceTree = SOURCE_ROOT; };
- 5B3703950FC13A76F07CC0B0 /* juce_mac_CoreMidi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_mac_CoreMidi.cpp; path = ../../../../../modules/juce_audio_devices/native/juce_mac_CoreMidi.cpp; sourceTree = SOURCE_ROOT; };
- 5B9750AEC9BF60E5C75D6F27 /* juce_TextDiff.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TextDiff.cpp; path = ../../../../../modules/juce_core/text/juce_TextDiff.cpp; sourceTree = SOURCE_ROOT; };
- 5B9F3AC6C97B813BB96F9C07 /* jdhuff.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jdhuff.h; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdhuff.h; sourceTree = SOURCE_ROOT; };
- 5BC395EBD64E8CAD3F608735 /* juce_android_Messaging.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_Messaging.cpp; path = ../../../../../modules/juce_events/native/juce_android_Messaging.cpp; sourceTree = SOURCE_ROOT; };
- 5BD41E05243398FB26BC8041 /* scales.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = scales.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/scales.h"; sourceTree = SOURCE_ROOT; };
- 5C67296AC2E94992F244B1A8 /* juce_mac_CoreGraphicsContext.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_mac_CoreGraphicsContext.h; path = ../../../../../modules/juce_graphics/native/juce_mac_CoreGraphicsContext.h; sourceTree = SOURCE_ROOT; };
- 5C843AB1BC6467611517390A /* export.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = export.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/export.h; sourceTree = SOURCE_ROOT; };
- 5CD9180E4223F79C65313EF8 /* juce_StretchableLayoutManager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_StretchableLayoutManager.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_StretchableLayoutManager.cpp; sourceTree = SOURCE_ROOT; };
- 5CF0F5458B69B697F084D1CB /* lpc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = lpc.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lpc.h"; sourceTree = SOURCE_ROOT; };
- 5D065FB649082368A82A4D7E /* juce_mac_AudioCDReader.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_AudioCDReader.mm; path = ../../../../../modules/juce_audio_utils/native/juce_mac_AudioCDReader.mm; sourceTree = SOURCE_ROOT; };
- 5D456364DF7A1A1C1CBCA1F0 /* juce_opengl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_opengl.mm; path = ../../JuceLibraryCode/juce_opengl.mm; sourceTree = SOURCE_ROOT; };
- 5D4BEFEC0E129949C58876DD /* juce_audio_devices.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_audio_devices.mm; path = ../../JuceLibraryCode/juce_audio_devices.mm; sourceTree = SOURCE_ROOT; };
- 5D55891DEDD0EEFA6F294941 /* juce_Synthesiser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Synthesiser.cpp; path = ../../../../../modules/juce_audio_basics/synthesisers/juce_Synthesiser.cpp; sourceTree = SOURCE_ROOT; };
- 5D55C700506847B0C3E7992A /* juce_ApplicationProperties.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ApplicationProperties.cpp; path = ../../../../../modules/juce_data_structures/app_properties/juce_ApplicationProperties.cpp; sourceTree = SOURCE_ROOT; };
- 5E0AA1FA0367D0B8D32A5FDB /* juce_LuaCodeTokeniser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_LuaCodeTokeniser.cpp; path = ../../../../../modules/juce_gui_extra/code_editor/juce_LuaCodeTokeniser.cpp; sourceTree = SOURCE_ROOT; };
- 5E11C3AEEEBFB5D3ACE79B2E /* juce_MidiRPN.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MidiRPN.h; path = ../../../../../modules/juce_audio_basics/midi/juce_MidiRPN.h; sourceTree = SOURCE_ROOT; };
- 5E5B5455D01D68404DA760D3 /* juce_AudioProcessorEditor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioProcessorEditor.h; path = ../../../../../modules/juce_audio_processors/processors/juce_AudioProcessorEditor.h; sourceTree = SOURCE_ROOT; };
- 5ECB1585CB10B6336F35039E /* juce_linux_Clipboard.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_Clipboard.cpp; path = ../../../../../modules/juce_gui_basics/native/juce_linux_Clipboard.cpp; sourceTree = SOURCE_ROOT; };
- 5F2ABD15045B9C2D45BBB281 /* juce_FileBrowserListener.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileBrowserListener.h; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FileBrowserListener.h; sourceTree = SOURCE_ROOT; };
- 5F849E06BD0AEC3F3CA3803E /* juce_audio_utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_audio_utils.h; path = ../../../../../modules/juce_audio_utils/juce_audio_utils.h; sourceTree = SOURCE_ROOT; };
- 5FB96EBC6B8E73E76F2C2D7A /* juce_MidiKeyboardState.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MidiKeyboardState.cpp; path = ../../../../../modules/juce_audio_basics/midi/juce_MidiKeyboardState.cpp; sourceTree = SOURCE_ROOT; };
- 5FDD76A98FDD6FAD2CB88606 /* res_books_uncoupled.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = res_books_uncoupled.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/books/uncoupled/res_books_uncoupled.h"; sourceTree = SOURCE_ROOT; };
- 5FEDA06DD9D390733743ED0F /* juce_ChoicePropertyComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ChoicePropertyComponent.cpp; path = ../../../../../modules/juce_gui_basics/properties/juce_ChoicePropertyComponent.cpp; sourceTree = SOURCE_ROOT; };
- 5FFD4BC1A7EB346271391205 /* juce_Thread.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Thread.cpp; path = ../../../../../modules/juce_core/threads/juce_Thread.cpp; sourceTree = SOURCE_ROOT; };
- 60001B432129FD5855629F3E /* juce_KeyboardFocusTraverser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_KeyboardFocusTraverser.h; path = ../../../../../modules/juce_gui_basics/keyboard/juce_KeyboardFocusTraverser.h; sourceTree = SOURCE_ROOT; };
- 601F5CB6345EC149C773CAEA /* juce_BufferedInputStream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_BufferedInputStream.cpp; path = ../../../../../modules/juce_core/streams/juce_BufferedInputStream.cpp; sourceTree = SOURCE_ROOT; };
- 60200D25748FFB8436112D85 /* juce_MemoryInputStream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MemoryInputStream.h; path = ../../../../../modules/juce_core/streams/juce_MemoryInputStream.h; sourceTree = SOURCE_ROOT; };
- 604CC1744C3DFD07E43F6A82 /* juce_OpenGL_android.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGL_android.h; path = ../../../../../modules/juce_opengl/native/juce_OpenGL_android.h; sourceTree = SOURCE_ROOT; };
- 609A9DCD9B58779BFE402BBF /* stream_decoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = stream_decoder.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/stream_decoder.h; sourceTree = SOURCE_ROOT; };
- 60D50FA5390DEADA129CBD25 /* juce_data_structures.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_data_structures.h; path = ../../../../../modules/juce_data_structures/juce_data_structures.h; sourceTree = SOURCE_ROOT; };
- 60DE112B177F465AF7ECD44C /* juce_PluginDescription.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PluginDescription.cpp; path = ../../../../../modules/juce_audio_processors/processors/juce_PluginDescription.cpp; sourceTree = SOURCE_ROOT; };
- 60EEA5E3658D36513E1A25FD /* juce_opengl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_opengl.h; path = ../../../../../modules/juce_opengl/juce_opengl.h; sourceTree = SOURCE_ROOT; };
- 621C85154E8537D98DD550D3 /* juce_AudioFormatReaderSource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioFormatReaderSource.cpp; path = ../../../../../modules/juce_audio_formats/format/juce_AudioFormatReaderSource.cpp; sourceTree = SOURCE_ROOT; };
- 6259E41DD05DF414BFAEFF1F /* juce_ComponentMovementWatcher.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ComponentMovementWatcher.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_ComponentMovementWatcher.cpp; sourceTree = SOURCE_ROOT; };
- 62D3C5C70DDBEEE7E16DD1F3 /* uncompr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = uncompr.c; path = ../../../../../modules/juce_core/zip/zlib/uncompr.c; sourceTree = SOURCE_ROOT; };
- 62D3CBF544E4AB48E11D77E3 /* sharedbook.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = sharedbook.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/sharedbook.c"; sourceTree = SOURCE_ROOT; };
- 63690D22628914EA9BE61A6B /* juce_KnownPluginList.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_KnownPluginList.cpp; path = ../../../../../modules/juce_audio_processors/scanning/juce_KnownPluginList.cpp; sourceTree = SOURCE_ROOT; };
- 639AEE67CBD131D3D160C094 /* juce_mac_AudioCDBurner.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_AudioCDBurner.mm; path = ../../../../../modules/juce_audio_utils/native/juce_mac_AudioCDBurner.mm; sourceTree = SOURCE_ROOT; };
- 63A0B0B37AAB0387A610F6AE /* juce_ReadWriteLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ReadWriteLock.h; path = ../../../../../modules/juce_core/threads/juce_ReadWriteLock.h; sourceTree = SOURCE_ROOT; };
- 63B20B7D5AB4BA7C645F10AE /* juce_CompilerSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CompilerSupport.h; path = ../../../../../modules/juce_core/system/juce_CompilerSupport.h; sourceTree = SOURCE_ROOT; };
- 63B8C5F0192F2C0767C38B59 /* juce_MathsFunctions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MathsFunctions.h; path = ../../../../../modules/juce_core/maths/juce_MathsFunctions.h; sourceTree = SOURCE_ROOT; };
- 64045131E5C2BA8A8DE951BB /* juce_FlacAudioFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FlacAudioFormat.h; path = ../../../../../modules/juce_audio_formats/codecs/juce_FlacAudioFormat.h; sourceTree = SOURCE_ROOT; };
- 641322D5C3949AED6682C101 /* juce_ToolbarItemPalette.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ToolbarItemPalette.cpp; path = ../../../../../modules/juce_gui_basics/widgets/juce_ToolbarItemPalette.cpp; sourceTree = SOURCE_ROOT; };
- 64DFFD927FB3D86B97E36EF9 /* juce_BufferingAudioFormatReader.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_BufferingAudioFormatReader.cpp; path = ../../../../../modules/juce_audio_formats/format/juce_BufferingAudioFormatReader.cpp; sourceTree = SOURCE_ROOT; };
- 64E3E6EDAFEA1CE0C515588A /* juce_PathStrokeType.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PathStrokeType.cpp; path = ../../../../../modules/juce_graphics/geometry/juce_PathStrokeType.cpp; sourceTree = SOURCE_ROOT; };
- 64E5B84F1FA947FA88171033 /* juce_Matrix3D.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Matrix3D.h; path = ../../../../../modules/juce_opengl/geometry/juce_Matrix3D.h; sourceTree = SOURCE_ROOT; };
- 64F35E547771BD3A4ABFDB0D /* juce_OpenGLAppComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGLAppComponent.h; path = ../../../../../modules/juce_opengl/utils/juce_OpenGLAppComponent.h; sourceTree = SOURCE_ROOT; };
- 6509144104CFCCC2661C84AD /* juce_SubregionStream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_SubregionStream.h; path = ../../../../../modules/juce_core/streams/juce_SubregionStream.h; sourceTree = SOURCE_ROOT; };
- 650E5906E5CAAEABABFEEE1C /* pngtrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngtrans.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngtrans.c; sourceTree = SOURCE_ROOT; };
- 656121CD59DA8E95455ABC28 /* juce_Vector3D.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Vector3D.h; path = ../../../../../modules/juce_opengl/geometry/juce_Vector3D.h; sourceTree = SOURCE_ROOT; };
- 65E03D29E9BA76F1CF344B75 /* juce_ComponentBoundsConstrainer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ComponentBoundsConstrainer.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_ComponentBoundsConstrainer.cpp; sourceTree = SOURCE_ROOT; };
- 6602C5EBB2ADC3158B37B907 /* juce_AudioProcessorParameter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioProcessorParameter.h; path = ../../../../../modules/juce_audio_processors/processors/juce_AudioProcessorParameter.h; sourceTree = SOURCE_ROOT; };
- 661EF1C85FF1D2B6070163EE /* setup_11.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = setup_11.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_11.h"; sourceTree = SOURCE_ROOT; };
- 66AE29E32EB365E37B34FDD2 /* juce_MemoryOutputStream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MemoryOutputStream.cpp; path = ../../../../../modules/juce_core/streams/juce_MemoryOutputStream.cpp; sourceTree = SOURCE_ROOT; };
- 66AF1158C662CB915EE1F216 /* juce_SelectedItemSet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_SelectedItemSet.h; path = ../../../../../modules/juce_gui_basics/mouse/juce_SelectedItemSet.h; sourceTree = SOURCE_ROOT; };
- 66FEE3D850AB3A3D9FACAAE5 /* juce_DeletedAtShutdown.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DeletedAtShutdown.h; path = ../../../../../modules/juce_events/messages/juce_DeletedAtShutdown.h; sourceTree = SOURCE_ROOT; };
- 671BC724698C6A4A159738A6 /* juce_MACAddress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MACAddress.h; path = ../../../../../modules/juce_core/network/juce_MACAddress.h; sourceTree = SOURCE_ROOT; };
- 67606EF1CD1DDF9D69C93DFB /* juce_ComboBox.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ComboBox.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_ComboBox.h; sourceTree = SOURCE_ROOT; };
- 676856EAC9E9FFB013E6B910 /* juce_CallbackMessage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CallbackMessage.h; path = ../../../../../modules/juce_events/messages/juce_CallbackMessage.h; sourceTree = SOURCE_ROOT; };
- 678100D85EB6578B7390BE6F /* juce_TopLevelWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TopLevelWindow.cpp; path = ../../../../../modules/juce_gui_basics/windows/juce_TopLevelWindow.cpp; sourceTree = SOURCE_ROOT; };
- 67C85156717AC5DD60AD4279 /* juce_AudioIODeviceType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioIODeviceType.h; path = ../../../../../modules/juce_audio_devices/audio_io/juce_AudioIODeviceType.h; sourceTree = SOURCE_ROOT; };
- 67EE78D1C669F6DDED31CB39 /* juce_ChangeBroadcaster.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ChangeBroadcaster.cpp; path = ../../../../../modules/juce_events/broadcasters/juce_ChangeBroadcaster.cpp; sourceTree = SOURCE_ROOT; };
- 680095499A49102EF1B7F3C0 /* juce_TabbedComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TabbedComponent.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_TabbedComponent.cpp; sourceTree = SOURCE_ROOT; };
- 6820E5E02FBE26EDA1E814E6 /* juce_GenericAudioProcessorEditor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_GenericAudioProcessorEditor.cpp; path = ../../../../../modules/juce_audio_processors/processors/juce_GenericAudioProcessorEditor.cpp; sourceTree = SOURCE_ROOT; };
- 684A7466DDEA4CA1F785AAAF /* juce_XmlDocument.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_XmlDocument.cpp; path = ../../../../../modules/juce_core/xml/juce_XmlDocument.cpp; sourceTree = SOURCE_ROOT; };
- 687551D7CBDC73E3D249A30E /* juce_KeyboardFocusTraverser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_KeyboardFocusTraverser.cpp; path = ../../../../../modules/juce_gui_basics/keyboard/juce_KeyboardFocusTraverser.cpp; sourceTree = SOURCE_ROOT; };
- 6897A03FBCF6F3E3FE02DD69 /* juce_FileBasedDocument.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileBasedDocument.h; path = ../../../../../modules/juce_gui_extra/documents/juce_FileBasedDocument.h; sourceTree = SOURCE_ROOT; };
- 68C49A6E9109C5F448289C25 /* juce_AttributedString.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AttributedString.h; path = ../../../../../modules/juce_graphics/fonts/juce_AttributedString.h; sourceTree = SOURCE_ROOT; };
- 68F432AE5DFBDF416D381D69 /* juce_ReverbAudioSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ReverbAudioSource.h; path = ../../../../../modules/juce_audio_basics/sources/juce_ReverbAudioSource.h; sourceTree = SOURCE_ROOT; };
- 69571EA44314BEC40565D70D /* juce_UndoManager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_UndoManager.cpp; path = ../../../../../modules/juce_data_structures/undomanager/juce_UndoManager.cpp; sourceTree = SOURCE_ROOT; };
- 699EFC7DCE06711BB6C07F36 /* zconf.in.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = zconf.in.h; path = ../../../../../modules/juce_core/zip/zlib/zconf.in.h; sourceTree = SOURCE_ROOT; };
- 69AC4DA97DAF6291FB4831EE /* codebook.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = codebook.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/codebook.c"; sourceTree = SOURCE_ROOT; };
- 69B3DA0D93EFA18D005D4BBA /* jdct.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jdct.h; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdct.h; sourceTree = SOURCE_ROOT; };
- 6A194777720E39F99CEBDE68 /* jpeglib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jpeglib.h; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jpeglib.h; sourceTree = SOURCE_ROOT; };
- 6A5C7073E616E3C027C7298C /* juce_DialogWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DialogWindow.h; path = ../../../../../modules/juce_gui_basics/windows/juce_DialogWindow.h; sourceTree = SOURCE_ROOT; };
- 6A84B8A22E5DA1A769CCC18C /* juce_KeyPressMappingSet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_KeyPressMappingSet.h; path = ../../../../../modules/juce_gui_basics/commands/juce_KeyPressMappingSet.h; sourceTree = SOURCE_ROOT; };
- 6A88B631279A877CBF1EE8FC /* juce_AudioSubsectionReader.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioSubsectionReader.cpp; path = ../../../../../modules/juce_audio_formats/format/juce_AudioSubsectionReader.cpp; sourceTree = SOURCE_ROOT; };
- 6A95798F17AF7D10D2677BD7 /* juce_FillType.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FillType.cpp; path = ../../../../../modules/juce_graphics/colour/juce_FillType.cpp; sourceTree = SOURCE_ROOT; };
- 6ABDB6B3BC707D5EA4E754E5 /* juce_PopupMenu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PopupMenu.h; path = ../../../../../modules/juce_gui_basics/menus/juce_PopupMenu.h; sourceTree = SOURCE_ROOT; };
- 6B130B8EFF75E1ECF0E20F21 /* juce_RelativePointPath.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_RelativePointPath.cpp; path = ../../../../../modules/juce_gui_basics/positioning/juce_RelativePointPath.cpp; sourceTree = SOURCE_ROOT; };
- 6C0699AE325D1A41FB8CC560 /* juce_Expression.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Expression.cpp; path = ../../../../../modules/juce_core/maths/juce_Expression.cpp; sourceTree = SOURCE_ROOT; };
- 6C2B97454AB4AD2B7BFE0776 /* vorbisfile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = vorbisfile.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/vorbisfile.c"; sourceTree = SOURCE_ROOT; };
- 6C3BD063682D8A97CE28ED2C /* vorbisfile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = vorbisfile.h; path = ../../../../../modules/juce_audio_formats/codecs/oggvorbis/vorbisfile.h; sourceTree = SOURCE_ROOT; };
- 6C3D05CB8D915E9E8C1286EF /* juce_Javascript.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Javascript.h; path = ../../../../../modules/juce_core/javascript/juce_Javascript.h; sourceTree = SOURCE_ROOT; };
- 6C75E5D335754A26EDB64C0E /* trees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = trees.c; path = ../../../../../modules/juce_core/zip/zlib/trees.c; sourceTree = SOURCE_ROOT; };
- 6C783023901E82078E0F2435 /* juce_PositionableAudioSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PositionableAudioSource.h; path = ../../../../../modules/juce_audio_basics/sources/juce_PositionableAudioSource.h; sourceTree = SOURCE_ROOT; };
- 6D105609475B730F812FE7BB /* juce_OggVorbisAudioFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OggVorbisAudioFormat.h; path = ../../../../../modules/juce_audio_formats/codecs/juce_OggVorbisAudioFormat.h; sourceTree = SOURCE_ROOT; };
- 6D2AA08C51674AC355C3C4B9 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
- 6D665D953ABA975CDB21318F /* juce_NormalisableRange.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_NormalisableRange.h; path = ../../../../../modules/juce_core/maths/juce_NormalisableRange.h; sourceTree = SOURCE_ROOT; };
- 6D8CBDEA7BD024FC9E2875F3 /* juce_win_BluetoothMidiDevicePairingDialogue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win_BluetoothMidiDevicePairingDialogue.cpp; path = ../../../../../modules/juce_audio_utils/native/juce_win_BluetoothMidiDevicePairingDialogue.cpp; sourceTree = SOURCE_ROOT; };
- 6DE2EDC2238B94B55FA5167C /* juce_Expression.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Expression.h; path = ../../../../../modules/juce_core/maths/juce_Expression.h; sourceTree = SOURCE_ROOT; };
- 6E0317C6D582381E18F6FC28 /* juce_FileTreeComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FileTreeComponent.cpp; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FileTreeComponent.cpp; sourceTree = SOURCE_ROOT; };
- 6E6A0A28D29F9CE5A97D9603 /* juce_GlyphArrangement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_GlyphArrangement.h; path = ../../../../../modules/juce_graphics/fonts/juce_GlyphArrangement.h; sourceTree = SOURCE_ROOT; };
- 6E77E7974D18C2A3889C94D7 /* juce_MemoryBlock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MemoryBlock.h; path = ../../../../../modules/juce_core/memory/juce_MemoryBlock.h; sourceTree = SOURCE_ROOT; };
- 6EB3442488752F0077F61CFA /* pngerror.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngerror.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngerror.c; sourceTree = SOURCE_ROOT; };
- 6EBBA65276F7311BE0074812 /* juce_audio_processors.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_audio_processors.mm; path = ../../../../../modules/juce_audio_processors/juce_audio_processors.mm; sourceTree = SOURCE_ROOT; };
- 6F303FBDC38398256ADA7BA7 /* juce_XMLCodeTokeniser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_XMLCodeTokeniser.cpp; path = ../../../../../modules/juce_gui_extra/code_editor/juce_XMLCodeTokeniser.cpp; sourceTree = SOURCE_ROOT; };
- 6F4AE6971D02991BCC1B7F1A /* floor0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = floor0.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/floor0.c"; sourceTree = SOURCE_ROOT; };
- 6F4E9231B5C05BC368C3450E /* juce_win32_Direct2DGraphicsContext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_Direct2DGraphicsContext.cpp; path = ../../../../../modules/juce_graphics/native/juce_win32_Direct2DGraphicsContext.cpp; sourceTree = SOURCE_ROOT; };
- 6F6F12174D4A4E4D1266894F /* juce_StringRef.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_StringRef.h; path = ../../../../../modules/juce_core/text/juce_StringRef.h; sourceTree = SOURCE_ROOT; };
- 6FACB6671DF178C374D288C3 /* juce_CallOutBox.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CallOutBox.h; path = ../../../../../modules/juce_gui_basics/windows/juce_CallOutBox.h; sourceTree = SOURCE_ROOT; };
- 6FC15D6A4868FBA38C374110 /* juce_TreeView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TreeView.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_TreeView.h; sourceTree = SOURCE_ROOT; };
- 6FC3B994387E6EDAF2BDEE75 /* juce_osx_ObjCHelpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_osx_ObjCHelpers.h; path = ../../../../../modules/juce_core/native/juce_osx_ObjCHelpers.h; sourceTree = SOURCE_ROOT; };
- 703BF13C50FBAA0690EB819D /* juce_LowLevelGraphicsSoftwareRenderer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_LowLevelGraphicsSoftwareRenderer.cpp; path = ../../../../../modules/juce_graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.cpp; sourceTree = SOURCE_ROOT; };
- 707DD628F538166D4733876E /* juce_StringPairArray.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_StringPairArray.h; path = ../../../../../modules/juce_core/text/juce_StringPairArray.h; sourceTree = SOURCE_ROOT; };
- 70A3109F4B0C80AA941F513C /* juce_MidiMessageCollector.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MidiMessageCollector.cpp; path = ../../../../../modules/juce_audio_devices/midi_io/juce_MidiMessageCollector.cpp; sourceTree = SOURCE_ROOT; };
- 70C841CF701E3FB91C81E547 /* floor1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = floor1.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/floor1.c"; sourceTree = SOURCE_ROOT; };
- 70D730CB666E9D486B44A2AF /* juce_PluginDirectoryScanner.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PluginDirectoryScanner.cpp; path = ../../../../../modules/juce_audio_processors/scanning/juce_PluginDirectoryScanner.cpp; sourceTree = SOURCE_ROOT; };
- 70DB5546A7436EC8159F7825 /* juce_audio_basics.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_audio_basics.cpp; path = ../../../../../modules/juce_audio_basics/juce_audio_basics.cpp; sourceTree = SOURCE_ROOT; };
- 71386FCE19C79DC74F1623FF /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
- 713A0BDC7ACC4F399C378A0D /* juce_OpenGLTexture.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGLTexture.h; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLTexture.h; sourceTree = SOURCE_ROOT; };
- 716E7225D1FAE92136DDE91A /* juce_PopupMenu.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PopupMenu.cpp; path = ../../../../../modules/juce_gui_basics/menus/juce_PopupMenu.cpp; sourceTree = SOURCE_ROOT; };
- 71E11286C74E10382B85CAF6 /* juce_FileSearchPathListComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileSearchPathListComponent.h; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FileSearchPathListComponent.h; sourceTree = SOURCE_ROOT; };
- 721BC1EF4670F969B327BCFE /* juce_DragAndDropContainer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DragAndDropContainer.cpp; path = ../../../../../modules/juce_gui_basics/mouse/juce_DragAndDropContainer.cpp; sourceTree = SOURCE_ROOT; };
- 72300583DCD807FB8965116E /* jcapistd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcapistd.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jcapistd.c; sourceTree = SOURCE_ROOT; };
- 72CC4E382F4DD97DE7D2265B /* juce_Singleton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Singleton.h; path = ../../../../../modules/juce_core/memory/juce_Singleton.h; sourceTree = SOURCE_ROOT; };
- 72D5B90B3F201DE61EFF5904 /* juce_linux_Fonts.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_Fonts.cpp; path = ../../../../../modules/juce_graphics/native/juce_linux_Fonts.cpp; sourceTree = SOURCE_ROOT; };
- 72D97C35265816BF84B17A64 /* juce_ActionBroadcaster.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ActionBroadcaster.h; path = ../../../../../modules/juce_events/broadcasters/juce_ActionBroadcaster.h; sourceTree = SOURCE_ROOT; };
- 72E0C00FE7CAB47242F2B815 /* juce_AudioProcessorGraph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioProcessorGraph.h; path = ../../../../../modules/juce_audio_processors/processors/juce_AudioProcessorGraph.h; sourceTree = SOURCE_ROOT; };
- 72F093BD43569F666B148B27 /* juce_IIRFilterAudioSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_IIRFilterAudioSource.h; path = ../../../../../modules/juce_audio_basics/sources/juce_IIRFilterAudioSource.h; sourceTree = SOURCE_ROOT; };
- 72FEC6F5671BA939439E0CF0 /* juce_AudioVisualiserComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioVisualiserComponent.cpp; path = ../../../../../modules/juce_audio_utils/gui/juce_AudioVisualiserComponent.cpp; sourceTree = SOURCE_ROOT; };
- 731A4FE5C9250FE1D83D2008 /* juce_RelativePointPath.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_RelativePointPath.h; path = ../../../../../modules/juce_gui_basics/positioning/juce_RelativePointPath.h; sourceTree = SOURCE_ROOT; };
- 734EDE0CB353BEB637FB28DF /* crc32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = crc32.c; path = ../../../../../modules/juce_core/zip/zlib/crc32.c; sourceTree = SOURCE_ROOT; };
- 7352B3C338D6C18D80BA03B6 /* metadata.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = metadata.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/metadata.h; sourceTree = SOURCE_ROOT; };
- 735B02968773FD74934EC9B9 /* juce_ValueTree.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ValueTree.h; path = ../../../../../modules/juce_data_structures/values/juce_ValueTree.h; sourceTree = SOURCE_ROOT; };
- 737EA145B8366E0A55A8D6A0 /* juce_ToolbarButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ToolbarButton.h; path = ../../../../../modules/juce_gui_basics/buttons/juce_ToolbarButton.h; sourceTree = SOURCE_ROOT; };
- 73EF2B898A07179D14B9EE08 /* juce_ImageCache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ImageCache.h; path = ../../../../../modules/juce_graphics/images/juce_ImageCache.h; sourceTree = SOURCE_ROOT; };
- 7433092862D26C58AF93AE62 /* juce_ZipFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ZipFile.h; path = ../../../../../modules/juce_core/zip/juce_ZipFile.h; sourceTree = SOURCE_ROOT; };
- 7498ED1709143C20C79DB1E2 /* juce_ios_BluetoothMidiDevicePairingDialogue.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_ios_BluetoothMidiDevicePairingDialogue.mm; path = ../../../../../modules/juce_audio_utils/native/juce_ios_BluetoothMidiDevicePairingDialogue.mm; sourceTree = SOURCE_ROOT; };
- 74FB9B1CB018E5342E7AABFA /* juce_AudioProcessorEditor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioProcessorEditor.cpp; path = ../../../../../modules/juce_audio_processors/processors/juce_AudioProcessorEditor.cpp; sourceTree = SOURCE_ROOT; };
- 752759743BA54E6A4E34EBC4 /* juce_LowLevelGraphicsSoftwareRenderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LowLevelGraphicsSoftwareRenderer.h; path = ../../../../../modules/juce_graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.h; sourceTree = SOURCE_ROOT; };
- 7533170247A4B5A10D70246B /* stream_decoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = stream_decoder.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/protected/stream_decoder.h; sourceTree = SOURCE_ROOT; };
- 7597CCE58D1B95FB4342EA91 /* juce_HyperlinkButton.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_HyperlinkButton.cpp; path = ../../../../../modules/juce_gui_basics/buttons/juce_HyperlinkButton.cpp; sourceTree = SOURCE_ROOT; };
- 759D310E427CAB584332F916 /* juce_mac_Fonts.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_Fonts.mm; path = ../../../../../modules/juce_graphics/native/juce_mac_Fonts.mm; sourceTree = SOURCE_ROOT; };
- 75AA9C6E3FC6AAE881B93CA3 /* juce_FileListComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FileListComponent.cpp; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FileListComponent.cpp; sourceTree = SOURCE_ROOT; };
- 75D8AD14EB3D9985A3770C83 /* juce_win32_AudioCDBurner.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_AudioCDBurner.cpp; path = ../../../../../modules/juce_audio_utils/native/juce_win32_AudioCDBurner.cpp; sourceTree = SOURCE_ROOT; };
- 75F17FFBBC74680724103F2C /* juce_OpenGLPixelFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGLPixelFormat.h; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLPixelFormat.h; sourceTree = SOURCE_ROOT; };
- 76374244710CA4A53830D7E6 /* smallft.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = smallft.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/smallft.h"; sourceTree = SOURCE_ROOT; };
- 76597C68627FE0AF43DEC454 /* juce_DrawablePath.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DrawablePath.cpp; path = ../../../../../modules/juce_gui_basics/drawables/juce_DrawablePath.cpp; sourceTree = SOURCE_ROOT; };
- 769FABFC14A17F7AC2BBC65D /* jerror.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jerror.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jerror.c; sourceTree = SOURCE_ROOT; };
- 76DB19422D33EF95B030AF4F /* smallft.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = smallft.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/smallft.c"; sourceTree = SOURCE_ROOT; };
- 76F731D0553785FDCEC0CCC4 /* bitmath.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = bitmath.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/bitmath.h; sourceTree = SOURCE_ROOT; };
- 770D1A48C625E77273E34C64 /* jccolor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jccolor.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jccolor.c; sourceTree = SOURCE_ROOT; };
- 7736BA69BFD6B79E44DCF9D6 /* juce_LAMEEncoderAudioFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_LAMEEncoderAudioFormat.cpp; path = ../../../../../modules/juce_audio_formats/codecs/juce_LAMEEncoderAudioFormat.cpp; sourceTree = SOURCE_ROOT; };
- 77847C660F3D9562BD1469FB /* juce_ComponentDragger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ComponentDragger.cpp; path = ../../../../../modules/juce_gui_basics/mouse/juce_ComponentDragger.cpp; sourceTree = SOURCE_ROOT; };
- 779FC2189E09A0B4A15C45F7 /* juce_GlowEffect.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_GlowEffect.h; path = ../../../../../modules/juce_graphics/effects/juce_GlowEffect.h; sourceTree = SOURCE_ROOT; };
- 77D91228977E55D6C4D6C97A /* juce_SplashScreen.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_SplashScreen.h; path = ../../../../../modules/juce_gui_extra/misc/juce_SplashScreen.h; sourceTree = SOURCE_ROOT; };
- 77E856C4EDFB5608F03EBC99 /* juce_ConnectedChildProcess.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ConnectedChildProcess.cpp; path = ../../../../../modules/juce_events/interprocess/juce_ConnectedChildProcess.cpp; sourceTree = SOURCE_ROOT; };
- 77F678CCA2C005969380CA48 /* juce_LookAndFeel_V2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LookAndFeel_V2.h; path = ../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V2.h; sourceTree = SOURCE_ROOT; };
- 78329D02001CA45058DCF1AB /* juce_JSON.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_JSON.cpp; path = ../../../../../modules/juce_core/javascript/juce_JSON.cpp; sourceTree = SOURCE_ROOT; };
- 785C1C92060466C4968202D0 /* juce_InputSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_InputSource.h; path = ../../../../../modules/juce_core/streams/juce_InputSource.h; sourceTree = SOURCE_ROOT; };
- 78655006F91EC8E5C99A6991 /* juce_PreferencesPanel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PreferencesPanel.h; path = ../../../../../modules/juce_gui_extra/misc/juce_PreferencesPanel.h; sourceTree = SOURCE_ROOT; };
- 787FCE42F8EFF4F62B69363D /* juce_graphics.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_graphics.mm; path = ../../JuceLibraryCode/juce_graphics.mm; sourceTree = SOURCE_ROOT; };
- 7890A2750EB787AEBCA75F19 /* juce_StretchableLayoutResizerBar.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_StretchableLayoutResizerBar.h; path = ../../../../../modules/juce_gui_basics/layout/juce_StretchableLayoutResizerBar.h; sourceTree = SOURCE_ROOT; };
- 78977B6BAB87C72BE8A6825A /* juce_StringPool.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_StringPool.cpp; path = ../../../../../modules/juce_core/text/juce_StringPool.cpp; sourceTree = SOURCE_ROOT; };
- 78B2E56220F1F3D0E9C06FBD /* juce_RuleBasedTopologySource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_RuleBasedTopologySource.h; path = ../../../../../modules/juce_blocks_basics/topology/juce_RuleBasedTopologySource.h; sourceTree = SOURCE_ROOT; };
- 78D3A157D1DCAB72DC7D4FF2 /* juce_KeyListener.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_KeyListener.h; path = ../../../../../modules/juce_gui_basics/keyboard/juce_KeyListener.h; sourceTree = SOURCE_ROOT; };
- 7991C45FB3CCD45D46A7EBDE /* juce_AppleRemote.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AppleRemote.h; path = ../../../../../modules/juce_gui_extra/misc/juce_AppleRemote.h; sourceTree = SOURCE_ROOT; };
- 7A5FADFA9A6CF71D5D2B9FC6 /* juce_ios_UIViewComponent.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_ios_UIViewComponent.mm; path = ../../../../../modules/juce_gui_extra/native/juce_ios_UIViewComponent.mm; sourceTree = SOURCE_ROOT; };
- 7AB01CF3ABEAA9948DC8E0F8 /* juce_freetype_Fonts.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_freetype_Fonts.cpp; path = ../../../../../modules/juce_graphics/native/juce_freetype_Fonts.cpp; sourceTree = SOURCE_ROOT; };
- 7ADB824594D23926754D9ABD /* juce_android_Threads.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_Threads.cpp; path = ../../../../../modules/juce_core/native/juce_android_Threads.cpp; sourceTree = SOURCE_ROOT; };
- 7B121FD3C6971459B5EC4DE0 /* juce_ComponentBoundsConstrainer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ComponentBoundsConstrainer.h; path = ../../../../../modules/juce_gui_basics/layout/juce_ComponentBoundsConstrainer.h; sourceTree = SOURCE_ROOT; };
- 7B844571D08EC929B21A5ACF /* backends.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = backends.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/backends.h"; sourceTree = SOURCE_ROOT; };
- 7BAF11556203D550CE5E1560 /* juce_core.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_core.mm; path = ../../JuceLibraryCode/juce_core.mm; sourceTree = SOURCE_ROOT; };
- 7BC44A73343EBF0012783283 /* juce_audio_basics.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_audio_basics.mm; path = ../../../../../modules/juce_audio_basics/juce_audio_basics.mm; sourceTree = SOURCE_ROOT; };
- 7BD3D12701E20AD0509702C5 /* juce_MouseEvent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MouseEvent.h; path = ../../../../../modules/juce_gui_basics/mouse/juce_MouseEvent.h; sourceTree = SOURCE_ROOT; };
- 7BF8065AC65F92C392CDB058 /* juce_FilenameComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FilenameComponent.cpp; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FilenameComponent.cpp; sourceTree = SOURCE_ROOT; };
- 7C137769611C5A269332467B /* juce_ColourGradient.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ColourGradient.cpp; path = ../../../../../modules/juce_graphics/colour/juce_ColourGradient.cpp; sourceTree = SOURCE_ROOT; };
- 7C145A4C116A743CB8D0624F /* juce_ResizableWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ResizableWindow.cpp; path = ../../../../../modules/juce_gui_basics/windows/juce_ResizableWindow.cpp; sourceTree = SOURCE_ROOT; };
- 7C164C4F47469F58BA6DCDD5 /* stream_encoder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = stream_encoder.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/stream_encoder.c; sourceTree = SOURCE_ROOT; };
- 7C22E5FD3C91AB34CB539E2E /* juce_RelativeTime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_RelativeTime.cpp; path = ../../../../../modules/juce_core/time/juce_RelativeTime.cpp; sourceTree = SOURCE_ROOT; };
- 7C3158B229AE5B18BAD208FC /* juce_PhysicalTopologySource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PhysicalTopologySource.cpp; path = ../../../../../modules/juce_blocks_basics/topology/juce_PhysicalTopologySource.cpp; sourceTree = SOURCE_ROOT; };
- 7C955BABA03F3EF1E19E178E /* juce_StandardHeader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_StandardHeader.h; path = ../../../../../modules/juce_core/system/juce_StandardHeader.h; sourceTree = SOURCE_ROOT; };
- 7CA69469B3AFC9137FB98243 /* juce_gui_basics.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_gui_basics.h; path = ../../../../../modules/juce_gui_basics/juce_gui_basics.h; sourceTree = SOURCE_ROOT; };
- 7D272E58C41C4B21A689C487 /* juce_TextButton.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TextButton.cpp; path = ../../../../../modules/juce_gui_basics/buttons/juce_TextButton.cpp; sourceTree = SOURCE_ROOT; };
- 7E4D2E09A56241058D485070 /* juce_ToolbarButton.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ToolbarButton.cpp; path = ../../../../../modules/juce_gui_basics/buttons/juce_ToolbarButton.cpp; sourceTree = SOURCE_ROOT; };
- 7E4D7F844737CE5D8C9BD1CD /* codebook.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = codebook.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/codebook.h"; sourceTree = SOURCE_ROOT; };
- 7E5C701836EE0E311AE805B7 /* juce_MarkerList.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MarkerList.cpp; path = ../../../../../modules/juce_gui_basics/positioning/juce_MarkerList.cpp; sourceTree = SOURCE_ROOT; };
- 7EC2BB0FBA7BEC433B901162 /* juce_TextInputTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TextInputTarget.h; path = ../../../../../modules/juce_gui_basics/keyboard/juce_TextInputTarget.h; sourceTree = SOURCE_ROOT; };
- 7F0EFEADDCDF0B8C3BD1278B /* juce_BooleanPropertyComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_BooleanPropertyComponent.cpp; path = ../../../../../modules/juce_gui_basics/properties/juce_BooleanPropertyComponent.cpp; sourceTree = SOURCE_ROOT; };
- 7F5A0B43EA4CE0599C30637B /* juce_StretchableObjectResizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_StretchableObjectResizer.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_StretchableObjectResizer.cpp; sourceTree = SOURCE_ROOT; };
- 7F615DFC87CDB7F78660077C /* psych_16.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = psych_16.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/psych_16.h"; sourceTree = SOURCE_ROOT; };
- 7F81AFE4D54AA74B17E81899 /* juce_CodeDocument.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_CodeDocument.cpp; path = ../../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.cpp; sourceTree = SOURCE_ROOT; };
- 803335D3EDDD75FED2EA7864 /* juce_AudioProcessorValueTreeState.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioProcessorValueTreeState.cpp; path = ../../../../../modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.cpp; sourceTree = SOURCE_ROOT; };
- 8033E71C6724106F16F7FC35 /* juce_TooltipWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TooltipWindow.h; path = ../../../../../modules/juce_gui_basics/windows/juce_TooltipWindow.h; sourceTree = SOURCE_ROOT; };
- 8056F5AAE245F445D1F5FA26 /* analysis.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = analysis.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/analysis.c"; sourceTree = SOURCE_ROOT; };
- 8079D10F25DE8A660DFD7F97 /* juce_OggVorbisAudioFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_OggVorbisAudioFormat.cpp; path = ../../../../../modules/juce_audio_formats/codecs/juce_OggVorbisAudioFormat.cpp; sourceTree = SOURCE_ROOT; };
- 80A162921EA7B00DF95B9D1C /* juce_DynamicLibrary.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DynamicLibrary.h; path = ../../../../../modules/juce_core/threads/juce_DynamicLibrary.h; sourceTree = SOURCE_ROOT; };
- 80D2A754CA228BCA22EAFC8E /* juce_AudioThumbnailBase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioThumbnailBase.h; path = ../../../../../modules/juce_audio_utils/gui/juce_AudioThumbnailBase.h; sourceTree = SOURCE_ROOT; };
- 80D52462F8B49C3D1FBB6349 /* pngmem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngmem.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngmem.c; sourceTree = SOURCE_ROOT; };
- 80E4BC98EF30B463FCBF95C0 /* juce_Font.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Font.h; path = ../../../../../modules/juce_graphics/fonts/juce_Font.h; sourceTree = SOURCE_ROOT; };
- 810D7E7AC4E48A67AB84B75D /* juce_AudioFormatManager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioFormatManager.cpp; path = ../../../../../modules/juce_audio_formats/format/juce_AudioFormatManager.cpp; sourceTree = SOURCE_ROOT; };
- 813AE492EA6457096991918B /* psy.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = psy.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/psy.c"; sourceTree = SOURCE_ROOT; };
- 814F764F531DA3B45B982764 /* juce_ToolbarItemPalette.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ToolbarItemPalette.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_ToolbarItemPalette.h; sourceTree = SOURCE_ROOT; };
- 816E973AAA295DE63DEBC95D /* juce_mac_CarbonViewWrapperComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_mac_CarbonViewWrapperComponent.h; path = ../../../../../modules/juce_gui_extra/native/juce_mac_CarbonViewWrapperComponent.h; sourceTree = SOURCE_ROOT; };
- 818FAF2D047AE69BA11091D7 /* juce_OptionalScopedPointer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OptionalScopedPointer.h; path = ../../../../../modules/juce_core/memory/juce_OptionalScopedPointer.h; sourceTree = SOURCE_ROOT; };
- 8195E5CA20B1E6DE88148B41 /* juce_PropertiesFile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PropertiesFile.cpp; path = ../../../../../modules/juce_data_structures/app_properties/juce_PropertiesFile.cpp; sourceTree = SOURCE_ROOT; };
- 81F5049B4903492A6902FAE3 /* inftrees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inftrees.c; path = ../../../../../modules/juce_core/zip/zlib/inftrees.c; sourceTree = SOURCE_ROOT; };
- 8221F414FAE8FBF996CBF033 /* juce_ApplicationBase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ApplicationBase.h; path = ../../../../../modules/juce_events/messages/juce_ApplicationBase.h; sourceTree = SOURCE_ROOT; };
- 82CD7AB6C8788920318BFFF7 /* juce_PropertiesFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PropertiesFile.h; path = ../../../../../modules/juce_data_structures/app_properties/juce_PropertiesFile.h; sourceTree = SOURCE_ROOT; };
- 830F7516AA78496143854C16 /* juce_blocks_basics.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_blocks_basics.cpp; path = ../../JuceLibraryCode/juce_blocks_basics.cpp; sourceTree = SOURCE_ROOT; };
- 831C32DB068A571A3E99E55B /* juce_android_Audio.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_Audio.cpp; path = ../../../../../modules/juce_audio_devices/native/juce_android_Audio.cpp; sourceTree = SOURCE_ROOT; };
- 83B3F4B22F3603CFF3199C33 /* registry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = registry.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/registry.c"; sourceTree = SOURCE_ROOT; };
- 83BA095FCF4E84B0AB0CF903 /* juce_PluginDescription.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PluginDescription.h; path = ../../../../../modules/juce_audio_processors/processors/juce_PluginDescription.h; sourceTree = SOURCE_ROOT; };
- 84568194A9D160AD5459F013 /* juce_win32_DirectWriteTypeLayout.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_DirectWriteTypeLayout.cpp; path = ../../../../../modules/juce_graphics/native/juce_win32_DirectWriteTypeLayout.cpp; sourceTree = SOURCE_ROOT; };
- 847F33928C5A70863F673938 /* juce_MPESynthesiserBase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MPESynthesiserBase.cpp; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPESynthesiserBase.cpp; sourceTree = SOURCE_ROOT; };
- 849DD96FF7656F52F1972F38 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
- 84A04C8B8DE6E1C4FDC3F4A1 /* juce_AudioFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioFormat.cpp; path = ../../../../../modules/juce_audio_formats/format/juce_AudioFormat.cpp; sourceTree = SOURCE_ROOT; };
- 850772CD6A8E69EACB89CB02 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = BlocksMonitor/Images.xcassets; sourceTree = SOURCE_ROOT; };
- 8559A01D9B969E13A40980C6 /* juce_MessageManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MessageManager.h; path = ../../../../../modules/juce_events/messages/juce_MessageManager.h; sourceTree = SOURCE_ROOT; };
- 857C1BA3AF5C0210A8711464 /* compress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = compress.c; path = ../../../../../modules/juce_core/zip/zlib/compress.c; sourceTree = SOURCE_ROOT; };
- 85A0ABA6D4313DEAF9C7FBEB /* juce_win32_Threads.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_Threads.cpp; path = ../../../../../modules/juce_core/native/juce_win32_Threads.cpp; sourceTree = SOURCE_ROOT; };
- 85D8D664D73759C455C4E8DC /* juce_Message.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Message.h; path = ../../../../../modules/juce_events/messages/juce_Message.h; sourceTree = SOURCE_ROOT; };
- 8646E594783C3E937A259EEE /* juce_ChangeBroadcaster.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ChangeBroadcaster.h; path = ../../../../../modules/juce_events/broadcasters/juce_ChangeBroadcaster.h; sourceTree = SOURCE_ROOT; };
- 865CC068EAD0A9E54C77BBB1 /* bitwriter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = bitwriter.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/bitwriter.h; sourceTree = SOURCE_ROOT; };
- 86A4BD370ED34FF4CC252A18 /* juce_TableHeaderComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TableHeaderComponent.cpp; path = ../../../../../modules/juce_gui_basics/widgets/juce_TableHeaderComponent.cpp; sourceTree = SOURCE_ROOT; };
- 86C050562945072E55B2304F /* juce_MidiOutput.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MidiOutput.cpp; path = ../../../../../modules/juce_audio_devices/midi_io/juce_MidiOutput.cpp; sourceTree = SOURCE_ROOT; };
- 86C53DA3976331FD98DF115F /* juce_win32_Messaging.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_Messaging.cpp; path = ../../../../../modules/juce_events/native/juce_win32_Messaging.cpp; sourceTree = SOURCE_ROOT; };
- 8818BE9F1A26A6F0393DF753 /* psych_8.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = psych_8.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/psych_8.h"; sourceTree = SOURCE_ROOT; };
- 8853EE56290506D1C5B1A324 /* jutils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jutils.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jutils.c; sourceTree = SOURCE_ROOT; };
- 88A4EE2311F2D063677B1822 /* CoreAudioKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudioKit.framework; path = System/Library/Frameworks/CoreAudioKit.framework; sourceTree = SDKROOT; };
- 88EE9BAF87CBE950013CD3AB /* juce_ReverbAudioSource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ReverbAudioSource.cpp; path = ../../../../../modules/juce_audio_basics/sources/juce_ReverbAudioSource.cpp; sourceTree = SOURCE_ROOT; };
- 8941D9AFE6BE0F15F8391874 /* juce_RuleBasedTopologySource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_RuleBasedTopologySource.cpp; path = ../../../../../modules/juce_blocks_basics/topology/juce_RuleBasedTopologySource.cpp; sourceTree = SOURCE_ROOT; };
- 898A95E0423C95670F8E00D9 /* juce_LADSPAPluginFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_LADSPAPluginFormat.cpp; path = ../../../../../modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.cpp; sourceTree = SOURCE_ROOT; };
- 8A279F88C2047651F58628D1 /* juce_linux_AudioCDReader.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_AudioCDReader.cpp; path = ../../../../../modules/juce_audio_utils/native/juce_linux_AudioCDReader.cpp; sourceTree = SOURCE_ROOT; };
- 8A974C1E78DF69BEDF4760D0 /* stream_encoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = stream_encoder.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/stream_encoder.h; sourceTree = SOURCE_ROOT; };
- 8A9F1BF21DEC92A64F468E9C /* juce_CPlusPlusCodeTokeniser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CPlusPlusCodeTokeniser.h; path = ../../../../../modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniser.h; sourceTree = SOURCE_ROOT; };
- 8ABBC420D650176FC816CA90 /* juce_AudioPluginFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioPluginFormat.h; path = ../../../../../modules/juce_audio_processors/format/juce_AudioPluginFormat.h; sourceTree = SOURCE_ROOT; };
- 8AF2D36988A56CB9C6068F5B /* juce_AudioPluginInstance.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioPluginInstance.h; path = ../../../../../modules/juce_audio_processors/processors/juce_AudioPluginInstance.h; sourceTree = SOURCE_ROOT; };
- 8B1B3FA81F246E78CB5F2D99 /* juce_audio_basics.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_audio_basics.h; path = ../../../../../modules/juce_audio_basics/juce_audio_basics.h; sourceTree = SOURCE_ROOT; };
- 8B4505D4C9EBC3014C27D6D9 /* juce_MPEMessages.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MPEMessages.h; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPEMessages.h; sourceTree = SOURCE_ROOT; };
- 8C99020753B8736AEF7D04D0 /* setup_8.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = setup_8.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_8.h"; sourceTree = SOURCE_ROOT; };
- 8D5DB6220A070CA7C6EF649B /* jdpostct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdpostct.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdpostct.c; sourceTree = SOURCE_ROOT; };
- 8D9598B7B36DB4A8DC7F257A /* mapping0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = mapping0.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/mapping0.c"; sourceTree = SOURCE_ROOT; };
- 8DAD27599B4D76AA741E2F94 /* format.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = format.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/format.h; sourceTree = SOURCE_ROOT; };
- 8DD3CBC5EFBC79EE967D57B6 /* juce_AudioThumbnail.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioThumbnail.h; path = ../../../../../modules/juce_audio_utils/gui/juce_AudioThumbnail.h; sourceTree = SOURCE_ROOT; };
- 8DE0F4ADDA1C7FD72763835F /* juce_TextDiff.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TextDiff.h; path = ../../../../../modules/juce_core/text/juce_TextDiff.h; sourceTree = SOURCE_ROOT; };
- 8E25DB9F4F02D1EB553DD954 /* juce_DocumentWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DocumentWindow.h; path = ../../../../../modules/juce_gui_basics/windows/juce_DocumentWindow.h; sourceTree = SOURCE_ROOT; };
- 8E607B1E70CF61A3B3F8B230 /* juce_ComponentAnimator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ComponentAnimator.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_ComponentAnimator.cpp; sourceTree = SOURCE_ROOT; };
- 8E841F589CA7AAD4294FD631 /* crc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = crc.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/crc.c; sourceTree = SOURCE_ROOT; };
- 8EE36E6294B0521F7F8FA4AB /* juce_XmlElement.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_XmlElement.cpp; path = ../../../../../modules/juce_core/xml/juce_XmlElement.cpp; sourceTree = SOURCE_ROOT; };
- 8F577D253454A9B7795B976D /* juce_VST3PluginFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_VST3PluginFormat.cpp; path = ../../../../../modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp; sourceTree = SOURCE_ROOT; };
- 8F72A06310DEB2A6E6A0DA18 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
- 8F7A2483AB8A87ED367B8276 /* juce_Range.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Range.h; path = ../../../../../modules/juce_core/maths/juce_Range.h; sourceTree = SOURCE_ROOT; };
- 90168C92385FFFE93633DD25 /* juce_AlertWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AlertWindow.h; path = ../../../../../modules/juce_gui_basics/windows/juce_AlertWindow.h; sourceTree = SOURCE_ROOT; };
- 906854E5A523A5B01E5B5E63 /* jdapimin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdapimin.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdapimin.c; sourceTree = SOURCE_ROOT; };
- 909C06CF037053D160E1D911 /* juce_HighResolutionTimer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_HighResolutionTimer.h; path = ../../../../../modules/juce_core/threads/juce_HighResolutionTimer.h; sourceTree = SOURCE_ROOT; };
- 90EB80CDB45A0909C2ABDCCF /* pngpriv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pngpriv.h; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngpriv.h; sourceTree = SOURCE_ROOT; };
- 911142143AB852FE25C27BEA /* juce_FileInputSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileInputSource.h; path = ../../../../../modules/juce_core/streams/juce_FileInputSource.h; sourceTree = SOURCE_ROOT; };
- 9118ECA920DB03C9623ACABB /* juce_BitPackingUtilities.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BitPackingUtilities.h; path = ../../../../../modules/juce_blocks_basics/protocol/juce_BitPackingUtilities.h; sourceTree = SOURCE_ROOT; };
- 914600CCFA720261FC69CCD9 /* juce_AudioSubsectionReader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioSubsectionReader.h; path = ../../../../../modules/juce_audio_formats/format/juce_AudioSubsectionReader.h; sourceTree = SOURCE_ROOT; };
- 919C366862EB3C10E5850D70 /* jdphuff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdphuff.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdphuff.c; sourceTree = SOURCE_ROOT; };
- 9209F549B676E740E0B83FF7 /* juce_Colours.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Colours.h; path = ../../../../../modules/juce_graphics/colour/juce_Colours.h; sourceTree = SOURCE_ROOT; };
- 920EC1092F93EC048706028A /* juce_InputStream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_InputStream.h; path = ../../../../../modules/juce_core/streams/juce_InputStream.h; sourceTree = SOURCE_ROOT; };
- 925360F7E3AA48D3AC8FC71B /* juce_PerformanceCounter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PerformanceCounter.cpp; path = ../../../../../modules/juce_core/time/juce_PerformanceCounter.cpp; sourceTree = SOURCE_ROOT; };
- 930DC0F3CD592DE7B6A6945E /* juce_TabbedComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TabbedComponent.h; path = ../../../../../modules/juce_gui_basics/layout/juce_TabbedComponent.h; sourceTree = SOURCE_ROOT; };
- 93286547177CBA88A45187FB /* juce_Application.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Application.cpp; path = ../../../../../modules/juce_gui_basics/application/juce_Application.cpp; sourceTree = SOURCE_ROOT; };
- 932D69952B622B2BCFB904AC /* juce_TemporaryFile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TemporaryFile.cpp; path = ../../../../../modules/juce_core/files/juce_TemporaryFile.cpp; sourceTree = SOURCE_ROOT; };
- 9415AEBC23728926E143CA87 /* format.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = format.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/format.c; sourceTree = SOURCE_ROOT; };
- 948A5AC343109E364FF586C0 /* setup_44p51.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = setup_44p51.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_44p51.h"; sourceTree = SOURCE_ROOT; };
- 948ACEC6E5E7FB3963593D14 /* juce_TextEditorKeyMapper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TextEditorKeyMapper.h; path = ../../../../../modules/juce_gui_basics/keyboard/juce_TextEditorKeyMapper.h; sourceTree = SOURCE_ROOT; };
- 95521385B606A5AF9DC25621 /* juce_FileLogger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FileLogger.cpp; path = ../../../../../modules/juce_core/logging/juce_FileLogger.cpp; sourceTree = SOURCE_ROOT; };
- 95DAFF093BC64C4E8AFFAD39 /* juce_LittleFootCompiler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LittleFootCompiler.h; path = ../../../../../modules/juce_blocks_basics/littlefoot/juce_LittleFootCompiler.h; sourceTree = SOURCE_ROOT; };
- 961B5BA203F6A096FC1D5221 /* juce_DirectoryContentsList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DirectoryContentsList.h; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_DirectoryContentsList.h; sourceTree = SOURCE_ROOT; };
- 9621212C05067BDBB1EDC4B0 /* zconf.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = zconf.h; path = ../../../../../modules/juce_core/zip/zlib/zconf.h; sourceTree = SOURCE_ROOT; };
- 96B0988BE177AFFCCB353FC1 /* juce_PlatformDefs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PlatformDefs.h; path = ../../../../../modules/juce_core/system/juce_PlatformDefs.h; sourceTree = SOURCE_ROOT; };
- 96F7798575656A87A58107DB /* win_utf8_io.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = win_utf8_io.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/win_utf8_io.h; sourceTree = SOURCE_ROOT; };
- 976DD9AF4615787148AD3141 /* juce_Slider.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Slider.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_Slider.h; sourceTree = SOURCE_ROOT; };
- 97AD1E50A2BA5069A53B385F /* juce_WildcardFileFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_WildcardFileFilter.cpp; path = ../../../../../modules/juce_core/files/juce_WildcardFileFilter.cpp; sourceTree = SOURCE_ROOT; };
- 97C4CF34A7B666E1076D8643 /* juce_ResizableBorderComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ResizableBorderComponent.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_ResizableBorderComponent.cpp; sourceTree = SOURCE_ROOT; };
- 9851670A2A94D090ABDCD8EC /* juce_ProgressBar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ProgressBar.cpp; path = ../../../../../modules/juce_gui_basics/widgets/juce_ProgressBar.cpp; sourceTree = SOURCE_ROOT; };
- 98536B7D7BF6DCCC121EF75F /* juce_WavAudioFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_WavAudioFormat.h; path = ../../../../../modules/juce_audio_formats/codecs/juce_WavAudioFormat.h; sourceTree = SOURCE_ROOT; };
- 986D508D78EA59268FADE965 /* jdatasrc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdatasrc.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdatasrc.c; sourceTree = SOURCE_ROOT; };
- 98BD14DB6D84583B0A2138AD /* juce_FileChooser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileChooser.h; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FileChooser.h; sourceTree = SOURCE_ROOT; };
- 9915EA36F2BC695AD5DA1FB0 /* jerror.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jerror.h; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jerror.h; sourceTree = SOURCE_ROOT; };
- 993004BB53091A0FBEB0E418 /* juce_events.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_events.mm; path = ../../JuceLibraryCode/juce_events.mm; sourceTree = SOURCE_ROOT; };
- 9966516477648BBFCF5B0B94 /* juce_AudioIODeviceType.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioIODeviceType.cpp; path = ../../../../../modules/juce_audio_devices/audio_io/juce_AudioIODeviceType.cpp; sourceTree = SOURCE_ROOT; };
- 99670416B9C5B1427EFDC235 /* juce_Logger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Logger.cpp; path = ../../../../../modules/juce_core/logging/juce_Logger.cpp; sourceTree = SOURCE_ROOT; };
- 99ACE9D856A4E22A5BACF1F9 /* juce_MPESynthesiserVoice.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MPESynthesiserVoice.cpp; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPESynthesiserVoice.cpp; sourceTree = SOURCE_ROOT; };
- 99D1B54C81E3B11E5A515449 /* inflate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inflate.h; path = ../../../../../modules/juce_core/zip/zlib/inflate.h; sourceTree = SOURCE_ROOT; };
- 9A61D74797BF0F66E4942D15 /* juce_RuntimePermissions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_RuntimePermissions.h; path = ../../../../../modules/juce_core/misc/juce_RuntimePermissions.h; sourceTree = SOURCE_ROOT; };
- 9A798AA0771301D879ACA0E6 /* juce_DialogWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DialogWindow.cpp; path = ../../../../../modules/juce_gui_basics/windows/juce_DialogWindow.cpp; sourceTree = SOURCE_ROOT; };
- 9AAD723B4A3EF1165901402F /* juce_XmlDocument.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_XmlDocument.h; path = ../../../../../modules/juce_core/xml/juce_XmlDocument.h; sourceTree = SOURCE_ROOT; };
- 9AB6CB5AF2F228CAC1AE63D6 /* juce_MountedVolumeListChangeDetector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MountedVolumeListChangeDetector.h; path = ../../../../../modules/juce_events/messages/juce_MountedVolumeListChangeDetector.h; sourceTree = SOURCE_ROOT; };
- 9AB80400C174A565798B4DC7 /* juce_ImageButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ImageButton.h; path = ../../../../../modules/juce_gui_basics/buttons/juce_ImageButton.h; sourceTree = SOURCE_ROOT; };
- 9B6A0011D68BE05B0848FD8A /* juce_mac_MessageManager.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_MessageManager.mm; path = ../../../../../modules/juce_events/native/juce_mac_MessageManager.mm; sourceTree = SOURCE_ROOT; };
- 9B6EFF388E31F7E480380796 /* juce_data_structures.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_data_structures.mm; path = ../../JuceLibraryCode/juce_data_structures.mm; sourceTree = SOURCE_ROOT; };
- 9B83893AFBF95FF07B65E433 /* juce_MixerAudioSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MixerAudioSource.h; path = ../../../../../modules/juce_audio_basics/sources/juce_MixerAudioSource.h; sourceTree = SOURCE_ROOT; };
- 9B8C599BB498481CB64141B0 /* juce_Rectangle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Rectangle.h; path = ../../../../../modules/juce_graphics/geometry/juce_Rectangle.h; sourceTree = SOURCE_ROOT; };
- 9BAE8416CA03B3EE29D0DB0D /* juce_FileInputStream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileInputStream.h; path = ../../../../../modules/juce_core/files/juce_FileInputStream.h; sourceTree = SOURCE_ROOT; };
- 9BD70EEF4FCF2A636DAA3C48 /* juce_mac_CoreAudio.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_mac_CoreAudio.cpp; path = ../../../../../modules/juce_audio_devices/native/juce_mac_CoreAudio.cpp; sourceTree = SOURCE_ROOT; };
- 9BEA281CBD5878DF1330C6E8 /* juce_ValueTreeSynchroniser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ValueTreeSynchroniser.cpp; path = ../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.cpp; sourceTree = SOURCE_ROOT; };
- 9BEF8EED62BFF46A514824A2 /* residue_16.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = residue_16.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_16.h"; sourceTree = SOURCE_ROOT; };
- 9C2237E651B7A187DCBB75B9 /* juce_PreferencesPanel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PreferencesPanel.cpp; path = ../../../../../modules/juce_gui_extra/misc/juce_PreferencesPanel.cpp; sourceTree = SOURCE_ROOT; };
- 9C75C797BAEC7A8B9693A06B /* juce_FloatVectorOperations.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FloatVectorOperations.cpp; path = ../../../../../modules/juce_audio_basics/buffers/juce_FloatVectorOperations.cpp; sourceTree = SOURCE_ROOT; };
- 9CD5DB53DE796873DC2EE4E0 /* juce_BubbleMessageComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BubbleMessageComponent.h; path = ../../../../../modules/juce_gui_extra/misc/juce_BubbleMessageComponent.h; sourceTree = SOURCE_ROOT; };
- 9D08A5F790FC71D1BE770D20 /* juce_LookAndFeel_V1.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_LookAndFeel_V1.cpp; path = ../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V1.cpp; sourceTree = SOURCE_ROOT; };
- 9D45A965F9A8184B64460680 /* juce_Typeface.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Typeface.h; path = ../../../../../modules/juce_graphics/fonts/juce_Typeface.h; sourceTree = SOURCE_ROOT; };
- 9D86489534874805E5005BEF /* juce_NativeMessageBox.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_NativeMessageBox.h; path = ../../../../../modules/juce_gui_basics/windows/juce_NativeMessageBox.h; sourceTree = SOURCE_ROOT; };
- 9DB368AB3A1712F5E741DF8E /* juce_ColourSelector.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ColourSelector.cpp; path = ../../../../../modules/juce_gui_extra/misc/juce_ColourSelector.cpp; sourceTree = SOURCE_ROOT; };
- 9DCF20D6DD5D63567ED73A68 /* juce_CPlusPlusCodeTokeniserFunctions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CPlusPlusCodeTokeniserFunctions.h; path = ../../../../../modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniserFunctions.h; sourceTree = SOURCE_ROOT; };
- 9E742F2C0DCF21E717C69EC2 /* juce_Result.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Result.cpp; path = ../../../../../modules/juce_core/misc/juce_Result.cpp; sourceTree = SOURCE_ROOT; };
- 9E8FB4DD69AA02041D70B749 /* changes to libjpeg for JUCE.txt */ = {isa = PBXFileReference; lastKnownFileType = text.txt; name = "changes to libjpeg for JUCE.txt"; path = "../../../../../modules/juce_graphics/image_formats/jpglib/changes to libjpeg for JUCE.txt"; sourceTree = SOURCE_ROOT; };
- 9EA3A564C2056CABF6F64F19 /* juce_CachedValue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CachedValue.h; path = ../../../../../modules/juce_data_structures/values/juce_CachedValue.h; sourceTree = SOURCE_ROOT; };
- 9EB8EAADA992AB7525B04C57 /* pngconf.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pngconf.h; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngconf.h; sourceTree = SOURCE_ROOT; };
- 9EBFDCA556AB40E02BC2D3D9 /* juce_TreeView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TreeView.cpp; path = ../../../../../modules/juce_gui_basics/widgets/juce_TreeView.cpp; sourceTree = SOURCE_ROOT; };
- 9EC497EFAB1C323884D011FA /* juce_Socket.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Socket.cpp; path = ../../../../../modules/juce_core/network/juce_Socket.cpp; sourceTree = SOURCE_ROOT; };
- 9ED1E59E0EDEB57492B8B339 /* juce_PropertySet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PropertySet.h; path = ../../../../../modules/juce_core/containers/juce_PropertySet.h; sourceTree = SOURCE_ROOT; };
- 9F0CD34B5E00755ED32C633A /* memory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = memory.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/memory.h; sourceTree = SOURCE_ROOT; };
- 9F8621A060D21CD4F8E52082 /* juce_ButtonPropertyComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ButtonPropertyComponent.cpp; path = ../../../../../modules/juce_gui_basics/properties/juce_ButtonPropertyComponent.cpp; sourceTree = SOURCE_ROOT; };
- 9F8A9B400F29F93177C13068 /* inflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inflate.c; path = ../../../../../modules/juce_core/zip/zlib/inflate.c; sourceTree = SOURCE_ROOT; };
- 9FBEC2F41AEF630320F831AB /* codec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = codec.h; path = ../../../../../modules/juce_audio_formats/codecs/oggvorbis/codec.h; sourceTree = SOURCE_ROOT; };
- 9FF3D6166AF80343ACC2DF7A /* juce_win32_Midi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_Midi.cpp; path = ../../../../../modules/juce_audio_devices/native/juce_win32_Midi.cpp; sourceTree = SOURCE_ROOT; };
- 9FF679F47F9901DBEE96E2F4 /* juce_LowLevelGraphicsPostScriptRenderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LowLevelGraphicsPostScriptRenderer.h; path = ../../../../../modules/juce_graphics/contexts/juce_LowLevelGraphicsPostScriptRenderer.h; sourceTree = SOURCE_ROOT; };
- A02B644EE002D5CDFDBEB472 /* juce_FileBrowserComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FileBrowserComponent.cpp; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FileBrowserComponent.cpp; sourceTree = SOURCE_ROOT; };
- A02D981AD55D9C837497D9DF /* juce_GroupComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_GroupComponent.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_GroupComponent.cpp; sourceTree = SOURCE_ROOT; };
- A06FEA5708DBBF89F31BC095 /* juce_HeapBlock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_HeapBlock.h; path = ../../../../../modules/juce_core/memory/juce_HeapBlock.h; sourceTree = SOURCE_ROOT; };
- A07531AA213977EA9B7ABFC3 /* juce_win32_FileChooser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_FileChooser.cpp; path = ../../../../../modules/juce_gui_basics/native/juce_win32_FileChooser.cpp; sourceTree = SOURCE_ROOT; };
- A0A4D1CCCA84F1D6EC92D442 /* juce_ChoicePropertyComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ChoicePropertyComponent.h; path = ../../../../../modules/juce_gui_basics/properties/juce_ChoicePropertyComponent.h; sourceTree = SOURCE_ROOT; };
- A0B76982E47F6552E076C115 /* pngrio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrio.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngrio.c; sourceTree = SOURCE_ROOT; };
- A0DDE4018BE50F9FF0F6D4DB /* residue_44.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = residue_44.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_44.h"; sourceTree = SOURCE_ROOT; };
- A1596463A5167EF7B3B9E3F3 /* juce_android_Midi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_Midi.cpp; path = ../../../../../modules/juce_audio_devices/native/juce_android_Midi.cpp; sourceTree = SOURCE_ROOT; };
- A212A98178DA800BC7104EED /* juce_osx_MessageQueue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_osx_MessageQueue.h; path = ../../../../../modules/juce_events/native/juce_osx_MessageQueue.h; sourceTree = SOURCE_ROOT; };
- A285CB0E88EA469C72C4C086 /* juce_ControlButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ControlButton.h; path = ../../../../../modules/juce_blocks_basics/blocks/juce_ControlButton.h; sourceTree = SOURCE_ROOT; };
- A288992FC193721FE3DB4BD9 /* juce_DirectoryContentsList.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DirectoryContentsList.cpp; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_DirectoryContentsList.cpp; sourceTree = SOURCE_ROOT; };
- A31630141AF03CAE86F4228C /* juce_ValueTree.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ValueTree.cpp; path = ../../../../../modules/juce_data_structures/values/juce_ValueTree.cpp; sourceTree = SOURCE_ROOT; };
- A34E3CFE305D1CC76C0046C1 /* juce_DirectoryContentsDisplayComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DirectoryContentsDisplayComponent.h; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_DirectoryContentsDisplayComponent.h; sourceTree = SOURCE_ROOT; };
- A36BCC5ED3A26F2E5592EE32 /* juce_XmlElement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_XmlElement.h; path = ../../../../../modules/juce_core/xml/juce_XmlElement.h; sourceTree = SOURCE_ROOT; };
- A378497FA09036F13FA411C1 /* juce_ImageEffectFilter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ImageEffectFilter.h; path = ../../../../../modules/juce_graphics/effects/juce_ImageEffectFilter.h; sourceTree = SOURCE_ROOT; };
- A3913125232A72EF480476F2 /* juce_BigInteger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BigInteger.h; path = ../../../../../modules/juce_core/maths/juce_BigInteger.h; sourceTree = SOURCE_ROOT; };
- A3B3FBDBB67F69256BA6A290 /* juce_Value.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Value.cpp; path = ../../../../../modules/juce_data_structures/values/juce_Value.cpp; sourceTree = SOURCE_ROOT; };
- A409C91727751590682E3237 /* juce_MPEZone.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MPEZone.h; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPEZone.h; sourceTree = SOURCE_ROOT; };
- A427924174225CB14EA8B615 /* juce_LocalisedStrings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_LocalisedStrings.cpp; path = ../../../../../modules/juce_core/text/juce_LocalisedStrings.cpp; sourceTree = SOURCE_ROOT; };
- A49C327EA3CD090C4768925D /* juce_ThreadWithProgressWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ThreadWithProgressWindow.cpp; path = ../../../../../modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.cpp; sourceTree = SOURCE_ROOT; };
- A4B659039C636AA90C05767F /* juce_android_BluetoothMidiDevicePairingDialogue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_BluetoothMidiDevicePairingDialogue.cpp; path = ../../../../../modules/juce_audio_utils/native/juce_android_BluetoothMidiDevicePairingDialogue.cpp; sourceTree = SOURCE_ROOT; };
- A4D2F92AAE55340EB431CF8B /* juce_mac_SystemStats.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_SystemStats.mm; path = ../../../../../modules/juce_core/native/juce_mac_SystemStats.mm; sourceTree = SOURCE_ROOT; };
- A4D97A4003659632818C71FF /* md5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = md5.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/md5.c; sourceTree = SOURCE_ROOT; };
- A50045AA484A93660F5D0DEC /* juce_MPEInstrument.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MPEInstrument.cpp; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPEInstrument.cpp; sourceTree = SOURCE_ROOT; };
- A572695065599E9D922B476A /* juce_win32_ComSmartPtr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_win32_ComSmartPtr.h; path = ../../../../../modules/juce_core/native/juce_win32_ComSmartPtr.h; sourceTree = SOURCE_ROOT; };
- A5824D06228D6B5120269F73 /* res_books_51.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = res_books_51.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/books/coupled/res_books_51.h"; sourceTree = SOURCE_ROOT; };
- A59CDBDDAAB25C0621DE2C22 /* juce_FileBrowserComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileBrowserComponent.h; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FileBrowserComponent.h; sourceTree = SOURCE_ROOT; };
- A61B0324CAD4DE2A04ECAF2D /* jdtrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdtrans.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdtrans.c; sourceTree = SOURCE_ROOT; };
- A66CEA1922F1866BA9A10592 /* juce_GZIPCompressorOutputStream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_GZIPCompressorOutputStream.h; path = ../../../../../modules/juce_core/zip/juce_GZIPCompressorOutputStream.h; sourceTree = SOURCE_ROOT; };
- A6722561E959322FC2D3F8D7 /* juce_DrawableText.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DrawableText.h; path = ../../../../../modules/juce_gui_basics/drawables/juce_DrawableText.h; sourceTree = SOURCE_ROOT; };
- A6C807BA364341686874B1BB /* juce_opengl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_opengl.cpp; path = ../../../../../modules/juce_opengl/juce_opengl.cpp; sourceTree = SOURCE_ROOT; };
- A6EA6620D7460A9405F56693 /* juce_SystemTrayIconComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_SystemTrayIconComponent.cpp; path = ../../../../../modules/juce_gui_extra/misc/juce_SystemTrayIconComponent.cpp; sourceTree = SOURCE_ROOT; };
- A705E85372EBA8B0351E477E /* juce_VSTPluginFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_VSTPluginFormat.h; path = ../../../../../modules/juce_audio_processors/format_types/juce_VSTPluginFormat.h; sourceTree = SOURCE_ROOT; };
- A79EA78DB02B7098DE470DC2 /* juce_RelativeRectangle.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_RelativeRectangle.cpp; path = ../../../../../modules/juce_gui_basics/positioning/juce_RelativeRectangle.cpp; sourceTree = SOURCE_ROOT; };
- A7E2C39A7FF81AC0C2B0BB29 /* masking.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = masking.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/masking.h"; sourceTree = SOURCE_ROOT; };
- A7F8A897765E91543FF21D5F /* juce_RenderingHelpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_RenderingHelpers.h; path = ../../../../../modules/juce_graphics/native/juce_RenderingHelpers.h; sourceTree = SOURCE_ROOT; };
- A8ABBA51A3DEB23F46A5EAE6 /* pngstruct.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pngstruct.h; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngstruct.h; sourceTree = SOURCE_ROOT; };
- A92093FCCEED7408744E3706 /* juce_LagrangeInterpolator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LagrangeInterpolator.h; path = ../../../../../modules/juce_audio_basics/effects/juce_LagrangeInterpolator.h; sourceTree = SOURCE_ROOT; };
- A9711C6C2B654B0B95C93ACB /* juce_StringPool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_StringPool.h; path = ../../../../../modules/juce_core/text/juce_StringPool.h; sourceTree = SOURCE_ROOT; };
- A9717066C7343E734BBA14A7 /* juce_ComponentBuilder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ComponentBuilder.h; path = ../../../../../modules/juce_gui_basics/layout/juce_ComponentBuilder.h; sourceTree = SOURCE_ROOT; };
- A9819750A6C5E908DBE3A309 /* bitreader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = bitreader.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/bitreader.h; sourceTree = SOURCE_ROOT; };
- AA1F66345AFB2EFA32855F27 /* juce_android_Windowing.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_Windowing.cpp; path = ../../../../../modules/juce_gui_basics/native/juce_android_Windowing.cpp; sourceTree = SOURCE_ROOT; };
- AA6CA28DA51A2BAAD979771B /* juce_MidiMessageSequence.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MidiMessageSequence.cpp; path = ../../../../../modules/juce_audio_basics/midi/juce_MidiMessageSequence.cpp; sourceTree = SOURCE_ROOT; };
- AAABD4AE1DD0BB0519C4863F /* juce_CharPointer_UTF16.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CharPointer_UTF16.h; path = ../../../../../modules/juce_core/text/juce_CharPointer_UTF16.h; sourceTree = SOURCE_ROOT; };
- AAC7E9D875D6B6AA83E571AB /* juce_android_OpenSL.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_OpenSL.cpp; path = ../../../../../modules/juce_audio_devices/native/juce_android_OpenSL.cpp; sourceTree = SOURCE_ROOT; };
- AB7710558CEE0A3C649AD2AA /* juce_ModifierKeys.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ModifierKeys.cpp; path = ../../../../../modules/juce_gui_basics/keyboard/juce_ModifierKeys.cpp; sourceTree = SOURCE_ROOT; };
- AB86D69CE5472E765749D5E2 /* juce_ApplicationProperties.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ApplicationProperties.h; path = ../../../../../modules/juce_data_structures/app_properties/juce_ApplicationProperties.h; sourceTree = SOURCE_ROOT; };
- AB90BC12E5EAC2E1A7FDF691 /* juce_InterprocessConnection.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_InterprocessConnection.h; path = ../../../../../modules/juce_events/interprocess/juce_InterprocessConnection.h; sourceTree = SOURCE_ROOT; };
- ABA533A5D4493250568E3659 /* juce_GroupComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_GroupComponent.h; path = ../../../../../modules/juce_gui_basics/layout/juce_GroupComponent.h; sourceTree = SOURCE_ROOT; };
- ABD0576F2543A863F5DB40E7 /* juce_AudioCDReader.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioCDReader.cpp; path = ../../../../../modules/juce_audio_utils/audio_cd/juce_AudioCDReader.cpp; sourceTree = SOURCE_ROOT; };
- AC8A8FB37E03EAD593C68BB2 /* juce_StringArray.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_StringArray.cpp; path = ../../../../../modules/juce_core/text/juce_StringArray.cpp; sourceTree = SOURCE_ROOT; };
- ACB9D9A21F63B364C3E431DD /* juce_AudioFormatReader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioFormatReader.h; path = ../../../../../modules/juce_audio_formats/format/juce_AudioFormatReader.h; sourceTree = SOURCE_ROOT; };
- ACBA16D63E4470083B7CE29D /* juce_RelativeRectangle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_RelativeRectangle.h; path = ../../../../../modules/juce_gui_basics/positioning/juce_RelativeRectangle.h; sourceTree = SOURCE_ROOT; };
- AD2E097A960F2A4A946CF177 /* juce_CaretComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CaretComponent.h; path = ../../../../../modules/juce_gui_basics/keyboard/juce_CaretComponent.h; sourceTree = SOURCE_ROOT; };
- AD7225D561558BAFDF65BBC7 /* juce_DrumPadLEDProgram.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DrumPadLEDProgram.h; path = ../../../../../modules/juce_blocks_basics/visualisers/juce_DrumPadLEDProgram.h; sourceTree = SOURCE_ROOT; };
- AD7FCDD3AC5EF4057B4E669B /* juce_mac_Files.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_Files.mm; path = ../../../../../modules/juce_core/native/juce_mac_Files.mm; sourceTree = SOURCE_ROOT; };
- ADD75823E8C98A3F7F299385 /* juce_AudioFormatWriter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioFormatWriter.cpp; path = ../../../../../modules/juce_audio_formats/format/juce_AudioFormatWriter.cpp; sourceTree = SOURCE_ROOT; };
- ADD9F9EB5E0EFC63E2992ED7 /* MainComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainComponent.h; path = ../../Source/MainComponent.h; sourceTree = SOURCE_ROOT; };
- AE19C39D6B958349413E5F76 /* juce_android_SystemStats.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_SystemStats.cpp; path = ../../../../../modules/juce_core/native/juce_android_SystemStats.cpp; sourceTree = SOURCE_ROOT; };
- AE4AAFB284B168518E366EBD /* juce_FFT.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FFT.h; path = ../../../../../modules/juce_audio_basics/effects/juce_FFT.h; sourceTree = SOURCE_ROOT; };
- AED53153DA5BEE178C227DDF /* juce_AudioSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioSource.h; path = ../../../../../modules/juce_audio_basics/sources/juce_AudioSource.h; sourceTree = SOURCE_ROOT; };
- AEE9960FEFED454FB6DB18A7 /* juce_StatusLight.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_StatusLight.h; path = ../../../../../modules/juce_blocks_basics/blocks/juce_StatusLight.h; sourceTree = SOURCE_ROOT; };
- AEFAF28C900A0DFFC5F6FD40 /* juce_Image.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Image.cpp; path = ../../../../../modules/juce_graphics/images/juce_Image.cpp; sourceTree = SOURCE_ROOT; };
- AF000B66A6C3683AA30FFA85 /* juce_ThreadWithProgressWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ThreadWithProgressWindow.h; path = ../../../../../modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.h; sourceTree = SOURCE_ROOT; };
- AF11A0E66EA77FF9F426CBDD /* juce_MACAddress.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MACAddress.cpp; path = ../../../../../modules/juce_core/network/juce_MACAddress.cpp; sourceTree = SOURCE_ROOT; };
- AF4D1F728B7B429CBDEDC468 /* juce_ColourSelector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ColourSelector.h; path = ../../../../../modules/juce_gui_extra/misc/juce_ColourSelector.h; sourceTree = SOURCE_ROOT; };
- AFDDCF42011A661D8A965550 /* juce_MissingGLDefinitions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MissingGLDefinitions.h; path = ../../../../../modules/juce_opengl/native/juce_MissingGLDefinitions.h; sourceTree = SOURCE_ROOT; };
- AFE49D942B97B2FE5BF6345F /* juce_Timer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Timer.h; path = ../../../../../modules/juce_events/timers/juce_Timer.h; sourceTree = SOURCE_ROOT; };
- B000E9B383585F14D4106B33 /* juce_TableListBox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TableListBox.cpp; path = ../../../../../modules/juce_gui_basics/widgets/juce_TableListBox.cpp; sourceTree = SOURCE_ROOT; };
- B0276417E1FCAC6415FEC24C /* juce_AffineTransform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AffineTransform.h; path = ../../../../../modules/juce_graphics/geometry/juce_AffineTransform.h; sourceTree = SOURCE_ROOT; };
- B087CFCD5381A67E8ABE789D /* juce_DropShadowEffect.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DropShadowEffect.cpp; path = ../../../../../modules/juce_graphics/effects/juce_DropShadowEffect.cpp; sourceTree = SOURCE_ROOT; };
- B0A159D25E2692435B03ACC0 /* juce_ToneGeneratorAudioSource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ToneGeneratorAudioSource.cpp; path = ../../../../../modules/juce_audio_basics/sources/juce_ToneGeneratorAudioSource.cpp; sourceTree = SOURCE_ROOT; };
- B107BF03016269AF7369630B /* juce_win32_WebBrowserComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_WebBrowserComponent.cpp; path = ../../../../../modules/juce_gui_extra/native/juce_win32_WebBrowserComponent.cpp; sourceTree = SOURCE_ROOT; };
- B1657D09D3DF467A04A87E6A /* juce_IIRFilter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_IIRFilter.h; path = ../../../../../modules/juce_audio_basics/effects/juce_IIRFilter.h; sourceTree = SOURCE_ROOT; };
- B19D61C3D2D7BF60030FD1E2 /* juce_RecentlyOpenedFilesList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_RecentlyOpenedFilesList.h; path = ../../../../../modules/juce_gui_extra/misc/juce_RecentlyOpenedFilesList.h; sourceTree = SOURCE_ROOT; };
- B2015E328522144C463397DC /* lpc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = lpc.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/lpc.h; sourceTree = SOURCE_ROOT; };
- B213182B13BE510B8B96939D /* deflate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = deflate.h; path = ../../../../../modules/juce_core/zip/zlib/deflate.h; sourceTree = SOURCE_ROOT; };
- B22A37C8077912A763F8FAEE /* juce_Label.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Label.cpp; path = ../../../../../modules/juce_gui_basics/widgets/juce_Label.cpp; sourceTree = SOURCE_ROOT; };
- B29BA78743A8C82A8575D41C /* juce_ConcertinaPanel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ConcertinaPanel.h; path = ../../../../../modules/juce_gui_basics/layout/juce_ConcertinaPanel.h; sourceTree = SOURCE_ROOT; };
- B2D8F96F3F4463D678951CD6 /* jdinput.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdinput.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdinput.c; sourceTree = SOURCE_ROOT; };
- B2EA904753A758EA2A653D82 /* juce_Colour.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Colour.cpp; path = ../../../../../modules/juce_graphics/colour/juce_Colour.cpp; sourceTree = SOURCE_ROOT; };
- B327326ADE69CAEA4410249D /* juce_HyperlinkButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_HyperlinkButton.h; path = ../../../../../modules/juce_gui_basics/buttons/juce_HyperlinkButton.h; sourceTree = SOURCE_ROOT; };
- B35985BF65A5735648F332DB /* juce_ContainerDeletePolicy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ContainerDeletePolicy.h; path = ../../../../../modules/juce_core/memory/juce_ContainerDeletePolicy.h; sourceTree = SOURCE_ROOT; };
- B37091252E2FC04C254016C9 /* juce_mac_Network.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_Network.mm; path = ../../../../../modules/juce_core/native/juce_mac_Network.mm; sourceTree = SOURCE_ROOT; };
- B3A5905404A72FDE0888DF46 /* juce_MouseListener.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MouseListener.cpp; path = ../../../../../modules/juce_gui_basics/mouse/juce_MouseListener.cpp; sourceTree = SOURCE_ROOT; };
- B3A97D5DC77DB3FD2FC5FCEB /* juce_IPAddress.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_IPAddress.cpp; path = ../../../../../modules/juce_core/network/juce_IPAddress.cpp; sourceTree = SOURCE_ROOT; };
- B3C5E4089AD8803D08F9067E /* juce_Javascript.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Javascript.cpp; path = ../../../../../modules/juce_core/javascript/juce_Javascript.cpp; sourceTree = SOURCE_ROOT; };
- B3CD18208A4368D7AE29D706 /* juce_BitmapLEDProgram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_BitmapLEDProgram.cpp; path = ../../../../../modules/juce_blocks_basics/visualisers/juce_BitmapLEDProgram.cpp; sourceTree = SOURCE_ROOT; };
- B3E818A7CFAFA880F238BCC8 /* juce_PluginListComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PluginListComponent.h; path = ../../../../../modules/juce_audio_processors/scanning/juce_PluginListComponent.h; sourceTree = SOURCE_ROOT; };
- B41BF21771B358856B2C44C8 /* lsp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = lsp.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lsp.c"; sourceTree = SOURCE_ROOT; };
- B435295F7A3969E6EBD4E9B1 /* juce_MenuBarComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MenuBarComponent.cpp; path = ../../../../../modules/juce_gui_basics/menus/juce_MenuBarComponent.cpp; sourceTree = SOURCE_ROOT; };
- B4679BF8D1848CC2C7698764 /* juce_AudioVisualiserComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioVisualiserComponent.h; path = ../../../../../modules/juce_audio_utils/gui/juce_AudioVisualiserComponent.h; sourceTree = SOURCE_ROOT; };
- B46FA7622255695A963FCEA5 /* juce_MultiTimer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MultiTimer.cpp; path = ../../../../../modules/juce_events/timers/juce_MultiTimer.cpp; sourceTree = SOURCE_ROOT; };
- B4B445D0B8FF9D563C2F7F46 /* juce_AudioPluginFormatManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioPluginFormatManager.h; path = ../../../../../modules/juce_audio_processors/format/juce_AudioPluginFormatManager.h; sourceTree = SOURCE_ROOT; };
- B4E737B45F3090ECA81D34CE /* juce_ComponentPeer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ComponentPeer.h; path = ../../../../../modules/juce_gui_basics/windows/juce_ComponentPeer.h; sourceTree = SOURCE_ROOT; };
- B50D99789F7F83360780022E /* juce_android_Misc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_Misc.cpp; path = ../../../../../modules/juce_core/native/juce_android_Misc.cpp; sourceTree = SOURCE_ROOT; };
- B58ED38442F322226E81E930 /* juce_DocumentWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DocumentWindow.cpp; path = ../../../../../modules/juce_gui_basics/windows/juce_DocumentWindow.cpp; sourceTree = SOURCE_ROOT; };
- B5A57064DFB2BD47270A42E6 /* CoreMIDI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
- B5FE94B9AE535C0F0FA1D88B /* juce_android_RuntimePermissions.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_RuntimePermissions.cpp; path = ../../../../../modules/juce_core/native/juce_android_RuntimePermissions.cpp; sourceTree = SOURCE_ROOT; };
- B60BDAD15C5339F96D367450 /* juce_AudioProcessorPlayer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioProcessorPlayer.cpp; path = ../../../../../modules/juce_audio_utils/players/juce_AudioProcessorPlayer.cpp; sourceTree = SOURCE_ROOT; };
- B62F00B50AC42FC2DC1ADEEE /* juce_TextPropertyComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TextPropertyComponent.cpp; path = ../../../../../modules/juce_gui_basics/properties/juce_TextPropertyComponent.cpp; sourceTree = SOURCE_ROOT; };
- B6345846B766F695A8CAD09E /* juce_AudioSourcePlayer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioSourcePlayer.h; path = ../../../../../modules/juce_audio_devices/sources/juce_AudioSourcePlayer.h; sourceTree = SOURCE_ROOT; };
- B67DEB7456F7A7FE9E99F5AC /* juce_MidiMessageCollector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MidiMessageCollector.h; path = ../../../../../modules/juce_audio_devices/midi_io/juce_MidiMessageCollector.h; sourceTree = SOURCE_ROOT; };
- B6C06A491AB738501ACC77AE /* juce_UIViewComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_UIViewComponent.h; path = ../../../../../modules/juce_gui_extra/embedding/juce_UIViewComponent.h; sourceTree = SOURCE_ROOT; };
- B6F1AD93847540736A7C3B96 /* jidctfst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctfst.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jidctfst.c; sourceTree = SOURCE_ROOT; };
- B70BB65A467220F7972C4FB0 /* juce_ScopedReadLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ScopedReadLock.h; path = ../../../../../modules/juce_core/threads/juce_ScopedReadLock.h; sourceTree = SOURCE_ROOT; };
- B7EDEB203D0BB0EAE5EE555B /* juce_MidiKeyboardState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MidiKeyboardState.h; path = ../../../../../modules/juce_audio_basics/midi/juce_MidiKeyboardState.h; sourceTree = SOURCE_ROOT; };
- B83449AB719AFDE057B9245B /* juce_WebInputStream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_WebInputStream.cpp; path = ../../../../../modules/juce_core/network/juce_WebInputStream.cpp; sourceTree = SOURCE_ROOT; };
- B86B55CF411F403FBE6EDD8B /* juce_CodeEditorComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CodeEditorComponent.h; path = ../../../../../modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.h; sourceTree = SOURCE_ROOT; };
- B92C211B36B75E20B97D094E /* juce_StringArray.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_StringArray.h; path = ../../../../../modules/juce_core/text/juce_StringArray.h; sourceTree = SOURCE_ROOT; };
- B945AE13CE5FA99C9B48D98B /* juce_FileInputStream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FileInputStream.cpp; path = ../../../../../modules/juce_core/files/juce_FileInputStream.cpp; sourceTree = SOURCE_ROOT; };
- B979BF385FBD2717200311E7 /* juce_ListBox.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ListBox.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_ListBox.h; sourceTree = SOURCE_ROOT; };
- B9C32654F4F4FBDD5B8D8371 /* juce_StretchableLayoutManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_StretchableLayoutManager.h; path = ../../../../../modules/juce_gui_basics/layout/juce_StretchableLayoutManager.h; sourceTree = SOURCE_ROOT; };
- B9C392935DD8F5D8D0ABCF2D /* cpu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/cpu.h; sourceTree = SOURCE_ROOT; };
- BA06C53C74A8510DD172D631 /* juce_KnownPluginList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_KnownPluginList.h; path = ../../../../../modules/juce_audio_processors/scanning/juce_KnownPluginList.h; sourceTree = SOURCE_ROOT; };
- BA5EBAC0C16D620D37B80143 /* juce_data_structures.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_data_structures.mm; path = ../../../../../modules/juce_data_structures/juce_data_structures.mm; sourceTree = SOURCE_ROOT; };
- BAE124F36EE934FEC863965A /* juce_AudioFormatReaderSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioFormatReaderSource.h; path = ../../../../../modules/juce_audio_formats/format/juce_AudioFormatReaderSource.h; sourceTree = SOURCE_ROOT; };
- BAE69D4E9ABF50B36C2844C9 /* mdct.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = mdct.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/mdct.h"; sourceTree = SOURCE_ROOT; };
- BAF64118ACD931F4A899D18E /* juce_gui_extra.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_gui_extra.mm; path = ../../../../../modules/juce_gui_extra/juce_gui_extra.mm; sourceTree = SOURCE_ROOT; };
- BAFE0AA564EEF3F790410FDB /* juce_CatmullRomInterpolator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_CatmullRomInterpolator.cpp; path = ../../../../../modules/juce_audio_basics/effects/juce_CatmullRomInterpolator.cpp; sourceTree = SOURCE_ROOT; };
- BB6321248114A79859B8468B /* juce_MPEValue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MPEValue.cpp; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPEValue.cpp; sourceTree = SOURCE_ROOT; };
- BB8D9E34C22532DC6AFDA9DD /* Protocol Format.txt */ = {isa = PBXFileReference; lastKnownFileType = text.txt; name = "Protocol Format.txt"; path = "../../../../../modules/juce_blocks_basics/protocol/Protocol Format.txt"; sourceTree = SOURCE_ROOT; };
- BC2B18695DB1F8287E5CD7A4 /* juce_RelativeParallelogram.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_RelativeParallelogram.h; path = ../../../../../modules/juce_gui_basics/positioning/juce_RelativeParallelogram.h; sourceTree = SOURCE_ROOT; };
- BC6DCFE13B8042F59C065CC6 /* juce_CharPointer_UTF32.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CharPointer_UTF32.h; path = ../../../../../modules/juce_core/text/juce_CharPointer_UTF32.h; sourceTree = SOURCE_ROOT; };
- BCBB30471154DD69D59BEBE8 /* juce_OpenGLContext.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGLContext.h; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLContext.h; sourceTree = SOURCE_ROOT; };
- BCD101DB744482011FB7EA98 /* juce_audio_formats.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_audio_formats.cpp; path = ../../../../../modules/juce_audio_formats/juce_audio_formats.cpp; sourceTree = SOURCE_ROOT; };
- BCF2751331F61000AA2E6D8C /* window.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = window.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/window.h"; sourceTree = SOURCE_ROOT; };
- BD290FDCC12F4ADF00DAD43B /* juce_AudioDataConverters.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioDataConverters.cpp; path = ../../../../../modules/juce_audio_basics/buffers/juce_AudioDataConverters.cpp; sourceTree = SOURCE_ROOT; };
- BD2ACF51D2EDBB8D946C168B /* inftrees.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inftrees.h; path = ../../../../../modules/juce_core/zip/zlib/inftrees.h; sourceTree = SOURCE_ROOT; };
- BD7737BC6B7B6EE4AE3DD687 /* juce_DropShadowEffect.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DropShadowEffect.h; path = ../../../../../modules/juce_graphics/effects/juce_DropShadowEffect.h; sourceTree = SOURCE_ROOT; };
- BDC3A2443CA7C4A197AA7FD8 /* juce_AudioUnitPluginFormat.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_AudioUnitPluginFormat.mm; path = ../../../../../modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.mm; sourceTree = SOURCE_ROOT; };
- BE0489F4AA110E7A4BE6880E /* juce_MPESynthesiser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MPESynthesiser.cpp; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPESynthesiser.cpp; sourceTree = SOURCE_ROOT; };
- BE1493D37BFED1206A196B23 /* synthesis.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = synthesis.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/synthesis.c"; sourceTree = SOURCE_ROOT; };
- BE27A021A21278415868C466 /* juce_MemoryOutputStream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MemoryOutputStream.h; path = ../../../../../modules/juce_core/streams/juce_MemoryOutputStream.h; sourceTree = SOURCE_ROOT; };
- BE472B6711E509DE55C83D38 /* juce_MemoryMappedFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MemoryMappedFile.h; path = ../../../../../modules/juce_core/files/juce_MemoryMappedFile.h; sourceTree = SOURCE_ROOT; };
- BE531AFED218010571C90AAD /* juce_RelativeCoordinatePositioner.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_RelativeCoordinatePositioner.cpp; path = ../../../../../modules/juce_gui_basics/positioning/juce_RelativeCoordinatePositioner.cpp; sourceTree = SOURCE_ROOT; };
- BEA1459932A75A2D6AAD4B43 /* juce_events.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_events.h; path = ../../../../../modules/juce_events/juce_events.h; sourceTree = SOURCE_ROOT; };
- BEB701ADA012A1394ACCDD18 /* juce_OpenGLAppComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_OpenGLAppComponent.cpp; path = ../../../../../modules/juce_opengl/utils/juce_OpenGLAppComponent.cpp; sourceTree = SOURCE_ROOT; };
- BEE43FF11F7D88506B3B6E90 /* zutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = zutil.c; path = ../../../../../modules/juce_core/zip/zlib/zutil.c; sourceTree = SOURCE_ROOT; };
- BF1E8D386E1C71322F7B6321 /* all.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = all.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/all.h; sourceTree = SOURCE_ROOT; };
- BF4AF0A830706A80B2D1ADC5 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
- BFB75579514FA95EADD75AC5 /* juce_InterProcessLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_InterProcessLock.h; path = ../../../../../modules/juce_core/threads/juce_InterProcessLock.h; sourceTree = SOURCE_ROOT; };
- BFE7003BFA12C79A7E70E2F8 /* juce_DirectoryContentsDisplayComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DirectoryContentsDisplayComponent.cpp; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_DirectoryContentsDisplayComponent.cpp; sourceTree = SOURCE_ROOT; };
- C08E2831019572E220A71669 /* juce_DrawableComposite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DrawableComposite.h; path = ../../../../../modules/juce_gui_basics/drawables/juce_DrawableComposite.h; sourceTree = SOURCE_ROOT; };
- C09EE24431A651C996153ACA /* memory.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = memory.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/memory.c; sourceTree = SOURCE_ROOT; };
- C0CE2DBD3E07E03623F29618 /* juce_audio_basics.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_audio_basics.mm; path = ../../JuceLibraryCode/juce_audio_basics.mm; sourceTree = SOURCE_ROOT; };
- C0DD1473C48AEF7B3AB0087D /* juce_WindowsMediaAudioFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_WindowsMediaAudioFormat.h; path = ../../../../../modules/juce_audio_formats/codecs/juce_WindowsMediaAudioFormat.h; sourceTree = SOURCE_ROOT; };
- C0DE626D028AA9B00127F9BD /* juce_OutputStream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_OutputStream.cpp; path = ../../../../../modules/juce_core/streams/juce_OutputStream.cpp; sourceTree = SOURCE_ROOT; };
- C1474E839569EDA193F71BBC /* zutil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = zutil.h; path = ../../../../../modules/juce_core/zip/zlib/zutil.h; sourceTree = SOURCE_ROOT; };
- C1884E8D2D10F0AFEB1D87F3 /* juce_posix_NamedPipe.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_posix_NamedPipe.cpp; path = ../../../../../modules/juce_core/native/juce_posix_NamedPipe.cpp; sourceTree = SOURCE_ROOT; };
- C19A71E5C01BB38E1EEA2110 /* juce_win32_Fonts.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_Fonts.cpp; path = ../../../../../modules/juce_graphics/native/juce_win32_Fonts.cpp; sourceTree = SOURCE_ROOT; };
- C19D89C56696F5747C298985 /* juce_mac_AppleRemote.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_AppleRemote.mm; path = ../../../../../modules/juce_gui_extra/native/juce_mac_AppleRemote.mm; sourceTree = SOURCE_ROOT; };
- C1EA59968F46E68D75AABDCE /* juce_ios_Audio.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ios_Audio.cpp; path = ../../../../../modules/juce_audio_devices/native/juce_ios_Audio.cpp; sourceTree = SOURCE_ROOT; };
- C237671BF283E95CF9F93936 /* juce_TouchList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TouchList.h; path = ../../../../../modules/juce_blocks_basics/blocks/juce_TouchList.h; sourceTree = SOURCE_ROOT; };
- C2585C4A959C4CBA76BCEE6C /* juce_Typeface.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Typeface.cpp; path = ../../../../../modules/juce_graphics/fonts/juce_Typeface.cpp; sourceTree = SOURCE_ROOT; };
- C29107288DAD3ABB3719015D /* juce_AudioSourcePlayer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioSourcePlayer.cpp; path = ../../../../../modules/juce_audio_devices/sources/juce_AudioSourcePlayer.cpp; sourceTree = SOURCE_ROOT; };
- C29CB9EBB689083DD7D99F54 /* juce_Draggable3DOrientation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Draggable3DOrientation.h; path = ../../../../../modules/juce_opengl/geometry/juce_Draggable3DOrientation.h; sourceTree = SOURCE_ROOT; };
- C2B755C206D3AE7B0B4463ED /* juce_ShapeButton.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ShapeButton.cpp; path = ../../../../../modules/juce_gui_basics/buttons/juce_ShapeButton.cpp; sourceTree = SOURCE_ROOT; };
- C2C938AA02C97A425ECF7926 /* juce_MidiKeyboardComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MidiKeyboardComponent.cpp; path = ../../../../../modules/juce_audio_utils/gui/juce_MidiKeyboardComponent.cpp; sourceTree = SOURCE_ROOT; };
- C2F642C860D5E78D3E750E90 /* juce_AU_Shared.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AU_Shared.h; path = ../../../../../modules/juce_audio_processors/format_types/juce_AU_Shared.h; sourceTree = SOURCE_ROOT; };
- C3104BD68827E3B23FE7BF51 /* juce_ReferenceCountedObject.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ReferenceCountedObject.h; path = ../../../../../modules/juce_core/memory/juce_ReferenceCountedObject.h; sourceTree = SOURCE_ROOT; };
- C315E5EE86688FF6DEA57CE7 /* juce_FFT.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FFT.cpp; path = ../../../../../modules/juce_audio_basics/effects/juce_FFT.cpp; sourceTree = SOURCE_ROOT; };
- C33F5E40671D8969529DC1F3 /* jcmarker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmarker.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jcmarker.c; sourceTree = SOURCE_ROOT; };
- C35A0F1C5323F130D4A1108F /* juce_AudioProcessorParameterWithID.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioProcessorParameterWithID.h; path = ../../../../../modules/juce_audio_processors/utilities/juce_AudioProcessorParameterWithID.h; sourceTree = SOURCE_ROOT; };
- C37E5834DB1CC5410BF93D8F /* juce_MPESynthesiserVoice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MPESynthesiserVoice.h; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPESynthesiserVoice.h; sourceTree = SOURCE_ROOT; };
- C3891745EE7DBD352727B9B2 /* juce_StringPairArray.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_StringPairArray.cpp; path = ../../../../../modules/juce_core/text/juce_StringPairArray.cpp; sourceTree = SOURCE_ROOT; };
- C3CD93C748F880042436180B /* juce_UnitTest.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_UnitTest.cpp; path = ../../../../../modules/juce_core/unit_tests/juce_UnitTest.cpp; sourceTree = SOURCE_ROOT; };
- C3E4493CE69B1B931CB96EA9 /* juce_HostPacketDecoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_HostPacketDecoder.h; path = ../../../../../modules/juce_blocks_basics/protocol/juce_HostPacketDecoder.h; sourceTree = SOURCE_ROOT; };
- C3E64B47D41D5364FA0CFDC3 /* juce_audio_utils.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_audio_utils.mm; path = ../../../../../modules/juce_audio_utils/juce_audio_utils.mm; sourceTree = SOURCE_ROOT; };
- C42467520EB918DFA024D0AF /* psy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = psy.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/psy.h"; sourceTree = SOURCE_ROOT; };
- C438A00F7FAE0D151BC99D0B /* juce_ActiveXControlComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ActiveXControlComponent.h; path = ../../../../../modules/juce_gui_extra/embedding/juce_ActiveXControlComponent.h; sourceTree = SOURCE_ROOT; };
- C468BC4730E745AD31CA903D /* png.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = png.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/png.c; sourceTree = SOURCE_ROOT; };
- C48524BD8330E2A4710D99FF /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
- C498F38B2EE41174DCA27032 /* juce_AudioUnitPluginFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioUnitPluginFormat.h; path = ../../../../../modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.h; sourceTree = SOURCE_ROOT; };
- C49F54FB785A0B5D4D41B6BF /* transupp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = transupp.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/transupp.c; sourceTree = SOURCE_ROOT; };
- C4DDAA034449093B3E5A60ED /* juce_Button.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Button.h; path = ../../../../../modules/juce_gui_basics/buttons/juce_Button.h; sourceTree = SOURCE_ROOT; };
- C4E4C2AD07EA064EB32326F5 /* juce_HostPacketBuilder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_HostPacketBuilder.h; path = ../../../../../modules/juce_blocks_basics/protocol/juce_HostPacketBuilder.h; sourceTree = SOURCE_ROOT; };
- C4F45122F361CE23DDB32596 /* juce_EdgeTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_EdgeTable.h; path = ../../../../../modules/juce_graphics/geometry/juce_EdgeTable.h; sourceTree = SOURCE_ROOT; };
- C50386097FEBEBECC9E84866 /* juce_MidiMessage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MidiMessage.h; path = ../../../../../modules/juce_audio_basics/midi/juce_MidiMessage.h; sourceTree = SOURCE_ROOT; };
- C52BA5CFAC5D4DE4CEF2A51D /* juce_Path.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Path.h; path = ../../../../../modules/juce_graphics/geometry/juce_Path.h; sourceTree = SOURCE_ROOT; };
- C596B16782A9C4D0C6EB0BCA /* juce_PluginDirectoryScanner.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PluginDirectoryScanner.h; path = ../../../../../modules/juce_audio_processors/scanning/juce_PluginDirectoryScanner.h; sourceTree = SOURCE_ROOT; };
- C5AC27F3564EF36AAFFAD703 /* juce_NamedPipe.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_NamedPipe.cpp; path = ../../../../../modules/juce_core/network/juce_NamedPipe.cpp; sourceTree = SOURCE_ROOT; };
- C5EDD0AB18A362054E8FE283 /* juce_Desktop.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Desktop.cpp; path = ../../../../../modules/juce_gui_basics/components/juce_Desktop.cpp; sourceTree = SOURCE_ROOT; };
- C6144891191A6E1C95E21A25 /* juce_ConnectedChildProcess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ConnectedChildProcess.h; path = ../../../../../modules/juce_events/interprocess/juce_ConnectedChildProcess.h; sourceTree = SOURCE_ROOT; };
- C62BDB035997E471AE3096E7 /* juce_ChildProcess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ChildProcess.h; path = ../../../../../modules/juce_core/threads/juce_ChildProcess.h; sourceTree = SOURCE_ROOT; };
- C6438C01636AC02F3ACEF42D /* juce_CodeDocument.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CodeDocument.h; path = ../../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.h; sourceTree = SOURCE_ROOT; };
- C6A122F6B606753C30C30BD2 /* juce_DrumPadLEDProgram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DrumPadLEDProgram.cpp; path = ../../../../../modules/juce_blocks_basics/visualisers/juce_DrumPadLEDProgram.cpp; sourceTree = SOURCE_ROOT; };
- C6FFBF028815A3D4D197C1ED /* juce_AnimatedAppComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AnimatedAppComponent.cpp; path = ../../../../../modules/juce_gui_extra/misc/juce_AnimatedAppComponent.cpp; sourceTree = SOURCE_ROOT; };
- C720BCE4770D82EE19B5E304 /* juce_WeakReference.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_WeakReference.h; path = ../../../../../modules/juce_core/memory/juce_WeakReference.h; sourceTree = SOURCE_ROOT; };
- C75E0D3ABA4599B591806B6F /* pngrutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrutil.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngrutil.c; sourceTree = SOURCE_ROOT; };
- C79F1FCCE8950900DAE6BB50 /* juce_LagrangeInterpolator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_LagrangeInterpolator.cpp; path = ../../../../../modules/juce_audio_basics/effects/juce_LagrangeInterpolator.cpp; sourceTree = SOURCE_ROOT; };
- C7EE187163451061AE2A3153 /* juce_SparseSet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_SparseSet.h; path = ../../../../../modules/juce_core/containers/juce_SparseSet.h; sourceTree = SOURCE_ROOT; };
- C8F3A77AFEF173C097EB08CD /* juce_KeyPress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_KeyPress.h; path = ../../../../../modules/juce_gui_basics/keyboard/juce_KeyPress.h; sourceTree = SOURCE_ROOT; };
- C8FBA54671860CB3636D7A76 /* juce_audio_processors.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_audio_processors.mm; path = ../../JuceLibraryCode/juce_audio_processors.mm; sourceTree = SOURCE_ROOT; };
- C917343C99E5B7DD04F04FE3 /* juce_MidiDataConcatenator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MidiDataConcatenator.h; path = ../../../../../modules/juce_audio_devices/native/juce_MidiDataConcatenator.h; sourceTree = SOURCE_ROOT; };
- C91C155CE2FBFB917E03E114 /* jcparam.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcparam.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jcparam.c; sourceTree = SOURCE_ROOT; };
- C91DD17FBE7A7541E7787987 /* residue_44u.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = residue_44u.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_44u.h"; sourceTree = SOURCE_ROOT; };
- C9D366816AA16012A9FD56D0 /* juce_linux_JackAudio.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_JackAudio.cpp; path = ../../../../../modules/juce_audio_devices/native/juce_linux_JackAudio.cpp; sourceTree = SOURCE_ROOT; };
- C9EEE195FD4C2C90915219FE /* juce_PixelFormats.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PixelFormats.h; path = ../../../../../modules/juce_graphics/colour/juce_PixelFormats.h; sourceTree = SOURCE_ROOT; };
- C9F2ECCBC4868DE614C90303 /* juce_MouseInputSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MouseInputSource.h; path = ../../../../../modules/juce_gui_basics/mouse/juce_MouseInputSource.h; sourceTree = SOURCE_ROOT; };
- CA7EE521D0323E69E581633A /* juce_linux_ALSA.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_ALSA.cpp; path = ../../../../../modules/juce_audio_devices/native/juce_linux_ALSA.cpp; sourceTree = SOURCE_ROOT; };
- CAC8EEB08140F6C3189606EC /* juce_audio_devices.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_audio_devices.cpp; path = ../../../../../modules/juce_audio_devices/juce_audio_devices.cpp; sourceTree = SOURCE_ROOT; };
- CAF5049EC08F7E410AEDD901 /* juce_Random.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Random.h; path = ../../../../../modules/juce_core/maths/juce_Random.h; sourceTree = SOURCE_ROOT; };
- CAF65D1EFDDC93B47321327C /* framing.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = framing.c; path = ../../../../../modules/juce_audio_formats/codecs/oggvorbis/framing.c; sourceTree = SOURCE_ROOT; };
- CB01B5AD5F8CC26814C1FAE8 /* jdapistd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdapistd.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdapistd.c; sourceTree = SOURCE_ROOT; };
- CB6596103EE0B3579B8D2C3C /* juce_TooltipWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TooltipWindow.cpp; path = ../../../../../modules/juce_gui_basics/windows/juce_TooltipWindow.cpp; sourceTree = SOURCE_ROOT; };
- CBAB521E6B494AABD42A4B90 /* juce_MPEValue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MPEValue.h; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPEValue.h; sourceTree = SOURCE_ROOT; };
- CBDAC7F54358B29D622C7659 /* juce_ArrowButton.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ArrowButton.cpp; path = ../../../../../modules/juce_gui_basics/buttons/juce_ArrowButton.cpp; sourceTree = SOURCE_ROOT; };
- CC485BE41CFF25257214B6EA /* juce_ModalComponentManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ModalComponentManager.h; path = ../../../../../modules/juce_gui_basics/components/juce_ModalComponentManager.h; sourceTree = SOURCE_ROOT; };
- CC7A625D7B7F517BC85C5578 /* juce_blocks_basics.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_blocks_basics.cpp; path = ../../../../../modules/juce_blocks_basics/juce_blocks_basics.cpp; sourceTree = SOURCE_ROOT; };
- CCA01BB46B276DA072718679 /* juce_AbstractFifo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AbstractFifo.h; path = ../../../../../modules/juce_core/containers/juce_AbstractFifo.h; sourceTree = SOURCE_ROOT; };
- CCE2ADA7EF8B417B5D5EC92C /* juce_CharacterFunctions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CharacterFunctions.h; path = ../../../../../modules/juce_core/text/juce_CharacterFunctions.h; sourceTree = SOURCE_ROOT; };
- CD4633C9F9DA366C76E4B92A /* juce_mac_BluetoothMidiDevicePairingDialogue.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_BluetoothMidiDevicePairingDialogue.mm; path = ../../../../../modules/juce_audio_utils/native/juce_mac_BluetoothMidiDevicePairingDialogue.mm; sourceTree = SOURCE_ROOT; };
- CD768752C091A375ADC708A7 /* juce_SliderPropertyComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_SliderPropertyComponent.cpp; path = ../../../../../modules/juce_gui_basics/properties/juce_SliderPropertyComponent.cpp; sourceTree = SOURCE_ROOT; };
- CD875963C6F9C05BA11A4AC9 /* juce_RecentlyOpenedFilesList.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_RecentlyOpenedFilesList.cpp; path = ../../../../../modules/juce_gui_extra/misc/juce_RecentlyOpenedFilesList.cpp; sourceTree = SOURCE_ROOT; };
- CD9017D48D6C56C7D57426E8 /* juce_gui_basics.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_gui_basics.mm; path = ../../../../../modules/juce_gui_basics/juce_gui_basics.mm; sourceTree = SOURCE_ROOT; };
- CDA6D006DEE688324E2540AE /* juce_OpenGLFrameBuffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGLFrameBuffer.h; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLFrameBuffer.h; sourceTree = SOURCE_ROOT; };
- CDCF7C7420D481D45CDDBE85 /* highlevel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = highlevel.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/highlevel.h"; sourceTree = SOURCE_ROOT; };
- CE2F5008560ED985C0B8B5EA /* juce_GraphicsContext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_GraphicsContext.cpp; path = ../../../../../modules/juce_graphics/contexts/juce_GraphicsContext.cpp; sourceTree = SOURCE_ROOT; };
- CE38F82B1484802D0AD0E8BB /* transupp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transupp.h; path = ../../../../../modules/juce_graphics/image_formats/jpglib/transupp.h; sourceTree = SOURCE_ROOT; };
- CE9B22F2034E803714CB8433 /* info.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = info.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/info.c"; sourceTree = SOURCE_ROOT; };
- CEB10C78DD0C1F9970029F25 /* juce_PropertyComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PropertyComponent.h; path = ../../../../../modules/juce_gui_basics/properties/juce_PropertyComponent.h; sourceTree = SOURCE_ROOT; };
- CEB18F1BEA68F075D50BD6CD /* juce_InputStream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_InputStream.cpp; path = ../../../../../modules/juce_core/streams/juce_InputStream.cpp; sourceTree = SOURCE_ROOT; };
- CED32466B0978556B4914463 /* juce_OpenGLHelpers.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_OpenGLHelpers.cpp; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLHelpers.cpp; sourceTree = SOURCE_ROOT; };
- CEF6725F5E19BCCBFFE5EB68 /* juce_JPEGLoader.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_JPEGLoader.cpp; path = ../../../../../modules/juce_graphics/image_formats/juce_JPEGLoader.cpp; sourceTree = SOURCE_ROOT; };
- CF095321F298B5EBCC94F41C /* jcomapi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcomapi.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jcomapi.c; sourceTree = SOURCE_ROOT; };
- CF0A728B82AEB2D5931DB6A3 /* deflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = deflate.c; path = ../../../../../modules/juce_core/zip/zlib/deflate.c; sourceTree = SOURCE_ROOT; };
- CF632EB4950A71EC56190E3A /* juce_OpenGLImage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_OpenGLImage.cpp; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLImage.cpp; sourceTree = SOURCE_ROOT; };
- CF6716C0AD7BC8E630CEA8DD /* juce_win32_WASAPI.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_WASAPI.cpp; path = ../../../../../modules/juce_audio_devices/native/juce_win32_WASAPI.cpp; sourceTree = SOURCE_ROOT; };
- CFA6A67D8C7733249ED7FBC5 /* all.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = all.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/protected/all.h; sourceTree = SOURCE_ROOT; };
- CFC449D448A0844857CA526D /* juce_AudioProcessor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioProcessor.h; path = ../../../../../modules/juce_audio_processors/processors/juce_AudioProcessor.h; sourceTree = SOURCE_ROOT; };
- D02263425E49C20B4A8CD405 /* juce_audio_devices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_audio_devices.h; path = ../../../../../modules/juce_audio_devices/juce_audio_devices.h; sourceTree = SOURCE_ROOT; };
- D051EB3531C22746F7AF08E8 /* crc32.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = crc32.h; path = ../../../../../modules/juce_core/zip/zlib/crc32.h; sourceTree = SOURCE_ROOT; };
- D07C119AB16FE4E41B441B71 /* juce_ActionListener.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ActionListener.h; path = ../../../../../modules/juce_events/broadcasters/juce_ActionListener.h; sourceTree = SOURCE_ROOT; };
- D0F5CD629E1D7C466E87A7E6 /* juce_MouseCursor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MouseCursor.h; path = ../../../../../modules/juce_gui_basics/mouse/juce_MouseCursor.h; sourceTree = SOURCE_ROOT; };
- D1508B7542B04397ACF773B4 /* juce_linux_Messaging.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_Messaging.cpp; path = ../../../../../modules/juce_events/native/juce_linux_Messaging.cpp; sourceTree = SOURCE_ROOT; };
- D1831592A88B72CE43CB9130 /* juce_NSViewComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_NSViewComponent.h; path = ../../../../../modules/juce_gui_extra/embedding/juce_NSViewComponent.h; sourceTree = SOURCE_ROOT; };
- D18C4FDF34147BDD22C16EE2 /* juce_BlocksProtocolDefinitions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BlocksProtocolDefinitions.h; path = ../../../../../modules/juce_blocks_basics/protocol/juce_BlocksProtocolDefinitions.h; sourceTree = SOURCE_ROOT; };
- D1C39914B1CDF9FDCF40F03C /* juce_AnimatedAppComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AnimatedAppComponent.h; path = ../../../../../modules/juce_gui_extra/misc/juce_AnimatedAppComponent.h; sourceTree = SOURCE_ROOT; };
- D1E81EF119824692C769695E /* float.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = float.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/float.h; sourceTree = SOURCE_ROOT; };
- D202B1DF5EEDD627489E729D /* juce_ComponentAnimator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ComponentAnimator.h; path = ../../../../../modules/juce_gui_basics/layout/juce_ComponentAnimator.h; sourceTree = SOURCE_ROOT; };
- D2232FD5C2B1A361C7240C8D /* juce_OpenGLGraphicsContext.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGLGraphicsContext.h; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLGraphicsContext.h; sourceTree = SOURCE_ROOT; };
- D2785AE695E6FDF8147EEA2B /* zlib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = zlib.h; path = ../../../../../modules/juce_core/zip/zlib/zlib.h; sourceTree = SOURCE_ROOT; };
- D2A1AACEFAB1D922788314A6 /* juce_AsyncUpdater.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AsyncUpdater.cpp; path = ../../../../../modules/juce_events/broadcasters/juce_AsyncUpdater.cpp; sourceTree = SOURCE_ROOT; };
- D2B02C379123F7D621B82B6D /* window.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = window.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/window.h; sourceTree = SOURCE_ROOT; };
- D2CEF899F0C7DBD82CF4E7C7 /* juce_OpenGL_osx.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGL_osx.h; path = ../../../../../modules/juce_opengl/native/juce_OpenGL_osx.h; sourceTree = SOURCE_ROOT; };
- D2F9B4B64C205F3461541930 /* juce_AnimatedPositionBehaviours.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AnimatedPositionBehaviours.h; path = ../../../../../modules/juce_gui_basics/layout/juce_AnimatedPositionBehaviours.h; sourceTree = SOURCE_ROOT; };
- D3B2CF92BBBABE4AEEC691A3 /* juce_TextLayout.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TextLayout.h; path = ../../../../../modules/juce_graphics/fonts/juce_TextLayout.h; sourceTree = SOURCE_ROOT; };
- D3BB46A0AFF947844690B42F /* juce_ResizableBorderComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ResizableBorderComponent.h; path = ../../../../../modules/juce_gui_basics/layout/juce_ResizableBorderComponent.h; sourceTree = SOURCE_ROOT; };
- D403908B6B803FA4EF5BDBBF /* juce_ComboBox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ComboBox.cpp; path = ../../../../../modules/juce_gui_basics/widgets/juce_ComboBox.cpp; sourceTree = SOURCE_ROOT; };
- D49A5F16D99EF86770359BBD /* juce_MP3AudioFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MP3AudioFormat.cpp; path = ../../../../../modules/juce_audio_formats/codecs/juce_MP3AudioFormat.cpp; sourceTree = SOURCE_ROOT; };
- D4C6A262AAC6CD01030A56FC /* juce_mac_Windowing.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_Windowing.mm; path = ../../../../../modules/juce_gui_basics/native/juce_mac_Windowing.mm; sourceTree = SOURCE_ROOT; };
- D4DA6EE18C4F580FC8A220B8 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
- D4F1502ACF6109D1AA059455 /* fixed.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = fixed.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/fixed.h; sourceTree = SOURCE_ROOT; };
- D58546D794E5BEBD2F10412A /* juce_RuntimePermissions.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_RuntimePermissions.cpp; path = ../../../../../modules/juce_core/misc/juce_RuntimePermissions.cpp; sourceTree = SOURCE_ROOT; };
- D5EAF5AB7E64FA98BFCCA1A7 /* juce_FileInputSource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FileInputSource.cpp; path = ../../../../../modules/juce_core/streams/juce_FileInputSource.cpp; sourceTree = SOURCE_ROOT; };
- D62EA842B44315CFBCB24BCF /* juce_PropertyComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PropertyComponent.cpp; path = ../../../../../modules/juce_gui_basics/properties/juce_PropertyComponent.cpp; sourceTree = SOURCE_ROOT; };
- D67495EC058C6FDEB8C0FA6A /* juce_InterprocessConnectionServer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_InterprocessConnectionServer.cpp; path = ../../../../../modules/juce_events/interprocess/juce_InterprocessConnectionServer.cpp; sourceTree = SOURCE_ROOT; };
- D67E60A34C5191583B542922 /* juce_ImageFileFormat.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ImageFileFormat.cpp; path = ../../../../../modules/juce_graphics/images/juce_ImageFileFormat.cpp; sourceTree = SOURCE_ROOT; };
- D69A8DC089FEB04DDEE6E9AC /* md5.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = md5.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/md5.h; sourceTree = SOURCE_ROOT; };
- D6A0E899C3D79A7DF75035C2 /* juce_Random.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Random.cpp; path = ../../../../../modules/juce_core/maths/juce_Random.cpp; sourceTree = SOURCE_ROOT; };
- D71710BA7E52689EBFD91588 /* juce_android_WebBrowserComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_WebBrowserComponent.cpp; path = ../../../../../modules/juce_gui_extra/native/juce_android_WebBrowserComponent.cpp; sourceTree = SOURCE_ROOT; };
- D7303A04A2ED6BD0AB0D997D /* juce_mac_ClangBugWorkaround.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_mac_ClangBugWorkaround.h; path = ../../../../../modules/juce_core/native/juce_mac_ClangBugWorkaround.h; sourceTree = SOURCE_ROOT; };
- D73F9D1ECAA60F87E31F531C /* juce_MPEZone.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MPEZone.cpp; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPEZone.cpp; sourceTree = SOURCE_ROOT; };
- D7689628C83E6E2DB2341628 /* juce_AudioChannelSet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioChannelSet.h; path = ../../../../../modules/juce_audio_basics/buffers/juce_AudioChannelSet.h; sourceTree = SOURCE_ROOT; };
- D76F72244214BDDDB9C1D42A /* juce_linux_WebBrowserComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_WebBrowserComponent.cpp; path = ../../../../../modules/juce_gui_extra/native/juce_linux_WebBrowserComponent.cpp; sourceTree = SOURCE_ROOT; };
- D7AB3E868A90774E1FAFD51B /* juce_BasicNativeHeaders.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BasicNativeHeaders.h; path = ../../../../../modules/juce_core/native/juce_BasicNativeHeaders.h; sourceTree = SOURCE_ROOT; };
- D7BEC4451FBA09761F065B12 /* juce_LiveConstantEditor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_LiveConstantEditor.cpp; path = ../../../../../modules/juce_gui_extra/misc/juce_LiveConstantEditor.cpp; sourceTree = SOURCE_ROOT; };
- D7C00C099F40E38AD415AD56 /* mdct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = mdct.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/mdct.c"; sourceTree = SOURCE_ROOT; };
- D81B4D2BFB753FFD2D6F3AF0 /* juce_SliderPropertyComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_SliderPropertyComponent.h; path = ../../../../../modules/juce_gui_basics/properties/juce_SliderPropertyComponent.h; sourceTree = SOURCE_ROOT; };
- D81D661338436E213B25F8BF /* juce_MultiTouchMapper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MultiTouchMapper.h; path = ../../../../../modules/juce_gui_basics/native/juce_MultiTouchMapper.h; sourceTree = SOURCE_ROOT; };
- D848C25C312A0D62457C3730 /* juce_win32_AudioCDReader.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_AudioCDReader.cpp; path = ../../../../../modules/juce_audio_utils/native/juce_win32_AudioCDReader.cpp; sourceTree = SOURCE_ROOT; };
- D87D6545B471F09EF677902C /* juce_HighResolutionTimer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_HighResolutionTimer.cpp; path = ../../../../../modules/juce_core/threads/juce_HighResolutionTimer.cpp; sourceTree = SOURCE_ROOT; };
- D886F31628398C6418B6FBF1 /* juce_AudioPluginFormatManager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioPluginFormatManager.cpp; path = ../../../../../modules/juce_audio_processors/format/juce_AudioPluginFormatManager.cpp; sourceTree = SOURCE_ROOT; };
- D8A1D9C7F7B42C75598A385F /* juce_graphics.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_graphics.mm; path = ../../../../../modules/juce_graphics/juce_graphics.mm; sourceTree = SOURCE_ROOT; };
- D8A792DD4E2CD58BDAC9BBFF /* bitwise.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = bitwise.c; path = ../../../../../modules/juce_audio_formats/codecs/oggvorbis/bitwise.c; sourceTree = SOURCE_ROOT; };
- D8D329C0D501906C8E581010 /* juce_PerformanceCounter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PerformanceCounter.h; path = ../../../../../modules/juce_core/time/juce_PerformanceCounter.h; sourceTree = SOURCE_ROOT; };
- D9158BF72A9410721CF32E92 /* jquant2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jquant2.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jquant2.c; sourceTree = SOURCE_ROOT; };
- D93AEDCD9AA6F35A008C6B10 /* setup_22.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = setup_22.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_22.h"; sourceTree = SOURCE_ROOT; };
- D96E2FC22E02FEC19FAC3F75 /* lookup.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = lookup.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lookup.c"; sourceTree = SOURCE_ROOT; };
- D9BB56CF58E7421832148DEC /* juce_Path.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Path.cpp; path = ../../../../../modules/juce_graphics/geometry/juce_Path.cpp; sourceTree = SOURCE_ROOT; };
- D9C96A95268D1705E5EFD77F /* ordinals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ordinals.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/ordinals.h; sourceTree = SOURCE_ROOT; };
- D9F59FD82ECF3FDA305537AA /* jdmaster.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmaster.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdmaster.c; sourceTree = SOURCE_ROOT; };
- DA5417FE6CC33732AF61D3BA /* juce_ConcertinaPanel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ConcertinaPanel.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_ConcertinaPanel.cpp; sourceTree = SOURCE_ROOT; };
- DA6680F2E017C1451B8B3E09 /* cpu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = cpu.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c; sourceTree = SOURCE_ROOT; };
- DAFEB9CD6997FA5768A7DBA5 /* juce_Line.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Line.h; path = ../../../../../modules/juce_graphics/geometry/juce_Line.h; sourceTree = SOURCE_ROOT; };
- DB116314BC85AB60708C199F /* juce_OpenGLExtensions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGLExtensions.h; path = ../../../../../modules/juce_opengl/native/juce_OpenGLExtensions.h; sourceTree = SOURCE_ROOT; };
- DB9E8BE921489285C4B9ED99 /* psych_44.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = psych_44.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/psych_44.h"; sourceTree = SOURCE_ROOT; };
- DC20E4741780F1519099EA3C /* juce_ResamplingAudioSource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ResamplingAudioSource.cpp; path = ../../../../../modules/juce_audio_basics/sources/juce_ResamplingAudioSource.cpp; sourceTree = SOURCE_ROOT; };
- DC7062591F0E20788EDC379E /* juce_FileLogger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileLogger.h; path = ../../../../../modules/juce_core/logging/juce_FileLogger.h; sourceTree = SOURCE_ROOT; };
- DD1DAA35FC2A68363DBCDE50 /* juce_AudioFormatWriter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioFormatWriter.h; path = ../../../../../modules/juce_audio_formats/format/juce_AudioFormatWriter.h; sourceTree = SOURCE_ROOT; };
- DDA658B496D43C8BD1DF3410 /* juce_ToneGeneratorAudioSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ToneGeneratorAudioSource.h; path = ../../../../../modules/juce_audio_basics/sources/juce_ToneGeneratorAudioSource.h; sourceTree = SOURCE_ROOT; };
- DDB3B7DDB5B4F5D87CBA6C65 /* residue_44p51.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = residue_44p51.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_44p51.h"; sourceTree = SOURCE_ROOT; };
- DDE841F2D06B35620C95F7BD /* jfdctfst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctfst.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jfdctfst.c; sourceTree = SOURCE_ROOT; };
- DDF5573CB40B2B3D2F1DB780 /* juce_VSTInterface.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_VSTInterface.h; path = ../../../../../modules/juce_audio_processors/format_types/juce_VSTInterface.h; sourceTree = SOURCE_ROOT; };
- DE1AA6017CEF48540B7D5521 /* Main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = SOURCE_ROOT; };
- DE2F36F94C5AF00C806A885D /* setup_X.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = setup_X.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_X.h"; sourceTree = SOURCE_ROOT; };
- DE56F99143A2BEF2EC4E15A0 /* juce_Viewport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Viewport.h; path = ../../../../../modules/juce_gui_basics/layout/juce_Viewport.h; sourceTree = SOURCE_ROOT; };
- DE703F44A06F45D75C122234 /* juce_SoundPlayer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_SoundPlayer.cpp; path = ../../../../../modules/juce_audio_utils/players/juce_SoundPlayer.cpp; sourceTree = SOURCE_ROOT; };
- DE9704A65773501DE347230E /* juce_Base64.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Base64.h; path = ../../../../../modules/juce_core/text/juce_Base64.h; sourceTree = SOURCE_ROOT; };
- DEB1AA246A3B2804C43992C8 /* juce_SVGParser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_SVGParser.cpp; path = ../../../../../modules/juce_gui_basics/drawables/juce_SVGParser.cpp; sourceTree = SOURCE_ROOT; };
- DEBEFE952C92EE38B62CCBA0 /* pngwtran.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwtran.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngwtran.c; sourceTree = SOURCE_ROOT; };
- DED4D4557567F40DCDA8340A /* juce_ApplicationCommandManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ApplicationCommandManager.h; path = ../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandManager.h; sourceTree = SOURCE_ROOT; };
- DEE463950B10373AB5BF1415 /* juce_OpenGLHelpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGLHelpers.h; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLHelpers.h; sourceTree = SOURCE_ROOT; };
- DEE913D46DAAD878430264D6 /* bitreader.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = bitreader.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/bitreader.c; sourceTree = SOURCE_ROOT; };
- DF5C47F2732316263F27F35B /* juce_FilenameComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FilenameComponent.h; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_FilenameComponent.h; sourceTree = SOURCE_ROOT; };
- DFA0BD689C1C350DD66B8F10 /* juce_InterprocessConnection.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_InterprocessConnection.cpp; path = ../../../../../modules/juce_events/interprocess/juce_InterprocessConnection.cpp; sourceTree = SOURCE_ROOT; };
- DFD83A7CDABE2CC9D9D29FEE /* stream_encoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = stream_encoder.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/protected/stream_encoder.h; sourceTree = SOURCE_ROOT; };
- E00E9055E0D461FBA65415F4 /* jmemsys.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jmemsys.h; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jmemsys.h; sourceTree = SOURCE_ROOT; };
- E08C436C85606AA1432C5C24 /* juce_OutputStream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OutputStream.h; path = ../../../../../modules/juce_core/streams/juce_OutputStream.h; sourceTree = SOURCE_ROOT; };
- E0A6645BF35A873306104E19 /* juce_Array.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Array.h; path = ../../../../../modules/juce_core/containers/juce_Array.h; sourceTree = SOURCE_ROOT; };
- E0CD810D85D163FCA2E05D6B /* juce_UndoableAction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_UndoableAction.h; path = ../../../../../modules/juce_data_structures/undomanager/juce_UndoableAction.h; sourceTree = SOURCE_ROOT; };
- E1604416242DA5613762B851 /* juce_LADSPAPluginFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LADSPAPluginFormat.h; path = ../../../../../modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.h; sourceTree = SOURCE_ROOT; };
- E1C8BA4CF79BCC3B0E758A9F /* juce_LowLevelGraphicsContext.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LowLevelGraphicsContext.h; path = ../../../../../modules/juce_graphics/contexts/juce_LowLevelGraphicsContext.h; sourceTree = SOURCE_ROOT; };
- E20191F0BE305DA483AE955F /* juce_AudioFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioFormat.h; path = ../../../../../modules/juce_audio_formats/format/juce_AudioFormat.h; sourceTree = SOURCE_ROOT; };
- E222435250E8A57C88E441F8 /* juce_ComponentDragger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ComponentDragger.h; path = ../../../../../modules/juce_gui_basics/mouse/juce_ComponentDragger.h; sourceTree = SOURCE_ROOT; };
- E23D59AE5843A019D0B20D61 /* juce_MPESynthesiserBase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MPESynthesiserBase.h; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPESynthesiserBase.h; sourceTree = SOURCE_ROOT; };
- E24521953703852377A32D70 /* juce_ToolbarItemComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ToolbarItemComponent.cpp; path = ../../../../../modules/juce_gui_basics/widgets/juce_ToolbarItemComponent.cpp; sourceTree = SOURCE_ROOT; };
- E25FE62CDBD305515BE0E974 /* juce_AudioFormatReader.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioFormatReader.cpp; path = ../../../../../modules/juce_audio_formats/format/juce_AudioFormatReader.cpp; sourceTree = SOURCE_ROOT; };
- E2760CFD55AAE533FAD166FD /* juce_mac_WebBrowserComponent.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_WebBrowserComponent.mm; path = ../../../../../modules/juce_gui_extra/native/juce_mac_WebBrowserComponent.mm; sourceTree = SOURCE_ROOT; };
- E2778AA90308DEB0DDB6C0DB /* juce_Socket.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Socket.h; path = ../../../../../modules/juce_core/network/juce_Socket.h; sourceTree = SOURCE_ROOT; };
- E280D05067385BEC1E3B4766 /* juce_CharPointer_UTF8.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CharPointer_UTF8.h; path = ../../../../../modules/juce_core/text/juce_CharPointer_UTF8.h; sourceTree = SOURCE_ROOT; };
- E2CD239EB674A987631C1F95 /* juce_AnimatedPosition.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AnimatedPosition.h; path = ../../../../../modules/juce_gui_basics/layout/juce_AnimatedPosition.h; sourceTree = SOURCE_ROOT; };
- E2D85F080ACAE32DED909D5C /* juce_ResizableCornerComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ResizableCornerComponent.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_ResizableCornerComponent.cpp; sourceTree = SOURCE_ROOT; };
- E30A6EED52F978044DBCB34C /* juce_BubbleMessageComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_BubbleMessageComponent.cpp; path = ../../../../../modules/juce_gui_extra/misc/juce_BubbleMessageComponent.cpp; sourceTree = SOURCE_ROOT; };
- E30FA02A405F056C289608F5 /* juce_RelativeTime.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_RelativeTime.h; path = ../../../../../modules/juce_core/time/juce_RelativeTime.h; sourceTree = SOURCE_ROOT; };
- E3455619FB6BC525C9407A6D /* juce_LittleFootRemoteHeap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LittleFootRemoteHeap.h; path = ../../../../../modules/juce_blocks_basics/littlefoot/juce_LittleFootRemoteHeap.h; sourceTree = SOURCE_ROOT; };
- E39BFCA09C446A2AD541D66C /* juce_ComponentListener.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ComponentListener.cpp; path = ../../../../../modules/juce_gui_basics/components/juce_ComponentListener.cpp; sourceTree = SOURCE_ROOT; };
- E40C81964A35DCBA5C07A708 /* jdcolor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdcolor.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdcolor.c; sourceTree = SOURCE_ROOT; };
- E4223D79CA646F0E046E43B1 /* juce_AudioThumbnailCache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioThumbnailCache.h; path = ../../../../../modules/juce_audio_utils/gui/juce_AudioThumbnailCache.h; sourceTree = SOURCE_ROOT; };
- E48849E0B20A2D2B2391BD36 /* juce_linux_Threads.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_Threads.cpp; path = ../../../../../modules/juce_core/native/juce_linux_Threads.cpp; sourceTree = SOURCE_ROOT; };
- E4A7590FF79E8EAE3286C76F /* juce_FileFilter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileFilter.h; path = ../../../../../modules/juce_core/files/juce_FileFilter.h; sourceTree = SOURCE_ROOT; };
- E4E4B644F52739096EC9ED59 /* juce_mac_FileChooser.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_FileChooser.mm; path = ../../../../../modules/juce_gui_basics/native/juce_mac_FileChooser.mm; sourceTree = SOURCE_ROOT; };
- E4FE73FA8F2ADD14B7E7812E /* juce_DrawableRectangle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DrawableRectangle.h; path = ../../../../../modules/juce_gui_basics/drawables/juce_DrawableRectangle.h; sourceTree = SOURCE_ROOT; };
- E51819C6E2E6881C993A9C16 /* lookup_data.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = lookup_data.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lookup_data.h"; sourceTree = SOURCE_ROOT; };
- E5578FB0E512495116B71F3A /* juce_Time.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Time.h; path = ../../../../../modules/juce_core/time/juce_Time.h; sourceTree = SOURCE_ROOT; };
- E55BD37DA91B20BB60D8BC5B /* juce_android_JNIHelpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_android_JNIHelpers.h; path = ../../../../../modules/juce_core/native/juce_android_JNIHelpers.h; sourceTree = SOURCE_ROOT; };
- E5B77FA0E883FC22ED9A07E0 /* os.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = os.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/os.h"; sourceTree = SOURCE_ROOT; };
- E5F14F3C17FA5BC721CF06CE /* juce_ios_Windowing.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_ios_Windowing.mm; path = ../../../../../modules/juce_gui_basics/native/juce_ios_Windowing.mm; sourceTree = SOURCE_ROOT; };
- E5F243A42AFB91068026ADA4 /* juce_BufferingAudioSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BufferingAudioSource.h; path = ../../../../../modules/juce_audio_basics/sources/juce_BufferingAudioSource.h; sourceTree = SOURCE_ROOT; };
- E61A0BF68D610DA6AB86F94D /* jctrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jctrans.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jctrans.c; sourceTree = SOURCE_ROOT; };
- E61D74DA18777D3ED9B604B6 /* juce_CriticalSection.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CriticalSection.h; path = ../../../../../modules/juce_core/threads/juce_CriticalSection.h; sourceTree = SOURCE_ROOT; };
- E6335D36399077078BC78ECC /* juce_DragAndDropContainer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_DragAndDropContainer.h; path = ../../../../../modules/juce_gui_basics/mouse/juce_DragAndDropContainer.h; sourceTree = SOURCE_ROOT; };
- E6D09BB9A4D7592AA53FA63C /* juce_gui_basics.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_gui_basics.mm; path = ../../JuceLibraryCode/juce_gui_basics.mm; sourceTree = SOURCE_ROOT; };
- E758FAA869708918584DA19D /* juce_GIFLoader.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_GIFLoader.cpp; path = ../../../../../modules/juce_graphics/image_formats/juce_GIFLoader.cpp; sourceTree = SOURCE_ROOT; };
- E77ED2BF4E691CDA0BDF67E5 /* jpegint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jpegint.h; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jpegint.h; sourceTree = SOURCE_ROOT; };
- E799718167E8643572309303 /* juce_HashMap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_HashMap.h; path = ../../../../../modules/juce_core/containers/juce_HashMap.h; sourceTree = SOURCE_ROOT; };
- E7AAC5B8A3584327D2A77AE3 /* jidctint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctint.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jidctint.c; sourceTree = SOURCE_ROOT; };
- E8345B1296211CB1845D88C6 /* jcphuff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcphuff.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jcphuff.c; sourceTree = SOURCE_ROOT; };
- E844B59EADE8FBB9804FCC9F /* juce_PathIterator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_PathIterator.cpp; path = ../../../../../modules/juce_graphics/geometry/juce_PathIterator.cpp; sourceTree = SOURCE_ROOT; };
- E87BA58A31E5AF84D1819E1C /* compat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = compat.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/compat.h; sourceTree = SOURCE_ROOT; };
- E8A878C2CE1A7EB1EEF6B92E /* juce_LookAndFeel_V3.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_LookAndFeel_V3.cpp; path = ../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V3.cpp; sourceTree = SOURCE_ROOT; };
- E912FFD60443431073F49E05 /* juce_MultiDocumentPanel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MultiDocumentPanel.h; path = ../../../../../modules/juce_gui_basics/layout/juce_MultiDocumentPanel.h; sourceTree = SOURCE_ROOT; };
- E92CA7282B750596908F685C /* libpng_readme.txt */ = {isa = PBXFileReference; lastKnownFileType = text.txt; name = libpng_readme.txt; path = ../../../../../modules/juce_graphics/image_formats/pnglib/libpng_readme.txt; sourceTree = SOURCE_ROOT; };
- E93C91661F22E59660A807AE /* juce_RectangleList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_RectangleList.h; path = ../../../../../modules/juce_graphics/geometry/juce_RectangleList.h; sourceTree = SOURCE_ROOT; };
- E94CBCD3B3C4F726DDC7145E /* residue_8.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = residue_8.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_8.h"; sourceTree = SOURCE_ROOT; };
- E9AB8309552BD30792B23FCC /* juce_BufferedInputStream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_BufferedInputStream.h; path = ../../../../../modules/juce_core/streams/juce_BufferedInputStream.h; sourceTree = SOURCE_ROOT; };
- E9DEFB9A762600C429F59B02 /* juce_OpenGLRenderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_OpenGLRenderer.h; path = ../../../../../modules/juce_opengl/opengl/juce_OpenGLRenderer.h; sourceTree = SOURCE_ROOT; };
- EA01768CDAAD4D13D769C371 /* juce_FileOutputStream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileOutputStream.h; path = ../../../../../modules/juce_core/files/juce_FileOutputStream.h; sourceTree = SOURCE_ROOT; };
- EA1AA20402977B302BF5D363 /* juce_MouseInputSource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MouseInputSource.cpp; path = ../../../../../modules/juce_gui_basics/mouse/juce_MouseInputSource.cpp; sourceTree = SOURCE_ROOT; };
- EA21A9139BBAE2238DBB6920 /* jdcoefct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdcoefct.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jdcoefct.c; sourceTree = SOURCE_ROOT; };
- EA2B74AE3EBD1A8CE6BBE889 /* jidctred.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctred.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jidctred.c; sourceTree = SOURCE_ROOT; };
- EA5D4A0F009B78BF824D7226 /* juce_Time.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Time.cpp; path = ../../../../../modules/juce_core/time/juce_Time.cpp; sourceTree = SOURCE_ROOT; };
- EA7F1EB1FFEFB4937039BFDB /* endswap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = endswap.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/endswap.h; sourceTree = SOURCE_ROOT; };
- EAB8F9E9C69FDA9046914C57 /* juce_GZIPDecompressorInputStream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_GZIPDecompressorInputStream.h; path = ../../../../../modules/juce_core/zip/juce_GZIPDecompressorInputStream.h; sourceTree = SOURCE_ROOT; };
- EACA2C832850D2A048AF852C /* juce_ThreadLocalValue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ThreadLocalValue.h; path = ../../../../../modules/juce_core/threads/juce_ThreadLocalValue.h; sourceTree = SOURCE_ROOT; };
- EAEA770719580DF72D030505 /* juce_MouseListener.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MouseListener.h; path = ../../../../../modules/juce_gui_basics/mouse/juce_MouseListener.h; sourceTree = SOURCE_ROOT; };
- EB6CAC1FED2456D7379245AE /* format.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = format.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/format.h; sourceTree = SOURCE_ROOT; };
- EBB04C1A8397DA42E15EFB00 /* juce_MidiMessage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MidiMessage.cpp; path = ../../../../../modules/juce_audio_basics/midi/juce_MidiMessage.cpp; sourceTree = SOURCE_ROOT; };
- EBF51AE520FC44EE056995D9 /* juce_LEDGrid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LEDGrid.h; path = ../../../../../modules/juce_blocks_basics/blocks/juce_LEDGrid.h; sourceTree = SOURCE_ROOT; };
- EC7D9B630F5FB46258974133 /* juce_android_FileChooser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_android_FileChooser.cpp; path = ../../../../../modules/juce_gui_basics/native/juce_android_FileChooser.cpp; sourceTree = SOURCE_ROOT; };
- EC98B82ADF1187D4060FC49F /* juce_opengl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_opengl.mm; path = ../../../../../modules/juce_opengl/juce_opengl.mm; sourceTree = SOURCE_ROOT; };
- EC9D1EEB0DCF8551C0E70916 /* juce_AudioThumbnail.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioThumbnail.cpp; path = ../../../../../modules/juce_audio_utils/gui/juce_AudioThumbnail.cpp; sourceTree = SOURCE_ROOT; };
- ECB315B1E096D167076B058A /* Flac Licence.txt */ = {isa = PBXFileReference; lastKnownFileType = text.txt; name = "Flac Licence.txt"; path = "../../../../../modules/juce_audio_formats/codecs/flac/Flac Licence.txt"; sourceTree = SOURCE_ROOT; };
- ED351CFC37C81F20B6D6B01E /* juce_ZipFile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ZipFile.cpp; path = ../../../../../modules/juce_core/zip/juce_ZipFile.cpp; sourceTree = SOURCE_ROOT; };
- EE0075DEF550FBC64F7D8B9E /* juce_ListenerList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ListenerList.h; path = ../../../../../modules/juce_core/containers/juce_ListenerList.h; sourceTree = SOURCE_ROOT; };
- EE16A3FB712E9DFB3EE0A875 /* juce_CustomTypeface.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CustomTypeface.h; path = ../../../../../modules/juce_graphics/fonts/juce_CustomTypeface.h; sourceTree = SOURCE_ROOT; };
- EEC74F1DE224D270462503B0 /* juce_TooltipClient.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_TooltipClient.h; path = ../../../../../modules/juce_gui_basics/mouse/juce_TooltipClient.h; sourceTree = SOURCE_ROOT; };
- EECE5BDB038D0EBEAF36303E /* juce_Decibels.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Decibels.h; path = ../../../../../modules/juce_audio_basics/effects/juce_Decibels.h; sourceTree = SOURCE_ROOT; };
- EEE8C92FC3679E29251522E3 /* juce_LinearSmoothedValue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LinearSmoothedValue.h; path = ../../../../../modules/juce_audio_basics/effects/juce_LinearSmoothedValue.h; sourceTree = SOURCE_ROOT; };
- EEF550D385BC7AEA1172FE5A /* juce_Result.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Result.h; path = ../../../../../modules/juce_core/misc/juce_Result.h; sourceTree = SOURCE_ROOT; };
- EF02685FDE72675F4B750650 /* juce_gui_extra.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_gui_extra.mm; path = ../../JuceLibraryCode/juce_gui_extra.mm; sourceTree = SOURCE_ROOT; };
- EF66F9A77305AAF55D3A8C7C /* juce_ByteOrder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ByteOrder.h; path = ../../../../../modules/juce_core/memory/juce_ByteOrder.h; sourceTree = SOURCE_ROOT; };
- EFD32E4A4A81815891CF54FC /* juce_URL.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_URL.h; path = ../../../../../modules/juce_core/network/juce_URL.h; sourceTree = SOURCE_ROOT; };
- F053B1F18F39980BB1E8F98A /* juce_BubbleComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_BubbleComponent.cpp; path = ../../../../../modules/juce_gui_basics/misc/juce_BubbleComponent.cpp; sourceTree = SOURCE_ROOT; };
- F075BDDDD4F7DBB900BB457B /* juce_Justification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Justification.h; path = ../../../../../modules/juce_graphics/placement/juce_Justification.h; sourceTree = SOURCE_ROOT; };
- F0BA9CA48CC49E14CB65B10A /* bitmath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = bitmath.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/bitmath.c; sourceTree = SOURCE_ROOT; };
- F1444750AF2DEB43BE2E1658 /* juce_Topology.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Topology.h; path = ../../../../../modules/juce_blocks_basics/topology/juce_Topology.h; sourceTree = SOURCE_ROOT; };
- F18CEC0613E333793CE487D1 /* juce_RelativePoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_RelativePoint.h; path = ../../../../../modules/juce_gui_basics/positioning/juce_RelativePoint.h; sourceTree = SOURCE_ROOT; };
- F1CB294C66C69F817C9CDC1B /* pngwrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwrite.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngwrite.c; sourceTree = SOURCE_ROOT; };
- F2070BC848C05F66E134D7E4 /* juce_mac_NSViewComponentPeer.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_NSViewComponentPeer.mm; path = ../../../../../modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm; sourceTree = SOURCE_ROOT; };
- F21AB2745631CDDDEEA35B1F /* juce_win32_Registry.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_Registry.cpp; path = ../../../../../modules/juce_core/native/juce_win32_Registry.cpp; sourceTree = SOURCE_ROOT; };
- F295C837D985F94DE7AB4A7E /* juce_MidiMessageSequence.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MidiMessageSequence.h; path = ../../../../../modules/juce_audio_basics/midi/juce_MidiMessageSequence.h; sourceTree = SOURCE_ROOT; };
- F2CFFDE197B95A56FD3D2794 /* juce_audio_formats.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_audio_formats.h; path = ../../../../../modules/juce_audio_formats/juce_audio_formats.h; sourceTree = SOURCE_ROOT; };
- F312C15C8FF357815A5D852D /* juce_FileBasedDocument.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FileBasedDocument.cpp; path = ../../../../../modules/juce_gui_extra/documents/juce_FileBasedDocument.cpp; sourceTree = SOURCE_ROOT; };
- F392A87E5AE1D4D390FCF488 /* juce_ProgressBar.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ProgressBar.h; path = ../../../../../modules/juce_gui_basics/widgets/juce_ProgressBar.h; sourceTree = SOURCE_ROOT; };
- F3E5F7DB01292CFF33EE3971 /* juce_ElementComparator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ElementComparator.h; path = ../../../../../modules/juce_core/containers/juce_ElementComparator.h; sourceTree = SOURCE_ROOT; };
- F40688B881E38D0CEC413A0A /* float.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = float.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/float.c; sourceTree = SOURCE_ROOT; };
- F4259584E00B36526D5CFB0A /* stream_decoder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = stream_decoder.c; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/stream_decoder.c; sourceTree = SOURCE_ROOT; };
- F49D80F0D4131FFEA98F85BC /* juce_ImagePreviewComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ImagePreviewComponent.cpp; path = ../../../../../modules/juce_gui_basics/filebrowser/juce_ImagePreviewComponent.cpp; sourceTree = SOURCE_ROOT; };
- F4E74A5B357BA4EA4CEC0F13 /* jddctmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jddctmgr.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jddctmgr.c; sourceTree = SOURCE_ROOT; };
- F5668D6CDFED46BDB46C2E75 /* juce_KeyPressMappingSet.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_KeyPressMappingSet.cpp; path = ../../../../../modules/juce_gui_basics/commands/juce_KeyPressMappingSet.cpp; sourceTree = SOURCE_ROOT; };
- F581127924048FE75A58A428 /* juce_TabbedButtonBar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_TabbedButtonBar.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_TabbedButtonBar.cpp; sourceTree = SOURCE_ROOT; };
- F597712CD0CFE5D1F1145B83 /* juce_ChannelRemappingAudioSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ChannelRemappingAudioSource.h; path = ../../../../../modules/juce_audio_basics/sources/juce_ChannelRemappingAudioSource.h; sourceTree = SOURCE_ROOT; };
- F59BA79A83B6BAD01FDA01DE /* juce_CatmullRomInterpolator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_CatmullRomInterpolator.h; path = ../../../../../modules/juce_audio_basics/effects/juce_CatmullRomInterpolator.h; sourceTree = SOURCE_ROOT; };
- F5AA13686E3E014FA127B57E /* jmorecfg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jmorecfg.h; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jmorecfg.h; sourceTree = SOURCE_ROOT; };
- F5B9A3BC6E33C98DFD9C9246 /* juce_ChannelRemappingAudioSource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ChannelRemappingAudioSource.cpp; path = ../../../../../modules/juce_audio_basics/sources/juce_ChannelRemappingAudioSource.cpp; sourceTree = SOURCE_ROOT; };
- F5CCD78E2928A6021051AEE3 /* jcdctmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcdctmgr.c; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jcdctmgr.c; sourceTree = SOURCE_ROOT; };
- F6EB5AF7554635EB441568FE /* juce_FillType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FillType.h; path = ../../../../../modules/juce_graphics/colour/juce_FillType.h; sourceTree = SOURCE_ROOT; };
- F6F326524DED75455C217520 /* juce_LinkedListPointer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LinkedListPointer.h; path = ../../../../../modules/juce_core/containers/juce_LinkedListPointer.h; sourceTree = SOURCE_ROOT; };
- F72B09FDE33658D77B49C7A6 /* juce_ImageComponent.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ImageComponent.cpp; path = ../../../../../modules/juce_gui_basics/widgets/juce_ImageComponent.cpp; sourceTree = SOURCE_ROOT; };
- F75524422C20C513FC73502B /* juce_MixerAudioSource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MixerAudioSource.cpp; path = ../../../../../modules/juce_audio_basics/sources/juce_MixerAudioSource.cpp; sourceTree = SOURCE_ROOT; };
- F75CCB348B732B0AFEE4B4FC /* juce_linux_Midi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_Midi.cpp; path = ../../../../../modules/juce_audio_devices/native/juce_linux_Midi.cpp; sourceTree = SOURCE_ROOT; };
- F77E277347DD30D380C5A3C8 /* juce_AudioCDBurner.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioCDBurner.h; path = ../../../../../modules/juce_audio_utils/audio_cd/juce_AudioCDBurner.h; sourceTree = SOURCE_ROOT; };
- F78A0ACB1EADC8578B82664C /* juce_AudioIODevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioIODevice.h; path = ../../../../../modules/juce_audio_devices/audio_io/juce_AudioIODevice.h; sourceTree = SOURCE_ROOT; };
- F7E2CB260B70E401BF91E236 /* juce_LittleFootRunner.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_LittleFootRunner.h; path = ../../../../../modules/juce_blocks_basics/littlefoot/juce_LittleFootRunner.h; sourceTree = SOURCE_ROOT; };
- F80A4EA6BE0D985876B9D4F4 /* juce_win32_SystemTrayIcon.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_SystemTrayIcon.cpp; path = ../../../../../modules/juce_gui_extra/native/juce_win32_SystemTrayIcon.cpp; sourceTree = SOURCE_ROOT; };
- F83D0DB57AB2C58AA5FFCE39 /* juce_ComponentBuilder.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ComponentBuilder.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_ComponentBuilder.cpp; sourceTree = SOURCE_ROOT; };
- F8612CE49A62B80AD1612B78 /* juce_MemoryBlock.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MemoryBlock.cpp; path = ../../../../../modules/juce_core/memory/juce_MemoryBlock.cpp; sourceTree = SOURCE_ROOT; };
- F86729C1E690C3B06646ECAE /* juce_AudioTransportSource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_AudioTransportSource.cpp; path = ../../../../../modules/juce_audio_devices/sources/juce_AudioTransportSource.cpp; sourceTree = SOURCE_ROOT; };
- F879359E8211BD2E1CFE5FE4 /* juce_SystemAudioVolume.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_SystemAudioVolume.h; path = ../../../../../modules/juce_audio_devices/audio_io/juce_SystemAudioVolume.h; sourceTree = SOURCE_ROOT; };
- F8B25FD2FE72F0862EDA70AC /* jchuff.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jchuff.h; path = ../../../../../modules/juce_graphics/image_formats/jpglib/jchuff.h; sourceTree = SOURCE_ROOT; };
- F8B3AB36958E31EB6BDD2ED3 /* AppConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = SOURCE_ROOT; };
- F9AB49CA88C89C26093CB1B6 /* stream_encoder_framing.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = stream_encoder_framing.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/stream_encoder_framing.h; sourceTree = SOURCE_ROOT; };
- F9AF151A90E61714965D67D6 /* juce_ChildProcess.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ChildProcess.cpp; path = ../../../../../modules/juce_core/threads/juce_ChildProcess.cpp; sourceTree = SOURCE_ROOT; };
- F9D767E4012A0A1ADD83A533 /* pngpread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngpread.c; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pngpread.c; sourceTree = SOURCE_ROOT; };
- FA06D31009B123A360853CCB /* juce_ComponentMovementWatcher.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ComponentMovementWatcher.h; path = ../../../../../modules/juce_gui_basics/layout/juce_ComponentMovementWatcher.h; sourceTree = SOURCE_ROOT; };
- FA1ADE34C41760B0FBCCDE64 /* juce_MPEZoneLayout.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MPEZoneLayout.cpp; path = ../../../../../modules/juce_audio_basics/mpe/juce_MPEZoneLayout.cpp; sourceTree = SOURCE_ROOT; };
- FA489194866ACCE37578D4E8 /* juce_VST3Headers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_VST3Headers.h; path = ../../../../../modules/juce_audio_processors/format_types/juce_VST3Headers.h; sourceTree = SOURCE_ROOT; };
- FA66CC9414AAEA72869BE969 /* juce_Synthesiser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Synthesiser.h; path = ../../../../../modules/juce_audio_basics/synthesisers/juce_Synthesiser.h; sourceTree = SOURCE_ROOT; };
- FA67F7DC71898AC7AD4F0284 /* juce_win32_HiddenMessageWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_win32_HiddenMessageWindow.h; path = ../../../../../modules/juce_events/native/juce_win32_HiddenMessageWindow.h; sourceTree = SOURCE_ROOT; };
- FAB83E6CF91D59901CD87D9F /* juce_Component.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Component.cpp; path = ../../../../../modules/juce_gui_basics/components/juce_Component.cpp; sourceTree = SOURCE_ROOT; };
- FAF382A2237B019DC61920B4 /* juce_DeletedAtShutdown.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DeletedAtShutdown.cpp; path = ../../../../../modules/juce_events/messages/juce_DeletedAtShutdown.cpp; sourceTree = SOURCE_ROOT; };
- FAF5B61706BC2CD2EB68B550 /* juce_Drawable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_Drawable.h; path = ../../../../../modules/juce_gui_basics/drawables/juce_Drawable.h; sourceTree = SOURCE_ROOT; };
- FB6917E81414FA81F7442188 /* juce_FlexBox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_FlexBox.cpp; path = ../../../../../modules/juce_gui_basics/layout/juce_FlexBox.cpp; sourceTree = SOURCE_ROOT; };
- FB87C64D7D673B76E4B5209D /* juce_ApplicationCommandTarget.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_ApplicationCommandTarget.cpp; path = ../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandTarget.cpp; sourceTree = SOURCE_ROOT; };
- FBA7E37B32790A96A06D3D71 /* juce_EdgeTable.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_EdgeTable.cpp; path = ../../../../../modules/juce_graphics/geometry/juce_EdgeTable.cpp; sourceTree = SOURCE_ROOT; };
- FBB15A363BAC741113987D32 /* juce_NamedValueSet.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_NamedValueSet.cpp; path = ../../../../../modules/juce_core/containers/juce_NamedValueSet.cpp; sourceTree = SOURCE_ROOT; };
- FBEB137F69B8A261A4B64760 /* juce_UnitTest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_UnitTest.h; path = ../../../../../modules/juce_core/unit_tests/juce_UnitTest.h; sourceTree = SOURCE_ROOT; };
- FBEF609D497831012E3D8829 /* juce_IIRFilterAudioSource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_IIRFilterAudioSource.cpp; path = ../../../../../modules/juce_audio_basics/sources/juce_IIRFilterAudioSource.cpp; sourceTree = SOURCE_ROOT; };
- FC25CF1063C88216E3462839 /* juce_mac_MainMenu.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_mac_MainMenu.mm; path = ../../../../../modules/juce_gui_basics/native/juce_mac_MainMenu.mm; sourceTree = SOURCE_ROOT; };
- FC70FA0EABE4EDF87260618B /* juce_ShapeButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_ShapeButton.h; path = ../../../../../modules/juce_gui_basics/buttons/juce_ShapeButton.h; sourceTree = SOURCE_ROOT; };
- FC7AD77D53883AA7C906A6A3 /* juce_Font.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_Font.cpp; path = ../../../../../modules/juce_graphics/fonts/juce_Font.cpp; sourceTree = SOURCE_ROOT; };
- FCC43FCAF92C64F580AA70C7 /* juce_linux_Files.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_linux_Files.cpp; path = ../../../../../modules/juce_core/native/juce_linux_Files.cpp; sourceTree = SOURCE_ROOT; };
- FCEA59DF5F16B5921093D94E /* juce_gui_extra.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_gui_extra.h; path = ../../../../../modules/juce_gui_extra/juce_gui_extra.h; sourceTree = SOURCE_ROOT; };
- FD227C7F5CE97D9F54705672 /* lookup.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = lookup.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lookup.h"; sourceTree = SOURCE_ROOT; };
- FD2C8067AE30B6CEE4CE988F /* juce_DrawableShape.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DrawableShape.cpp; path = ../../../../../modules/juce_gui_basics/drawables/juce_DrawableShape.cpp; sourceTree = SOURCE_ROOT; };
- FD456DC8A0AA86BA70897D1A /* juce_FileDragAndDropTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_FileDragAndDropTarget.h; path = ../../../../../modules/juce_gui_basics/mouse/juce_FileDragAndDropTarget.h; sourceTree = SOURCE_ROOT; };
- FDB3638BA6DA63B26AB72151 /* juce_AudioDataConverters.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_AudioDataConverters.h; path = ../../../../../modules/juce_audio_basics/buffers/juce_AudioDataConverters.h; sourceTree = SOURCE_ROOT; };
- FE6B0496C0CC7E25BCB6A277 /* pnginfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pnginfo.h; path = ../../../../../modules/juce_graphics/image_formats/pnglib/pnginfo.h; sourceTree = SOURCE_ROOT; };
- FE9F36798B9C61600626D1F4 /* juce_WaitableEvent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_WaitableEvent.h; path = ../../../../../modules/juce_core/threads/juce_WaitableEvent.h; sourceTree = SOURCE_ROOT; };
- FEB6A996354866F8AE7221C3 /* juce_win32_ASIO.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_win32_ASIO.cpp; path = ../../../../../modules/juce_audio_devices/native/juce_win32_ASIO.cpp; sourceTree = SOURCE_ROOT; };
- FEF8D1DEC14F53F54985AB63 /* metadata.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = metadata.h; path = ../../../../../modules/juce_audio_formats/codecs/flac/metadata.h; sourceTree = SOURCE_ROOT; };
- FF00E084ABFC561A9CDFF2CB /* juce_MidiFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_MidiFile.h; path = ../../../../../modules/juce_audio_basics/midi/juce_MidiFile.h; sourceTree = SOURCE_ROOT; };
- FF4021F0CFBE14A6FD29CCC1 /* juce_PathIterator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_PathIterator.h; path = ../../../../../modules/juce_graphics/geometry/juce_PathIterator.h; sourceTree = SOURCE_ROOT; };
- FF748D1941B41C1794A241EA /* juce_DrawableComposite.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_DrawableComposite.cpp; path = ../../../../../modules/juce_gui_basics/drawables/juce_DrawableComposite.cpp; sourceTree = SOURCE_ROOT; };
- FFB390B0993D0BDD8DD46932 /* os_types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = os_types.h; path = ../../../../../modules/juce_audio_formats/codecs/oggvorbis/os_types.h; sourceTree = SOURCE_ROOT; };
- FFC7EE5AC5B2F327351AE86C /* juce_MidiRPN.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = juce_MidiRPN.cpp; path = ../../../../../modules/juce_audio_basics/midi/juce_MidiRPN.cpp; sourceTree = SOURCE_ROOT; };
- FFE735418137221B6EABF1A0 /* juce_GenericAudioProcessorEditor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = juce_GenericAudioProcessorEditor.h; path = ../../../../../modules/juce_audio_processors/processors/juce_GenericAudioProcessorEditor.h; sourceTree = SOURCE_ROOT; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 2410311707C8C7B9E6CFE23D /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 732F2CFE7C7968D6638BC5D1 /* Accelerate.framework in Frameworks */,
- 76FF951CD8921AFDC24648FB /* AudioToolbox.framework in Frameworks */,
- F88FFF629E47F8CB257B7157 /* AVFoundation.framework in Frameworks */,
- 924BC7B8C552402D22C30959 /* CoreAudio.framework in Frameworks */,
- B92223437105FB45C1973FF5 /* CoreAudioKit.framework in Frameworks */,
- A458DA809D44DCCB921620D2 /* CoreGraphics.framework in Frameworks */,
- 1D0987A356ABA1C3B4A785BD /* CoreMIDI.framework in Frameworks */,
- B4F2D8F80F24A3A8B90D2519 /* CoreText.framework in Frameworks */,
- 918E1AB94993954386975092 /* Foundation.framework in Frameworks */,
- F0C1938D68C0994E2338379C /* OpenGLES.framework in Frameworks */,
- 3601C134F7B5A1AB67E814D7 /* QuartzCore.framework in Frameworks */,
- FBF94D0D4A73E69D79614536 /* UIKit.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 0226D256277F3CB1491B9CFB /* sources */ = {
- isa = PBXGroup;
- children = (
- C29107288DAD3ABB3719015D /* juce_AudioSourcePlayer.cpp */,
- B6345846B766F695A8CAD09E /* juce_AudioSourcePlayer.h */,
- F86729C1E690C3B06646ECAE /* juce_AudioTransportSource.cpp */,
- 0460787CA1702E4A267536CD /* juce_AudioTransportSource.h */,
- );
- name = sources;
- sourceTree = "";
- };
- 03B2AB59731F1D4B023E947F /* coupled */ = {
- isa = PBXGroup;
- children = (
- A5824D06228D6B5120269F73 /* res_books_51.h */,
- 287298405BC363E9C2492200 /* res_books_stereo.h */,
- );
- name = coupled;
- sourceTree = "";
- };
- 0805213889487A2742210837 /* flac */ = {
- isa = PBXGroup;
- children = (
- EB3E75FE4B4092D4E0F0DAEE /* libFLAC */,
- BF1E8D386E1C71322F7B6321 /* all.h */,
- 20E50B7CC91B87CFA1CC8C17 /* alloc.h */,
- 44ECB2E8A37E35CED1BDEB44 /* assert.h */,
- 505900B3A9C3E0EB350784F1 /* callback.h */,
- E87BA58A31E5AF84D1819E1C /* compat.h */,
- EA7F1EB1FFEFB4937039BFDB /* endswap.h */,
- 5C843AB1BC6467611517390A /* export.h */,
- ECB315B1E096D167076B058A /* Flac Licence.txt */,
- EB6CAC1FED2456D7379245AE /* format.h */,
- FEF8D1DEC14F53F54985AB63 /* metadata.h */,
- D9C96A95268D1705E5EFD77F /* ordinals.h */,
- 609A9DCD9B58779BFE402BBF /* stream_decoder.h */,
- 580B644027718870A081DC4E /* stream_encoder.h */,
- 96F7798575656A87A58107DB /* win_utf8_io.h */,
- );
- name = flac;
- sourceTree = "";
- };
- 0B417D1083D3F2FE398636BA /* system */ = {
- isa = PBXGroup;
- children = (
- 63B20B7D5AB4BA7C645F10AE /* juce_CompilerSupport.h */,
- 96B0988BE177AFFCCB353FC1 /* juce_PlatformDefs.h */,
- 7C955BABA03F3EF1E19E178E /* juce_StandardHeader.h */,
- 197D3D704A44AA39F3F92F1F /* juce_SystemStats.cpp */,
- 1E5474F79E3971C77F173C21 /* juce_SystemStats.h */,
- 5AEA510A742A1D7BAF22EC41 /* juce_TargetPlatform.h */,
- );
- name = system;
- sourceTree = "";
- };
- 0BEC7E45CA53EEC113EC85D5 /* memory */ = {
- isa = PBXGroup;
- children = (
- 56E56C2AB629F7288EFFDF99 /* juce_Atomic.h */,
- EF66F9A77305AAF55D3A8C7C /* juce_ByteOrder.h */,
- B35985BF65A5735648F332DB /* juce_ContainerDeletePolicy.h */,
- A06FEA5708DBBF89F31BC095 /* juce_HeapBlock.h */,
- 296E767F3EC21EEDF71AACD9 /* juce_LeakedObjectDetector.h */,
- 3A5708787015E10D959ED324 /* juce_Memory.h */,
- F8612CE49A62B80AD1612B78 /* juce_MemoryBlock.cpp */,
- 6E77E7974D18C2A3889C94D7 /* juce_MemoryBlock.h */,
- 818FAF2D047AE69BA11091D7 /* juce_OptionalScopedPointer.h */,
- C3104BD68827E3B23FE7BF51 /* juce_ReferenceCountedObject.h */,
- 4765710DC062B04830654235 /* juce_ScopedPointer.h */,
- 18828011791118DF6440C6A4 /* juce_SharedResourcePointer.h */,
- 72CC4E382F4DD97DE7D2265B /* juce_Singleton.h */,
- C720BCE4770D82EE19B5E304 /* juce_WeakReference.h */,
- );
- name = memory;
- sourceTree = "";
- };
- 0DCCA6B5EEEAFC1D78D43812 /* protocol */ = {
- isa = PBXGroup;
- children = (
- 9118ECA920DB03C9623ACABB /* juce_BitPackingUtilities.h */,
- 4BE7254995C059C494538C70 /* juce_BlockModels.h */,
- D18C4FDF34147BDD22C16EE2 /* juce_BlocksProtocolDefinitions.h */,
- C4E4C2AD07EA064EB32326F5 /* juce_HostPacketBuilder.h */,
- C3E4493CE69B1B931CB96EA9 /* juce_HostPacketDecoder.h */,
- BB8D9E34C22532DC6AFDA9DD /* Protocol Format.txt */,
- );
- name = protocol;
- sourceTree = "";
- };
- 0ECB8B30B286A7116B5A863A /* blocks */ = {
- isa = PBXGroup;
- children = (
- 2D0232CD6B55510B10D2D04D /* juce_Block.cpp */,
- 23E0BB729907E348A33E996F /* juce_Block.h */,
- A285CB0E88EA469C72C4C086 /* juce_ControlButton.h */,
- EBF51AE520FC44EE056995D9 /* juce_LEDGrid.h */,
- 012B74A5BAF1F975F4A0C648 /* juce_LEDRow.h */,
- AEE9960FEFED454FB6DB18A7 /* juce_StatusLight.h */,
- C237671BF283E95CF9F93936 /* juce_TouchList.h */,
- 35A297789A17E01FBE82827F /* juce_TouchSurface.h */,
- );
- name = blocks;
- sourceTree = "";
- };
- 0FD30CF6F6B0DC38E6CBED82 /* javascript */ = {
- isa = PBXGroup;
- children = (
- B3C5E4089AD8803D08F9067E /* juce_Javascript.cpp */,
- 6C3D05CB8D915E9E8C1286EF /* juce_Javascript.h */,
- 78329D02001CA45058DCF1AB /* juce_JSON.cpp */,
- 54C8D084F87C2B0A407CB3A0 /* juce_JSON.h */,
- );
- name = javascript;
- sourceTree = "";
- };
- 124299323D71100AA977C9D1 /* modes */ = {
- isa = PBXGroup;
- children = (
- 04874C168F8DB8B3661AE099 /* floor_all.h */,
- 8818BE9F1A26A6F0393DF753 /* psych_8.h */,
- 2E667E8E327AB96B7E56BEE3 /* psych_11.h */,
- 7F615DFC87CDB7F78660077C /* psych_16.h */,
- DB9E8BE921489285C4B9ED99 /* psych_44.h */,
- E94CBCD3B3C4F726DDC7145E /* residue_8.h */,
- 9BEF8EED62BFF46A514824A2 /* residue_16.h */,
- A0DDE4018BE50F9FF0F6D4DB /* residue_44.h */,
- DDB3B7DDB5B4F5D87CBA6C65 /* residue_44p51.h */,
- C91DD17FBE7A7541E7787987 /* residue_44u.h */,
- 8C99020753B8736AEF7D04D0 /* setup_8.h */,
- 661EF1C85FF1D2B6070163EE /* setup_11.h */,
- 18319D005DF6998885AC677F /* setup_16.h */,
- D93AEDCD9AA6F35A008C6B10 /* setup_22.h */,
- 28EA90843E65FB432CDF2329 /* setup_32.h */,
- 346470CBB2B9F42E9CB6E7C0 /* setup_44.h */,
- 948A5AC343109E364FF586C0 /* setup_44p51.h */,
- 378D773196595D931B25B784 /* setup_44u.h */,
- DE2F36F94C5AF00C806A885D /* setup_X.h */,
- );
- name = modes;
- sourceTree = "";
- };
- 15645B0CE83271714833C3A1 /* juce_audio_processors */ = {
- isa = PBXGroup;
- children = (
- 78E92DC518143D98EB5F9ADA /* format */,
- 9EA2AF2B5A0CE721D5150106 /* format_types */,
- E63B8ABCE65C4254D9987CD9 /* processors */,
- 7B92471FB5C0051679A2E95C /* scanning */,
- 4C967811E674D62EEA59D7E0 /* utilities */,
- 16DD43E629D9E32F1FE86143 /* juce_audio_processors.cpp */,
- 6EBBA65276F7311BE0074812 /* juce_audio_processors.mm */,
- 0DBCD27DE42DAF64EF974F1D /* juce_audio_processors.h */,
- );
- name = juce_audio_processors;
- sourceTree = "";
- };
- 162AA8750F236D0A456810BB /* native */ = {
- isa = PBXGroup;
- children = (
- 259877493D9B71079446749E /* juce_android_Files.cpp */,
- E55BD37DA91B20BB60D8BC5B /* juce_android_JNIHelpers.h */,
- B50D99789F7F83360780022E /* juce_android_Misc.cpp */,
- 1DC75AA5AD6118F35371BDB0 /* juce_android_Network.cpp */,
- B5FE94B9AE535C0F0FA1D88B /* juce_android_RuntimePermissions.cpp */,
- AE19C39D6B958349413E5F76 /* juce_android_SystemStats.cpp */,
- 7ADB824594D23926754D9ABD /* juce_android_Threads.cpp */,
- D7AB3E868A90774E1FAFD51B /* juce_BasicNativeHeaders.h */,
- 1758DCBCE1766DA3968BEC1F /* juce_curl_Network.cpp */,
- 0A7A9EA59E25C13CB9C14A7D /* juce_linux_CommonFile.cpp */,
- FCC43FCAF92C64F580AA70C7 /* juce_linux_Files.cpp */,
- 40096AE757FEA9F663BF88B9 /* juce_linux_Network.cpp */,
- 2972426DAB18DB5F584BC1E9 /* juce_linux_SystemStats.cpp */,
- E48849E0B20A2D2B2391BD36 /* juce_linux_Threads.cpp */,
- D7303A04A2ED6BD0AB0D997D /* juce_mac_ClangBugWorkaround.h */,
- AD7FCDD3AC5EF4057B4E669B /* juce_mac_Files.mm */,
- B37091252E2FC04C254016C9 /* juce_mac_Network.mm */,
- 177856ECCAE5F779DB31EBCF /* juce_mac_Strings.mm */,
- A4D2F92AAE55340EB431CF8B /* juce_mac_SystemStats.mm */,
- 3B63BB4D108A10D0C5FECBEF /* juce_mac_Threads.mm */,
- 6FC3B994387E6EDAF2BDEE75 /* juce_osx_ObjCHelpers.h */,
- C1884E8D2D10F0AFEB1D87F3 /* juce_posix_NamedPipe.cpp */,
- 228C128F3835E988917C908E /* juce_posix_SharedCode.h */,
- A572695065599E9D922B476A /* juce_win32_ComSmartPtr.h */,
- 34A1D01D8C72A0B39C0CF6D5 /* juce_win32_Files.cpp */,
- 0DA6CC35E4AFC202C7D5298F /* juce_win32_Network.cpp */,
- F21AB2745631CDDDEEA35B1F /* juce_win32_Registry.cpp */,
- 02148EBC074DA2992CC96E88 /* juce_win32_SystemStats.cpp */,
- 85A0ABA6D4313DEAF9C7FBEB /* juce_win32_Threads.cpp */,
- );
- name = native;
- sourceTree = "";
- };
- 16B6DDD69A3C6342C3ED929F /* image_formats */ = {
- isa = PBXGroup;
- children = (
- E0D35A029E21EB7BA9064153 /* jpglib */,
- E252C4CC79CD0D4A50359EF8 /* pnglib */,
- E758FAA869708918584DA19D /* juce_GIFLoader.cpp */,
- CEF6725F5E19BCCBFFE5EB68 /* juce_JPEGLoader.cpp */,
- 0DA6F88B400D1BA27A9EF72B /* juce_PNGLoader.cpp */,
- );
- name = image_formats;
- sourceTree = "";
- };
- 175807F9D449A924A35D7995 /* embedding */ = {
- isa = PBXGroup;
- children = (
- C438A00F7FAE0D151BC99D0B /* juce_ActiveXControlComponent.h */,
- D1831592A88B72CE43CB9130 /* juce_NSViewComponent.h */,
- B6C06A491AB738501ACC77AE /* juce_UIViewComponent.h */,
- );
- name = embedding;
- sourceTree = "";
- };
- 181AFE89615BD447AC837B49 /* native */ = {
- isa = PBXGroup;
- children = (
- D71710BA7E52689EBFD91588 /* juce_android_WebBrowserComponent.cpp */,
- 7A5FADFA9A6CF71D5D2B9FC6 /* juce_ios_UIViewComponent.mm */,
- 36CA5FBB8A3CE191E952D894 /* juce_linux_SystemTrayIcon.cpp */,
- D76F72244214BDDDB9C1D42A /* juce_linux_WebBrowserComponent.cpp */,
- C19D89C56696F5747C298985 /* juce_mac_AppleRemote.mm */,
- 816E973AAA295DE63DEBC95D /* juce_mac_CarbonViewWrapperComponent.h */,
- 4C512E6E088C4B973E866756 /* juce_mac_NSViewComponent.mm */,
- 529810AFE34B3B173DF7E89B /* juce_mac_SystemTrayIcon.cpp */,
- E2760CFD55AAE533FAD166FD /* juce_mac_WebBrowserComponent.mm */,
- 58C7100720C49C23EA841B13 /* juce_win32_ActiveXComponent.cpp */,
- F80A4EA6BE0D985876B9D4F4 /* juce_win32_SystemTrayIcon.cpp */,
- B107BF03016269AF7369630B /* juce_win32_WebBrowserComponent.cpp */,
- );
- name = native;
- sourceTree = "";
- };
- 1A35F54335F030EB7CED69E1 /* effects */ = {
- isa = PBXGroup;
- children = (
- B087CFCD5381A67E8ABE789D /* juce_DropShadowEffect.cpp */,
- BD7737BC6B7B6EE4AE3DD687 /* juce_DropShadowEffect.h */,
- 30845B589D24B592C853C93E /* juce_GlowEffect.cpp */,
- 779FC2189E09A0B4A15C45F7 /* juce_GlowEffect.h */,
- A378497FA09036F13FA411C1 /* juce_ImageEffectFilter.h */,
- );
- name = effects;
- sourceTree = "";
- };
- 1D007C9159A56613F908E67B /* oggvorbis */ = {
- isa = PBXGroup;
- children = (
- 2F4C445DF466E73DAA904172 /* libvorbis-1.3.2 */,
- D8A792DD4E2CD58BDAC9BBFF /* bitwise.c */,
- 9FBEC2F41AEF630320F831AB /* codec.h */,
- 2EA29D7871008E52A033BE16 /* config_types.h */,
- CAF65D1EFDDC93B47321327C /* framing.c */,
- 4490CBDB4F5B394BC4C8E22E /* Ogg Vorbis Licence.txt */,
- 0496A10293C6532DB2889643 /* ogg.h */,
- FFB390B0993D0BDD8DD46932 /* os_types.h */,
- 122B74F324719CFD9425A135 /* vorbisenc.h */,
- 6C3BD063682D8A97CE28ED2C /* vorbisfile.h */,
- );
- name = oggvorbis;
- sourceTree = "";
- };
- 1D45C78337A8A45497AF24D2 /* application */ = {
- isa = PBXGroup;
- children = (
- 93286547177CBA88A45187FB /* juce_Application.cpp */,
- 0377FDB5BDD3EC08C3F83FBD /* juce_Application.h */,
- );
- name = application;
- sourceTree = "";
- };
- 1D9FE5BF60A6EF6602D24565 /* juce_audio_utils */ = {
- isa = PBXGroup;
- children = (
- F747D2293FF285B72185547E /* audio_cd */,
- 54CDB1F233E80FD4B106D216 /* gui */,
- 8BA02E9DB3A1D973203FAE5A /* native */,
- B52FBC4342C378AD64834F80 /* players */,
- 3665F1F2237ABB55D7614221 /* juce_audio_utils.cpp */,
- C3E64B47D41D5364FA0CFDC3 /* juce_audio_utils.mm */,
- 5F849E06BD0AEC3F3CA3803E /* juce_audio_utils.h */,
- );
- name = juce_audio_utils;
- sourceTree = "";
- };
- 1E12EFB6B9C7E4C3C84DDD09 /* Resources */ = {
- isa = PBXGroup;
- children = (
- 2FB1B8992C3497C5EFE0EB53 /* Info-App.plist */,
- 850772CD6A8E69EACB89CB02 /* Images.xcassets */,
- );
- name = Resources;
- sourceTree = "";
- };
- 202A764FF05218C5841E9086 /* juce_opengl */ = {
- isa = PBXGroup;
- children = (
- 564E35379D5589270D4653A0 /* geometry */,
- CDC14C396BA572BB165A74EE /* native */,
- 3A941A5B0BD465C28238ECA9 /* opengl */,
- 8FF38470A066ACA3CCA5DDE8 /* utils */,
- A6C807BA364341686874B1BB /* juce_opengl.cpp */,
- EC98B82ADF1187D4060FC49F /* juce_opengl.mm */,
- 60EEA5E3658D36513E1A25FD /* juce_opengl.h */,
- );
- name = juce_opengl;
- sourceTree = "";
- };
- 248818D57818EC2B730C97C6 /* floor */ = {
- isa = PBXGroup;
- children = (
- 23063052109C21CA6277AA4F /* floor_books.h */,
- );
- name = floor;
- sourceTree = "";
- };
- 2789350038E8D9166DFD8868 /* juce_audio_formats */ = {
- isa = PBXGroup;
- children = (
- 76167C852117860212C07E43 /* codecs */,
- 4955606C713F09999B822ED4 /* format */,
- 75D68641653904AEADEE04DB /* sampler */,
- BCD101DB744482011FB7EA98 /* juce_audio_formats.cpp */,
- 41B259559A84E4D37B411E9E /* juce_audio_formats.mm */,
- F2CFFDE197B95A56FD3D2794 /* juce_audio_formats.h */,
- );
- name = juce_audio_formats;
- sourceTree = "";
- };
- 2C7D50068311979A293C7896 /* synthesisers */ = {
- isa = PBXGroup;
- children = (
- 5D55891DEDD0EEFA6F294941 /* juce_Synthesiser.cpp */,
- FA66CC9414AAEA72869BE969 /* juce_Synthesiser.h */,
- );
- name = synthesisers;
- sourceTree = "";
- };
- 2F4C445DF466E73DAA904172 /* libvorbis-1.3.2 */ = {
- isa = PBXGroup;
- children = (
- 59143ADBA1E2AF2EF808FD85 /* lib */,
- );
- name = "libvorbis-1.3.2";
- sourceTree = "";
- };
- 306F1A4F0336750F6B01B5DE /* filebrowser */ = {
- isa = PBXGroup;
- children = (
- BFE7003BFA12C79A7E70E2F8 /* juce_DirectoryContentsDisplayComponent.cpp */,
- A34E3CFE305D1CC76C0046C1 /* juce_DirectoryContentsDisplayComponent.h */,
- A288992FC193721FE3DB4BD9 /* juce_DirectoryContentsList.cpp */,
- 961B5BA203F6A096FC1D5221 /* juce_DirectoryContentsList.h */,
- A02B644EE002D5CDFDBEB472 /* juce_FileBrowserComponent.cpp */,
- A59CDBDDAAB25C0621DE2C22 /* juce_FileBrowserComponent.h */,
- 5F2ABD15045B9C2D45BBB281 /* juce_FileBrowserListener.h */,
- 49294AB2D8C5CCBBE763EA04 /* juce_FileChooser.cpp */,
- 98BD14DB6D84583B0A2138AD /* juce_FileChooser.h */,
- 599F21A262B43F26B31A0137 /* juce_FileChooserDialogBox.cpp */,
- 1A54156E7F0715AA90652992 /* juce_FileChooserDialogBox.h */,
- 75AA9C6E3FC6AAE881B93CA3 /* juce_FileListComponent.cpp */,
- 38448998E8030347F182B334 /* juce_FileListComponent.h */,
- 7BF8065AC65F92C392CDB058 /* juce_FilenameComponent.cpp */,
- DF5C47F2732316263F27F35B /* juce_FilenameComponent.h */,
- 340EA1B2263C37EC8A7B6014 /* juce_FilePreviewComponent.h */,
- 43BB607E9D1BC08AAF03B711 /* juce_FileSearchPathListComponent.cpp */,
- 71E11286C74E10382B85CAF6 /* juce_FileSearchPathListComponent.h */,
- 6E0317C6D582381E18F6FC28 /* juce_FileTreeComponent.cpp */,
- 5467983B508645F3246CADF1 /* juce_FileTreeComponent.h */,
- F49D80F0D4131FFEA98F85BC /* juce_ImagePreviewComponent.cpp */,
- 3986436BB1332AA00187E0BC /* juce_ImagePreviewComponent.h */,
- );
- name = filebrowser;
- sourceTree = "";
- };
- 321D3D0E76FDD485F0E19A91 /* misc */ = {
- isa = PBXGroup;
- children = (
- F053B1F18F39980BB1E8F98A /* juce_BubbleComponent.cpp */,
- 492DC3C535B73B14A707133A /* juce_BubbleComponent.h */,
- 276FEE4DBCB6806D06E959BB /* juce_DropShadower.cpp */,
- 1D0E04EA23573F4C5199DFF3 /* juce_DropShadower.h */,
- );
- name = misc;
- sourceTree = "";
- };
- 33C4DEF9DFBC1B0AC46194DB /* layout */ = {
- isa = PBXGroup;
- children = (
- E2CD239EB674A987631C1F95 /* juce_AnimatedPosition.h */,
- D2F9B4B64C205F3461541930 /* juce_AnimatedPositionBehaviours.h */,
- 8E607B1E70CF61A3B3F8B230 /* juce_ComponentAnimator.cpp */,
- D202B1DF5EEDD627489E729D /* juce_ComponentAnimator.h */,
- 65E03D29E9BA76F1CF344B75 /* juce_ComponentBoundsConstrainer.cpp */,
- 7B121FD3C6971459B5EC4DE0 /* juce_ComponentBoundsConstrainer.h */,
- F83D0DB57AB2C58AA5FFCE39 /* juce_ComponentBuilder.cpp */,
- A9717066C7343E734BBA14A7 /* juce_ComponentBuilder.h */,
- 6259E41DD05DF414BFAEFF1F /* juce_ComponentMovementWatcher.cpp */,
- FA06D31009B123A360853CCB /* juce_ComponentMovementWatcher.h */,
- DA5417FE6CC33732AF61D3BA /* juce_ConcertinaPanel.cpp */,
- B29BA78743A8C82A8575D41C /* juce_ConcertinaPanel.h */,
- FB6917E81414FA81F7442188 /* juce_FlexBox.cpp */,
- 2A1D123CDD681C79A4830CD9 /* juce_FlexBox.h */,
- 5321E4A1DB897A2B7CF23AC0 /* juce_FlexItem.h */,
- A02D981AD55D9C837497D9DF /* juce_GroupComponent.cpp */,
- ABA533A5D4493250568E3659 /* juce_GroupComponent.h */,
- 1C14BD4230F9672D9AE44BFF /* juce_MultiDocumentPanel.cpp */,
- E912FFD60443431073F49E05 /* juce_MultiDocumentPanel.h */,
- 97C4CF34A7B666E1076D8643 /* juce_ResizableBorderComponent.cpp */,
- D3BB46A0AFF947844690B42F /* juce_ResizableBorderComponent.h */,
- E2D85F080ACAE32DED909D5C /* juce_ResizableCornerComponent.cpp */,
- 2926E85AC4A3BDBC357DADA8 /* juce_ResizableCornerComponent.h */,
- 0DEF8B7D54BF56ED8569D690 /* juce_ResizableEdgeComponent.cpp */,
- 3DA85B078D53F40F9AE66620 /* juce_ResizableEdgeComponent.h */,
- 4581D33463D9A6F637E8CDD8 /* juce_ScrollBar.cpp */,
- 46AF0A703258AEE24688FE5B /* juce_ScrollBar.h */,
- 5CD9180E4223F79C65313EF8 /* juce_StretchableLayoutManager.cpp */,
- B9C32654F4F4FBDD5B8D8371 /* juce_StretchableLayoutManager.h */,
- 134A859AAAD880C6CA78BA16 /* juce_StretchableLayoutResizerBar.cpp */,
- 7890A2750EB787AEBCA75F19 /* juce_StretchableLayoutResizerBar.h */,
- 7F5A0B43EA4CE0599C30637B /* juce_StretchableObjectResizer.cpp */,
- 03AF279CB4C8AA1B917C9E6E /* juce_StretchableObjectResizer.h */,
- F581127924048FE75A58A428 /* juce_TabbedButtonBar.cpp */,
- 0BB1F767785BA329DAE91DBD /* juce_TabbedButtonBar.h */,
- 680095499A49102EF1B7F3C0 /* juce_TabbedComponent.cpp */,
- 930DC0F3CD592DE7B6A6945E /* juce_TabbedComponent.h */,
- 5634188A865D1AED86FC1030 /* juce_Viewport.cpp */,
- DE56F99143A2BEF2EC4E15A0 /* juce_Viewport.h */,
- );
- name = layout;
- sourceTree = "";
- };
- 34C8BBB7ADCBF087368A0BBD /* native */ = {
- isa = PBXGroup;
- children = (
- EC7D9B630F5FB46258974133 /* juce_android_FileChooser.cpp */,
- AA1F66345AFB2EFA32855F27 /* juce_android_Windowing.cpp */,
- 46A6F1936584ED15D40366DE /* juce_ios_UIViewComponentPeer.mm */,
- E5F14F3C17FA5BC721CF06CE /* juce_ios_Windowing.mm */,
- 5ECB1585CB10B6336F35039E /* juce_linux_Clipboard.cpp */,
- 06B84EC6276C82A50AA87A78 /* juce_linux_FileChooser.cpp */,
- 137382482B888F9A1245CB52 /* juce_linux_Windowing.cpp */,
- E4E4B644F52739096EC9ED59 /* juce_mac_FileChooser.mm */,
- FC25CF1063C88216E3462839 /* juce_mac_MainMenu.mm */,
- 2973E5E96EE07B12B06E4901 /* juce_mac_MouseCursor.mm */,
- F2070BC848C05F66E134D7E4 /* juce_mac_NSViewComponentPeer.mm */,
- D4C6A262AAC6CD01030A56FC /* juce_mac_Windowing.mm */,
- D81D661338436E213B25F8BF /* juce_MultiTouchMapper.h */,
- 0D5C830BBE28DBA8795B10DE /* juce_win32_DragAndDrop.cpp */,
- A07531AA213977EA9B7ABFC3 /* juce_win32_FileChooser.cpp */,
- 12B073CF9C72D46B540CB899 /* juce_win32_Windowing.cpp */,
- );
- name = native;
- sourceTree = "";
- };
- 38AEAA833C644AE23B5C335E /* text */ = {
- isa = PBXGroup;
- children = (
- 5122839D8D39723AA8BFBC70 /* juce_Base64.cpp */,
- DE9704A65773501DE347230E /* juce_Base64.h */,
- 2440CDB6EEC69DDB25DABA04 /* juce_CharacterFunctions.cpp */,
- CCE2ADA7EF8B417B5D5EC92C /* juce_CharacterFunctions.h */,
- 0138E84BEADF91E11BF423E8 /* juce_CharPointer_ASCII.h */,
- E280D05067385BEC1E3B4766 /* juce_CharPointer_UTF8.h */,
- AAABD4AE1DD0BB0519C4863F /* juce_CharPointer_UTF16.h */,
- BC6DCFE13B8042F59C065CC6 /* juce_CharPointer_UTF32.h */,
- 4860027F79C430D081214B03 /* juce_Identifier.cpp */,
- 19482F63E164192F9C0CC655 /* juce_Identifier.h */,
- A427924174225CB14EA8B615 /* juce_LocalisedStrings.cpp */,
- 1BE918CC1F7F26F93A4B8EC1 /* juce_LocalisedStrings.h */,
- 4AC6C62FB545839E566D0FE9 /* juce_NewLine.h */,
- 1673C95BCCE19C8F4664703E /* juce_String.cpp */,
- 22B991F37C9D185AD22048F9 /* juce_String.h */,
- AC8A8FB37E03EAD593C68BB2 /* juce_StringArray.cpp */,
- B92C211B36B75E20B97D094E /* juce_StringArray.h */,
- C3891745EE7DBD352727B9B2 /* juce_StringPairArray.cpp */,
- 707DD628F538166D4733876E /* juce_StringPairArray.h */,
- 78977B6BAB87C72BE8A6825A /* juce_StringPool.cpp */,
- A9711C6C2B654B0B95C93ACB /* juce_StringPool.h */,
- 6F6F12174D4A4E4D1266894F /* juce_StringRef.h */,
- 5B9750AEC9BF60E5C75D6F27 /* juce_TextDiff.cpp */,
- 8DE0F4ADDA1C7FD72763835F /* juce_TextDiff.h */,
- );
- name = text;
- sourceTree = "";
- };
- 395D3401AF8861AE32D6B053 /* maths */ = {
- isa = PBXGroup;
- children = (
- 3284EB2D81A682511A78D1AC /* juce_BigInteger.cpp */,
- A3913125232A72EF480476F2 /* juce_BigInteger.h */,
- 6C0699AE325D1A41FB8CC560 /* juce_Expression.cpp */,
- 6DE2EDC2238B94B55FA5167C /* juce_Expression.h */,
- 63B8C5F0192F2C0767C38B59 /* juce_MathsFunctions.h */,
- 6D665D953ABA975CDB21318F /* juce_NormalisableRange.h */,
- D6A0E899C3D79A7DF75035C2 /* juce_Random.cpp */,
- CAF5049EC08F7E410AEDD901 /* juce_Random.h */,
- 8F7A2483AB8A87ED367B8276 /* juce_Range.h */,
- 07E12DE4ACDC0607DB48477A /* juce_StatisticsAccumulator.h */,
- );
- name = maths;
- sourceTree = "";
- };
- 3A941A5B0BD465C28238ECA9 /* opengl */ = {
- isa = PBXGroup;
- children = (
- 3E2249E2AB8DC6FDCC87F9BF /* juce_OpenGLContext.cpp */,
- BCBB30471154DD69D59BEBE8 /* juce_OpenGLContext.h */,
- 23DAF49B90FB33BB97015CCA /* juce_OpenGLFrameBuffer.cpp */,
- CDA6D006DEE688324E2540AE /* juce_OpenGLFrameBuffer.h */,
- 0B3FBA4C1CFF6D65E98AEFE1 /* juce_OpenGLGraphicsContext.cpp */,
- D2232FD5C2B1A361C7240C8D /* juce_OpenGLGraphicsContext.h */,
- CED32466B0978556B4914463 /* juce_OpenGLHelpers.cpp */,
- DEE463950B10373AB5BF1415 /* juce_OpenGLHelpers.h */,
- CF632EB4950A71EC56190E3A /* juce_OpenGLImage.cpp */,
- 0717F6008681C056FF92AE41 /* juce_OpenGLImage.h */,
- 3A56A49F2C3025A4E7E74C35 /* juce_OpenGLPixelFormat.cpp */,
- 75F17FFBBC74680724103F2C /* juce_OpenGLPixelFormat.h */,
- E9DEFB9A762600C429F59B02 /* juce_OpenGLRenderer.h */,
- 108582FEE483C0EAE1FF767D /* juce_OpenGLShaderProgram.cpp */,
- 30B2BDB16DA4D564F64D5CC7 /* juce_OpenGLShaderProgram.h */,
- 289FA55DC2B007BF300AA35E /* juce_OpenGLTexture.cpp */,
- 713A0BDC7ACC4F399C378A0D /* juce_OpenGLTexture.h */,
- );
- name = opengl;
- sourceTree = "";
- };
- 3C7EE0C47E42BE0F161EFB77 /* native */ = {
- isa = PBXGroup;
- children = (
- 2F03461E6CBD4354FE073460 /* juce_android_Fonts.cpp */,
- 45DD050BF036D8362025CC86 /* juce_android_GraphicsContext.cpp */,
- 7AB01CF3ABEAA9948DC8E0F8 /* juce_freetype_Fonts.cpp */,
- 72D5B90B3F201DE61EFF5904 /* juce_linux_Fonts.cpp */,
- 5C67296AC2E94992F244B1A8 /* juce_mac_CoreGraphicsContext.h */,
- 5779480339AAA112A12315A1 /* juce_mac_CoreGraphicsContext.mm */,
- 59DBC804E4110F9FCDDAB23F /* juce_mac_CoreGraphicsHelpers.h */,
- 759D310E427CAB584332F916 /* juce_mac_Fonts.mm */,
- A7F8A897765E91543FF21D5F /* juce_RenderingHelpers.h */,
- 6F4E9231B5C05BC368C3450E /* juce_win32_Direct2DGraphicsContext.cpp */,
- 490E933166E75FBF2163CAE0 /* juce_win32_DirectWriteTypeface.cpp */,
- 84568194A9D160AD5459F013 /* juce_win32_DirectWriteTypeLayout.cpp */,
- C19A71E5C01BB38E1EEA2110 /* juce_win32_Fonts.cpp */,
- );
- name = native;
- sourceTree = "";
- };
- 3F92E50B3ECB054A3591BBFD /* uncoupled */ = {
- isa = PBXGroup;
- children = (
- 5FDD76A98FDD6FAD2CB88606 /* res_books_uncoupled.h */,
- );
- name = uncoupled;
- sourceTree = "";
- };
- 432F46B575D3DCDC58365CD0 /* books */ = {
- isa = PBXGroup;
- children = (
- 03B2AB59731F1D4B023E947F /* coupled */,
- 248818D57818EC2B730C97C6 /* floor */,
- 3F92E50B3ECB054A3591BBFD /* uncoupled */,
- );
- name = books;
- sourceTree = "";
- };
- 48B6293FB2A5EC097988691B /* juce_blocks_basics */ = {
- isa = PBXGroup;
- children = (
- 0ECB8B30B286A7116B5A863A /* blocks */,
- CE23EF4195D4D47D4D94B87F /* littlefoot */,
- 0DCCA6B5EEEAFC1D78D43812 /* protocol */,
- 500D3DB07F6230755D8939A5 /* topology */,
- 84EC8ECF8486B94F4750630F /* visualisers */,
- CC7A625D7B7F517BC85C5578 /* juce_blocks_basics.cpp */,
- 243F5C11D97748ED03B760C6 /* README.txt */,
- 193EE3A9C056FB7BFD83667C /* juce_blocks_basics.h */,
- );
- name = juce_blocks_basics;
- sourceTree = "";
- };
- 4955606C713F09999B822ED4 /* format */ = {
- isa = PBXGroup;
- children = (
- 84A04C8B8DE6E1C4FDC3F4A1 /* juce_AudioFormat.cpp */,
- E20191F0BE305DA483AE955F /* juce_AudioFormat.h */,
- 810D7E7AC4E48A67AB84B75D /* juce_AudioFormatManager.cpp */,
- 5AC1394BDDA0F1C11051F763 /* juce_AudioFormatManager.h */,
- E25FE62CDBD305515BE0E974 /* juce_AudioFormatReader.cpp */,
- ACB9D9A21F63B364C3E431DD /* juce_AudioFormatReader.h */,
- 621C85154E8537D98DD550D3 /* juce_AudioFormatReaderSource.cpp */,
- BAE124F36EE934FEC863965A /* juce_AudioFormatReaderSource.h */,
- ADD75823E8C98A3F7F299385 /* juce_AudioFormatWriter.cpp */,
- DD1DAA35FC2A68363DBCDE50 /* juce_AudioFormatWriter.h */,
- 6A88B631279A877CBF1EE8FC /* juce_AudioSubsectionReader.cpp */,
- 914600CCFA720261FC69CCD9 /* juce_AudioSubsectionReader.h */,
- 64DFFD927FB3D86B97E36EF9 /* juce_BufferingAudioFormatReader.cpp */,
- 5289927ABB985AA0C17AFF50 /* juce_BufferingAudioFormatReader.h */,
- 200E7992C80ECC1AE74C9468 /* juce_MemoryMappedAudioFormatReader.h */,
- );
- name = format;
- sourceTree = "";
- };
- 4C967811E674D62EEA59D7E0 /* utilities */ = {
- isa = PBXGroup;
- children = (
- 337DBCFC0A462376DAFA8C3F /* juce_AudioParameterBool.h */,
- 1EA1A059799CA880FA6E2ADB /* juce_AudioParameterChoice.h */,
- 2B83CA343CAE71BE4F5A8F8E /* juce_AudioParameterFloat.h */,
- 0B30452CA065C138233F99E7 /* juce_AudioParameterInt.h */,
- 12DF2FA1DB7312F834B0721E /* juce_AudioProcessorParameters.cpp */,
- C35A0F1C5323F130D4A1108F /* juce_AudioProcessorParameterWithID.h */,
- 803335D3EDDD75FED2EA7864 /* juce_AudioProcessorValueTreeState.cpp */,
- 27DF9F9857FE41EC6A51B601 /* juce_AudioProcessorValueTreeState.h */,
- );
- name = utilities;
- sourceTree = "";
- };
- 500D3DB07F6230755D8939A5 /* topology */ = {
- isa = PBXGroup;
- children = (
- 7C3158B229AE5B18BAD208FC /* juce_PhysicalTopologySource.cpp */,
- 034E4F3996519B2624117798 /* juce_PhysicalTopologySource.h */,
- 8941D9AFE6BE0F15F8391874 /* juce_RuleBasedTopologySource.cpp */,
- 78B2E56220F1F3D0E9C06FBD /* juce_RuleBasedTopologySource.h */,
- F1444750AF2DEB43BE2E1658 /* juce_Topology.h */,
- 06EC101285EA08EEDDB65F87 /* juce_TopologySource.h */,
- );
- name = topology;
- sourceTree = "";
- };
- 517D48DA3D86D147A2174768 /* midi */ = {
- isa = PBXGroup;
- children = (
- 4D2D9C398522FA01A9FFFCBB /* juce_MidiBuffer.cpp */,
- 4231BEF0941784C4F2CDF362 /* juce_MidiBuffer.h */,
- 48037047F1CC53BDB2CBF2E9 /* juce_MidiFile.cpp */,
- FF00E084ABFC561A9CDFF2CB /* juce_MidiFile.h */,
- 5FB96EBC6B8E73E76F2C2D7A /* juce_MidiKeyboardState.cpp */,
- B7EDEB203D0BB0EAE5EE555B /* juce_MidiKeyboardState.h */,
- EBB04C1A8397DA42E15EFB00 /* juce_MidiMessage.cpp */,
- C50386097FEBEBECC9E84866 /* juce_MidiMessage.h */,
- AA6CA28DA51A2BAAD979771B /* juce_MidiMessageSequence.cpp */,
- F295C837D985F94DE7AB4A7E /* juce_MidiMessageSequence.h */,
- FFC7EE5AC5B2F327351AE86C /* juce_MidiRPN.cpp */,
- 5E11C3AEEEBFB5D3ACE79B2E /* juce_MidiRPN.h */,
- );
- name = midi;
- sourceTree = "";
- };
- 53217A64F101B06C4D0167DD /* xml */ = {
- isa = PBXGroup;
- children = (
- 684A7466DDEA4CA1F785AAAF /* juce_XmlDocument.cpp */,
- 9AAD723B4A3EF1165901402F /* juce_XmlDocument.h */,
- 8EE36E6294B0521F7F8FA4AB /* juce_XmlElement.cpp */,
- A36BCC5ED3A26F2E5592EE32 /* juce_XmlElement.h */,
- );
- name = xml;
- sourceTree = "";
- };
- 540901B179BD14810F98D941 /* images */ = {
- isa = PBXGroup;
- children = (
- AEFAF28C900A0DFFC5F6FD40 /* juce_Image.cpp */,
- 2FB361FFB25BD8EFB6160374 /* juce_Image.h */,
- 4D4461D4DE302DC06DE22D68 /* juce_ImageCache.cpp */,
- 73EF2B898A07179D14B9EE08 /* juce_ImageCache.h */,
- 215273F35854D93D4684F590 /* juce_ImageConvolutionKernel.cpp */,
- 3AE6DEF29143AA3E59CEB1DA /* juce_ImageConvolutionKernel.h */,
- D67E60A34C5191583B542922 /* juce_ImageFileFormat.cpp */,
- 269A9F80899756D1F87AA82D /* juce_ImageFileFormat.h */,
- );
- name = images;
- sourceTree = "";
- };
- 545FE4C9D51A36132F172336 /* Source */ = {
- isa = PBXGroup;
- children = (
- DE1AA6017CEF48540B7D5521 /* Main.cpp */,
- 222A183111DEA8A63599510A /* BlockComponents.h */,
- ADD9F9EB5E0EFC63E2992ED7 /* MainComponent.h */,
- );
- name = Source;
- sourceTree = "";
- };
- 54AC93CB6D9A615C39CB06B5 /* juce_gui_basics */ = {
- isa = PBXGroup;
- children = (
- 1D45C78337A8A45497AF24D2 /* application */,
- CAD01FA6B80395085918D809 /* buttons */,
- DCF8B732A58C87567166A89F /* commands */,
- FEA821AB5BDC38FC45CCFB0E /* components */,
- BCCE53D07CFE5BBCF58B00F5 /* drawables */,
- 306F1A4F0336750F6B01B5DE /* filebrowser */,
- C4EB51DE075E129C945DD29E /* keyboard */,
- 33C4DEF9DFBC1B0AC46194DB /* layout */,
- C7F69DEF5735EE1DE8040CFE /* lookandfeel */,
- 56D11FD66F31AAC989E14651 /* menus */,
- 321D3D0E76FDD485F0E19A91 /* misc */,
- C746B6625833C2CEA0E19D07 /* mouse */,
- 34C8BBB7ADCBF087368A0BBD /* native */,
- 699393ECB7C57E463E608EEE /* positioning */,
- E0ED8FECDD5ECEB822B913E5 /* properties */,
- EFB162A49E91B2A648212C14 /* widgets */,
- EFFEDEC35E4A38750F7CB582 /* windows */,
- 20352597FF0FD0A4B487CCFC /* juce_gui_basics.cpp */,
- CD9017D48D6C56C7D57426E8 /* juce_gui_basics.mm */,
- 7CA69469B3AFC9137FB98243 /* juce_gui_basics.h */,
- );
- name = juce_gui_basics;
- sourceTree = "";
- };
- 54CDB1F233E80FD4B106D216 /* gui */ = {
- isa = PBXGroup;
- children = (
- 1737459117017D5BBEE069D2 /* juce_AudioAppComponent.cpp */,
- 0D6E37748850EAE66F9CA70B /* juce_AudioAppComponent.h */,
- 184F543273935A63366BCA51 /* juce_AudioDeviceSelectorComponent.cpp */,
- 2A8F3A1F1C343D6EB025FDD1 /* juce_AudioDeviceSelectorComponent.h */,
- EC9D1EEB0DCF8551C0E70916 /* juce_AudioThumbnail.cpp */,
- 8DD3CBC5EFBC79EE967D57B6 /* juce_AudioThumbnail.h */,
- 80D2A754CA228BCA22EAFC8E /* juce_AudioThumbnailBase.h */,
- 106C8F431770C832B77BFFD9 /* juce_AudioThumbnailCache.cpp */,
- E4223D79CA646F0E046E43B1 /* juce_AudioThumbnailCache.h */,
- 72FEC6F5671BA939439E0CF0 /* juce_AudioVisualiserComponent.cpp */,
- B4679BF8D1848CC2C7698764 /* juce_AudioVisualiserComponent.h */,
- 26B9B07C8F5E7214A9D5EA8B /* juce_BluetoothMidiDevicePairingDialogue.h */,
- C2C938AA02C97A425ECF7926 /* juce_MidiKeyboardComponent.cpp */,
- 4E55A9C84ABE776CCA556594 /* juce_MidiKeyboardComponent.h */,
- );
- name = gui;
- sourceTree = "";
- };
- 564E35379D5589270D4653A0 /* geometry */ = {
- isa = PBXGroup;
- children = (
- C29CB9EBB689083DD7D99F54 /* juce_Draggable3DOrientation.h */,
- 64E5B84F1FA947FA88171033 /* juce_Matrix3D.h */,
- 2BAB647B7DA103003A8A11AE /* juce_Quaternion.h */,
- 656121CD59DA8E95455ABC28 /* juce_Vector3D.h */,
- );
- name = geometry;
- sourceTree = "";
- };
- 56D11FD66F31AAC989E14651 /* menus */ = {
- isa = PBXGroup;
- children = (
- B435295F7A3969E6EBD4E9B1 /* juce_MenuBarComponent.cpp */,
- 1FEB7C2AD69F03FD21C04CD8 /* juce_MenuBarComponent.h */,
- 226BD1CCCAD60DBD0167568E /* juce_MenuBarModel.cpp */,
- 16E132B11E1648815CEFF729 /* juce_MenuBarModel.h */,
- 716E7225D1FAE92136DDE91A /* juce_PopupMenu.cpp */,
- 6ABDB6B3BC707D5EA4E754E5 /* juce_PopupMenu.h */,
- );
- name = menus;
- sourceTree = "";
- };
- 570059654CA1868864255660 /* Juce Library Code */ = {
- isa = PBXGroup;
- children = (
- F8B3AB36958E31EB6BDD2ED3 /* AppConfig.h */,
- C0CE2DBD3E07E03623F29618 /* juce_audio_basics.mm */,
- 5D4BEFEC0E129949C58876DD /* juce_audio_devices.mm */,
- 1559C4DCC579423B1A05CF89 /* juce_audio_formats.mm */,
- C8FBA54671860CB3636D7A76 /* juce_audio_processors.mm */,
- 460CE4619594A71E9BCE42A3 /* juce_audio_utils.mm */,
- 830F7516AA78496143854C16 /* juce_blocks_basics.cpp */,
- 7BAF11556203D550CE5E1560 /* juce_core.mm */,
- 9B6EFF388E31F7E480380796 /* juce_data_structures.mm */,
- 993004BB53091A0FBEB0E418 /* juce_events.mm */,
- 787FCE42F8EFF4F62B69363D /* juce_graphics.mm */,
- E6D09BB9A4D7592AA53FA63C /* juce_gui_basics.mm */,
- EF02685FDE72675F4B750650 /* juce_gui_extra.mm */,
- 5D456364DF7A1A1C1CBCA1F0 /* juce_opengl.mm */,
- 0BB1CC68B7BB505B480D6174 /* JuceHeader.h */,
- );
- name = "Juce Library Code";
- sourceTree = "";
- };
- 59143ADBA1E2AF2EF808FD85 /* lib */ = {
- isa = PBXGroup;
- children = (
- 432F46B575D3DCDC58365CD0 /* books */,
- 124299323D71100AA977C9D1 /* modes */,
- 8056F5AAE245F445D1F5FA26 /* analysis.c */,
- 7B844571D08EC929B21A5ACF /* backends.h */,
- 43AF9A4E676708B5C9B936DE /* bitrate.c */,
- 22B33EA86FAB7366A914C948 /* bitrate.h */,
- 096474E2642303EBBE13AD4B /* block.c */,
- 69AC4DA97DAF6291FB4831EE /* codebook.c */,
- 7E4D7F844737CE5D8C9BD1CD /* codebook.h */,
- 3C03483C05460B67987EA712 /* codec_internal.h */,
- 322BA1353F7CA1DDDE9CAA4D /* envelope.c */,
- 3C43BD70ACCE68D03688BBBF /* envelope.h */,
- 6F4AE6971D02991BCC1B7F1A /* floor0.c */,
- 70C841CF701E3FB91C81E547 /* floor1.c */,
- CDCF7C7420D481D45CDDBE85 /* highlevel.h */,
- CE9B22F2034E803714CB8433 /* info.c */,
- D96E2FC22E02FEC19FAC3F75 /* lookup.c */,
- FD227C7F5CE97D9F54705672 /* lookup.h */,
- E51819C6E2E6881C993A9C16 /* lookup_data.h */,
- 3C5760CD990742E382358250 /* lpc.c */,
- 5CF0F5458B69B697F084D1CB /* lpc.h */,
- B41BF21771B358856B2C44C8 /* lsp.c */,
- 5901AE44435BBEA1841F2028 /* lsp.h */,
- 8D9598B7B36DB4A8DC7F257A /* mapping0.c */,
- A7E2C39A7FF81AC0C2B0BB29 /* masking.h */,
- D7C00C099F40E38AD415AD56 /* mdct.c */,
- BAE69D4E9ABF50B36C2844C9 /* mdct.h */,
- 084F07B2269A72130EDC450D /* misc.h */,
- E5B77FA0E883FC22ED9A07E0 /* os.h */,
- 813AE492EA6457096991918B /* psy.c */,
- C42467520EB918DFA024D0AF /* psy.h */,
- 83B3F4B22F3603CFF3199C33 /* registry.c */,
- 1A9FEB70EB440AE3B3BE52D2 /* registry.h */,
- 1ED66F4F7C1B6FA4369A8E95 /* res0.c */,
- 5BD41E05243398FB26BC8041 /* scales.h */,
- 62D3CBF544E4AB48E11D77E3 /* sharedbook.c */,
- 76DB19422D33EF95B030AF4F /* smallft.c */,
- 76374244710CA4A53830D7E6 /* smallft.h */,
- BE1493D37BFED1206A196B23 /* synthesis.c */,
- 424E6E480FA0C70D02DF349A /* vorbisenc.c */,
- 6C2B97454AB4AD2B7BFE0776 /* vorbisfile.c */,
- 135A4D01694084A7B641D217 /* window.c */,
- BCF2751331F61000AA2E6D8C /* window.h */,
- );
- name = lib;
- sourceTree = "";
- };
- 5A7DCF104E61A11077F7F8B0 /* threads */ = {
- isa = PBXGroup;
- children = (
- F9AF151A90E61714965D67D6 /* juce_ChildProcess.cpp */,
- C62BDB035997E471AE3096E7 /* juce_ChildProcess.h */,
- E61D74DA18777D3ED9B604B6 /* juce_CriticalSection.h */,
- 80A162921EA7B00DF95B9D1C /* juce_DynamicLibrary.h */,
- D87D6545B471F09EF677902C /* juce_HighResolutionTimer.cpp */,
- 909C06CF037053D160E1D911 /* juce_HighResolutionTimer.h */,
- BFB75579514FA95EADD75AC5 /* juce_InterProcessLock.h */,
- 01F94B27ADD4198E3CC15C0B /* juce_Process.h */,
- 2ED4E37632885A949CCB9BE9 /* juce_ReadWriteLock.cpp */,
- 63A0B0B37AAB0387A610F6AE /* juce_ReadWriteLock.h */,
- 11A1987734275CA22120DD49 /* juce_ScopedLock.h */,
- B70BB65A467220F7972C4FB0 /* juce_ScopedReadLock.h */,
- 06BB9F1EBA1172275FE5413D /* juce_ScopedWriteLock.h */,
- 036AB53DA1FCBDB74F591CC3 /* juce_SpinLock.h */,
- 5FFD4BC1A7EB346271391205 /* juce_Thread.cpp */,
- 2F407D57D8476238C54F8112 /* juce_Thread.h */,
- EACA2C832850D2A048AF852C /* juce_ThreadLocalValue.h */,
- 56A2B221F07582C3693CFABC /* juce_ThreadPool.cpp */,
- 478C6A7FDD7B257654B67B59 /* juce_ThreadPool.h */,
- 044402CF33BF673FD4FE541E /* juce_TimeSliceThread.cpp */,
- 418464056E84CF38CAE498FE /* juce_TimeSliceThread.h */,
- FE9F36798B9C61600626D1F4 /* juce_WaitableEvent.h */,
- );
- name = threads;
- sourceTree = "";
- };
- 5CC42EF0177D6F44F26F0570 /* juce_core */ = {
- isa = PBXGroup;
- children = (
- AAD6D4686EC957A745989577 /* containers */,
- CEBC87FED7860FF4F8EAFBBC /* files */,
- 0FD30CF6F6B0DC38E6CBED82 /* javascript */,
- CDDFF74DF54842375F1A11B1 /* logging */,
- 395D3401AF8861AE32D6B053 /* maths */,
- 0BEC7E45CA53EEC113EC85D5 /* memory */,
- AAC33A3115E54835F98F0BF5 /* misc */,
- 162AA8750F236D0A456810BB /* native */,
- CCAEF77ED7D83EF2AC36927E /* network */,
- A465EBBDDD9E1BC6010869AD /* streams */,
- 0B417D1083D3F2FE398636BA /* system */,
- 38AEAA833C644AE23B5C335E /* text */,
- 5A7DCF104E61A11077F7F8B0 /* threads */,
- D3512F785BA120E54E63C04A /* time */,
- EC1FFFA5993CDB034E258369 /* unit_tests */,
- 53217A64F101B06C4D0167DD /* xml */,
- 95659821E46C968DB6384EB1 /* zip */,
- 15494D9F18EC8265BBB4BA44 /* juce_core.cpp */,
- 4EFDE9EEDF6DA6E5A066F2DF /* juce_core.mm */,
- 078D0122C02815C45F14E220 /* juce_core.h */,
- );
- name = juce_core;
- sourceTree = "";
- };
- 5D6DAC6A0A862ED325F1DB34 /* Source */ = {
- isa = PBXGroup;
- children = (
- C09481DD2BAC5454AB6D8772 /* BlocksMonitor */,
- C46BAD19056C6AFCB61C8747 /* Juce Modules */,
- 570059654CA1868864255660 /* Juce Library Code */,
- 1E12EFB6B9C7E4C3C84DDD09 /* Resources */,
- D42221B44DA511070878FD61 /* Frameworks */,
- 601DB48110F08969733B9EF6 /* Products */,
- );
- name = Source;
- sourceTree = "";
- };
- 601DB48110F08969733B9EF6 /* Products */ = {
- isa = PBXGroup;
- children = (
- 00558AF4AA37DD00B15B21A8 /* BlocksMonitor.app */,
- );
- name = Products;
- sourceTree = "";
- };
- 6174AAEB049EF89001A54845 /* effects */ = {
- isa = PBXGroup;
- children = (
- BAFE0AA564EEF3F790410FDB /* juce_CatmullRomInterpolator.cpp */,
- F59BA79A83B6BAD01FDA01DE /* juce_CatmullRomInterpolator.h */,
- EECE5BDB038D0EBEAF36303E /* juce_Decibels.h */,
- C315E5EE86688FF6DEA57CE7 /* juce_FFT.cpp */,
- AE4AAFB284B168518E366EBD /* juce_FFT.h */,
- 4986E10C464822F15B91C7ED /* juce_IIRFilter.cpp */,
- B1657D09D3DF467A04A87E6A /* juce_IIRFilter.h */,
- C79F1FCCE8950900DAE6BB50 /* juce_LagrangeInterpolator.cpp */,
- A92093FCCEED7408744E3706 /* juce_LagrangeInterpolator.h */,
- EEE8C92FC3679E29251522E3 /* juce_LinearSmoothedValue.h */,
- 2ACDC9BC9FB57E955B8D2811 /* juce_Reverb.h */,
- );
- name = effects;
- sourceTree = "";
- };
- 62BBDE7395E0E3796E989B57 /* juce_gui_extra */ = {
- isa = PBXGroup;
- children = (
- C30D3AF040D73E55B642D612 /* code_editor */,
- 6C8E42821ED5F48D5E1162DF /* documents */,
- 175807F9D449A924A35D7995 /* embedding */,
- D77358461927DD290D45860D /* misc */,
- 181AFE89615BD447AC837B49 /* native */,
- 416061525348EB462B1603AB /* juce_gui_extra.cpp */,
- BAF64118ACD931F4A899D18E /* juce_gui_extra.mm */,
- FCEA59DF5F16B5921093D94E /* juce_gui_extra.h */,
- );
- name = juce_gui_extra;
- sourceTree = "";
- };
- 699393ECB7C57E463E608EEE /* positioning */ = {
- isa = PBXGroup;
- children = (
- 7E5C701836EE0E311AE805B7 /* juce_MarkerList.cpp */,
- 1CDA4FD4B1B51222AEE6DCA2 /* juce_MarkerList.h */,
- 04E0627AC999CE642D9009F5 /* juce_RelativeCoordinate.cpp */,
- 01B2BABD6C54666254257CF9 /* juce_RelativeCoordinate.h */,
- BE531AFED218010571C90AAD /* juce_RelativeCoordinatePositioner.cpp */,
- 2F6F34739BCD0348BAC4D5BE /* juce_RelativeCoordinatePositioner.h */,
- 35656731DCD6703896CEE2E8 /* juce_RelativeParallelogram.cpp */,
- BC2B18695DB1F8287E5CD7A4 /* juce_RelativeParallelogram.h */,
- 2C126377CD039D5D20DF0090 /* juce_RelativePoint.cpp */,
- F18CEC0613E333793CE487D1 /* juce_RelativePoint.h */,
- 6B130B8EFF75E1ECF0E20F21 /* juce_RelativePointPath.cpp */,
- 731A4FE5C9250FE1D83D2008 /* juce_RelativePointPath.h */,
- A79EA78DB02B7098DE470DC2 /* juce_RelativeRectangle.cpp */,
- ACBA16D63E4470083B7CE29D /* juce_RelativeRectangle.h */,
- );
- name = positioning;
- sourceTree = "";
- };
- 6A7EBAAF199594E266A2AABC /* buffers */ = {
- isa = PBXGroup;
- children = (
- 1719057E5D9514D7DD88DEB9 /* juce_AudioChannelSet.cpp */,
- D7689628C83E6E2DB2341628 /* juce_AudioChannelSet.h */,
- BD290FDCC12F4ADF00DAD43B /* juce_AudioDataConverters.cpp */,
- FDB3638BA6DA63B26AB72151 /* juce_AudioDataConverters.h */,
- 0E18DB38D8B88859C5D16D11 /* juce_AudioSampleBuffer.h */,
- 9C75C797BAEC7A8B9693A06B /* juce_FloatVectorOperations.cpp */,
- 340CD5C7C9744CCCBE3AC335 /* juce_FloatVectorOperations.h */,
- );
- name = buffers;
- sourceTree = "";
- };
- 6C45D7ACBD9C3F8D5B5527AD /* broadcasters */ = {
- isa = PBXGroup;
- children = (
- 1FF09BE12A8EE7359DEB6A11 /* juce_ActionBroadcaster.cpp */,
- 72D97C35265816BF84B17A64 /* juce_ActionBroadcaster.h */,
- D07C119AB16FE4E41B441B71 /* juce_ActionListener.h */,
- D2A1AACEFAB1D922788314A6 /* juce_AsyncUpdater.cpp */,
- 4E93F48CAB3C538054B0D9B6 /* juce_AsyncUpdater.h */,
- 67EE78D1C669F6DDED31CB39 /* juce_ChangeBroadcaster.cpp */,
- 8646E594783C3E937A259EEE /* juce_ChangeBroadcaster.h */,
- 10AAEECABC6BA65A3D2C4933 /* juce_ChangeListener.h */,
- );
- name = broadcasters;
- sourceTree = "";
- };
- 6C8E42821ED5F48D5E1162DF /* documents */ = {
- isa = PBXGroup;
- children = (
- F312C15C8FF357815A5D852D /* juce_FileBasedDocument.cpp */,
- 6897A03FBCF6F3E3FE02DD69 /* juce_FileBasedDocument.h */,
- );
- name = documents;
- sourceTree = "";
- };
- 6D10CDFC1618B6213AFBE599 /* juce_audio_devices */ = {
- isa = PBXGroup;
- children = (
- D65E79E69A55F01F0AC7917D /* audio_io */,
- C80A9F785F2081A97227C18E /* midi_io */,
- F6BD837B724D3DDF240ABC40 /* native */,
- 0226D256277F3CB1491B9CFB /* sources */,
- CAC8EEB08140F6C3189606EC /* juce_audio_devices.cpp */,
- 3FFE8EE77F46A343C6D7464E /* juce_audio_devices.mm */,
- D02263425E49C20B4A8CD405 /* juce_audio_devices.h */,
- );
- name = juce_audio_devices;
- sourceTree = "";
- };
- 75D68641653904AEADEE04DB /* sampler */ = {
- isa = PBXGroup;
- children = (
- 441A0BB8FD08721B0768A41C /* juce_Sampler.cpp */,
- 2B6844B8253422926CF12456 /* juce_Sampler.h */,
- );
- name = sampler;
- sourceTree = "";
- };
- 76167C852117860212C07E43 /* codecs */ = {
- isa = PBXGroup;
- children = (
- 0805213889487A2742210837 /* flac */,
- 1D007C9159A56613F908E67B /* oggvorbis */,
- 1311A028E6551920CCB23899 /* juce_AiffAudioFormat.cpp */,
- 2799B7075032596236A1A6C4 /* juce_AiffAudioFormat.h */,
- 457AE3EFAEB98FE93CEB0ACF /* juce_CoreAudioFormat.cpp */,
- 0798ABC473768B7DA59020BB /* juce_CoreAudioFormat.h */,
- 434FD5F26F8F5052AA287287 /* juce_FlacAudioFormat.cpp */,
- 64045131E5C2BA8A8DE951BB /* juce_FlacAudioFormat.h */,
- 7736BA69BFD6B79E44DCF9D6 /* juce_LAMEEncoderAudioFormat.cpp */,
- 41EA8B9F834209FF197ECE40 /* juce_LAMEEncoderAudioFormat.h */,
- D49A5F16D99EF86770359BBD /* juce_MP3AudioFormat.cpp */,
- 23C4B5A7859ACA959F99FDE9 /* juce_MP3AudioFormat.h */,
- 8079D10F25DE8A660DFD7F97 /* juce_OggVorbisAudioFormat.cpp */,
- 6D105609475B730F812FE7BB /* juce_OggVorbisAudioFormat.h */,
- 49D0C33F5968B4B16D73521F /* juce_QuickTimeAudioFormat.cpp */,
- 46EA57BC815C91944C720D59 /* juce_QuickTimeAudioFormat.h */,
- 04B6090AAC1B334B1F121BE0 /* juce_WavAudioFormat.cpp */,
- 98536B7D7BF6DCCC121EF75F /* juce_WavAudioFormat.h */,
- 0697A131C2572A76CBC3A2D4 /* juce_WindowsMediaAudioFormat.cpp */,
- C0DD1473C48AEF7B3AB0087D /* juce_WindowsMediaAudioFormat.h */,
- );
- name = codecs;
- sourceTree = "";
- };
- 78E92DC518143D98EB5F9ADA /* format */ = {
- isa = PBXGroup;
- children = (
- 3B27E4A68284DA2C27655D59 /* juce_AudioPluginFormat.cpp */,
- 8ABBC420D650176FC816CA90 /* juce_AudioPluginFormat.h */,
- D886F31628398C6418B6FBF1 /* juce_AudioPluginFormatManager.cpp */,
- B4B445D0B8FF9D563C2F7F46 /* juce_AudioPluginFormatManager.h */,
- );
- name = format;
- sourceTree = "";
- };
- 7B92471FB5C0051679A2E95C /* scanning */ = {
- isa = PBXGroup;
- children = (
- 63690D22628914EA9BE61A6B /* juce_KnownPluginList.cpp */,
- BA06C53C74A8510DD172D631 /* juce_KnownPluginList.h */,
- 70D730CB666E9D486B44A2AF /* juce_PluginDirectoryScanner.cpp */,
- C596B16782A9C4D0C6EB0BCA /* juce_PluginDirectoryScanner.h */,
- 4CCFA4612BCBD5FCEB6E02E0 /* juce_PluginListComponent.cpp */,
- B3E818A7CFAFA880F238BCC8 /* juce_PluginListComponent.h */,
- );
- name = scanning;
- sourceTree = "";
- };
- 80EEFAF487889674F6EF1583 /* messages */ = {
- isa = PBXGroup;
- children = (
- 2317A757B8847CE1AE30010F /* juce_ApplicationBase.cpp */,
- 8221F414FAE8FBF996CBF033 /* juce_ApplicationBase.h */,
- 676856EAC9E9FFB013E6B910 /* juce_CallbackMessage.h */,
- FAF382A2237B019DC61920B4 /* juce_DeletedAtShutdown.cpp */,
- 66FEE3D850AB3A3D9FACAAE5 /* juce_DeletedAtShutdown.h */,
- 42D58F7C9468DB8F354B353F /* juce_Initialisation.h */,
- 85D8D664D73759C455C4E8DC /* juce_Message.h */,
- 0A986A71F3920D38E7D88F58 /* juce_MessageListener.cpp */,
- 2AC4F829CD8C78F19827A695 /* juce_MessageListener.h */,
- 41AB492EEF462863E50AF460 /* juce_MessageManager.cpp */,
- 8559A01D9B969E13A40980C6 /* juce_MessageManager.h */,
- 9AB6CB5AF2F228CAC1AE63D6 /* juce_MountedVolumeListChangeDetector.h */,
- 184CE8BA435703F28975DC5D /* juce_NotificationType.h */,
- );
- name = messages;
- sourceTree = "";
- };
- 84EC8ECF8486B94F4750630F /* visualisers */ = {
- isa = PBXGroup;
- children = (
- B3CD18208A4368D7AE29D706 /* juce_BitmapLEDProgram.cpp */,
- 1EAF33874D8D4F13676C412C /* juce_BitmapLEDProgram.h */,
- C6A122F6B606753C30C30BD2 /* juce_DrumPadLEDProgram.cpp */,
- AD7225D561558BAFDF65BBC7 /* juce_DrumPadLEDProgram.h */,
- );
- name = visualisers;
- sourceTree = "";
- };
- 8B7CDF2D950588E762525811 /* juce_events */ = {
- isa = PBXGroup;
- children = (
- 6C45D7ACBD9C3F8D5B5527AD /* broadcasters */,
- D70DFE1F0FB32A198928B375 /* interprocess */,
- 80EEFAF487889674F6EF1583 /* messages */,
- DB244ED32E405D91AA96D9C7 /* native */,
- D2EB26DAED839AE88CAB724A /* timers */,
- 193954F9CF9005014377F9FF /* juce_events.cpp */,
- 55EFBD6183E831FBD8826325 /* juce_events.mm */,
- BEA1459932A75A2D6AAD4B43 /* juce_events.h */,
- );
- name = juce_events;
- sourceTree = "";
- };
- 8BA02E9DB3A1D973203FAE5A /* native */ = {
- isa = PBXGroup;
- children = (
- A4B659039C636AA90C05767F /* juce_android_BluetoothMidiDevicePairingDialogue.cpp */,
- 7498ED1709143C20C79DB1E2 /* juce_ios_BluetoothMidiDevicePairingDialogue.mm */,
- 8A279F88C2047651F58628D1 /* juce_linux_AudioCDReader.cpp */,
- 1BD83CC88D6EA454CE3CC746 /* juce_linux_BluetoothMidiDevicePairingDialogue.cpp */,
- 639AEE67CBD131D3D160C094 /* juce_mac_AudioCDBurner.mm */,
- 5D065FB649082368A82A4D7E /* juce_mac_AudioCDReader.mm */,
- CD4633C9F9DA366C76E4B92A /* juce_mac_BluetoothMidiDevicePairingDialogue.mm */,
- 6D8CBDEA7BD024FC9E2875F3 /* juce_win_BluetoothMidiDevicePairingDialogue.cpp */,
- 75D8AD14EB3D9985A3770C83 /* juce_win32_AudioCDBurner.cpp */,
- D848C25C312A0D62457C3730 /* juce_win32_AudioCDReader.cpp */,
- );
- name = native;
- sourceTree = "";
- };
- 8E26D163EE3DCAE501FEC883 /* placement */ = {
- isa = PBXGroup;
- children = (
- F075BDDDD4F7DBB900BB457B /* juce_Justification.h */,
- 13F0C5C5B5775E09051D19D0 /* juce_RectanglePlacement.cpp */,
- 2B64FDC069A6D6C03128F3C3 /* juce_RectanglePlacement.h */,
- );
- name = placement;
- sourceTree = "";
- };
- 8FF38470A066ACA3CCA5DDE8 /* utils */ = {
- isa = PBXGroup;
- children = (
- BEB701ADA012A1394ACCDD18 /* juce_OpenGLAppComponent.cpp */,
- 64F35E547771BD3A4ABFDB0D /* juce_OpenGLAppComponent.h */,
- );
- name = utils;
- sourceTree = "";
- };
- 93858860095307EE90AF2FCD /* undomanager */ = {
- isa = PBXGroup;
- children = (
- E0CD810D85D163FCA2E05D6B /* juce_UndoableAction.h */,
- 69571EA44314BEC40565D70D /* juce_UndoManager.cpp */,
- 0C59026808740853C23AE185 /* juce_UndoManager.h */,
- );
- name = undomanager;
- sourceTree = "";
- };
- 95659821E46C968DB6384EB1 /* zip */ = {
- isa = PBXGroup;
- children = (
- B5FF8EBFDC0215A766098119 /* zlib */,
- 132DA30E80054A4CB1682F5C /* juce_GZIPCompressorOutputStream.cpp */,
- A66CEA1922F1866BA9A10592 /* juce_GZIPCompressorOutputStream.h */,
- 3228E413B22DEEBDBA7ABF83 /* juce_GZIPDecompressorInputStream.cpp */,
- EAB8F9E9C69FDA9046914C57 /* juce_GZIPDecompressorInputStream.h */,
- ED351CFC37C81F20B6D6B01E /* juce_ZipFile.cpp */,
- 7433092862D26C58AF93AE62 /* juce_ZipFile.h */,
- );
- name = zip;
- sourceTree = "";
- };
- 9757775CBE25913D73CC0497 /* private */ = {
- isa = PBXGroup;
- children = (
- 05F4C8ED36A49DC106309AB3 /* all.h */,
- 76F731D0553785FDCEC0CCC4 /* bitmath.h */,
- A9819750A6C5E908DBE3A309 /* bitreader.h */,
- 865CC068EAD0A9E54C77BBB1 /* bitwriter.h */,
- B9C392935DD8F5D8D0ABCF2D /* cpu.h */,
- 4A46906896AD28D34B0218F3 /* crc.h */,
- D4F1502ACF6109D1AA059455 /* fixed.h */,
- D1E81EF119824692C769695E /* float.h */,
- 8DAD27599B4D76AA741E2F94 /* format.h */,
- B2015E328522144C463397DC /* lpc.h */,
- D69A8DC089FEB04DDEE6E9AC /* md5.h */,
- 9F0CD34B5E00755ED32C633A /* memory.h */,
- 7352B3C338D6C18D80BA03B6 /* metadata.h */,
- 8A974C1E78DF69BEDF4760D0 /* stream_encoder.h */,
- F9AB49CA88C89C26093CB1B6 /* stream_encoder_framing.h */,
- D2B02C379123F7D621B82B6D /* window.h */,
- );
- name = private;
- sourceTree = "";
- };
- 9D7B25358BD5C5AA07B5EC21 /* app_properties */ = {
- isa = PBXGroup;
- children = (
- 5D55C700506847B0C3E7992A /* juce_ApplicationProperties.cpp */,
- AB86D69CE5472E765749D5E2 /* juce_ApplicationProperties.h */,
- 8195E5CA20B1E6DE88148B41 /* juce_PropertiesFile.cpp */,
- 82CD7AB6C8788920318BFFF7 /* juce_PropertiesFile.h */,
- );
- name = app_properties;
- sourceTree = "";
- };
- 9EA2AF2B5A0CE721D5150106 /* format_types */ = {
- isa = PBXGroup;
- children = (
- C2F642C860D5E78D3E750E90 /* juce_AU_Shared.h */,
- C498F38B2EE41174DCA27032 /* juce_AudioUnitPluginFormat.h */,
- BDC3A2443CA7C4A197AA7FD8 /* juce_AudioUnitPluginFormat.mm */,
- 898A95E0423C95670F8E00D9 /* juce_LADSPAPluginFormat.cpp */,
- E1604416242DA5613762B851 /* juce_LADSPAPluginFormat.h */,
- 281F71278F1CE0C02ECB2EC4 /* juce_VST3Common.h */,
- FA489194866ACCE37578D4E8 /* juce_VST3Headers.h */,
- 8F577D253454A9B7795B976D /* juce_VST3PluginFormat.cpp */,
- 242A96C7860436DE347CD432 /* juce_VST3PluginFormat.h */,
- 2D40263014314146060C284D /* juce_VSTCommon.h */,
- DDF5573CB40B2B3D2F1DB780 /* juce_VSTInterface.h */,
- 38791AEE23AA4968433982F6 /* juce_VSTMidiEventList.h */,
- 516684CBCB8ACBA9E44E4BFD /* juce_VSTPluginFormat.cpp */,
- A705E85372EBA8B0351E477E /* juce_VSTPluginFormat.h */,
- );
- name = format_types;
- sourceTree = "";
- };
- A465EBBDDD9E1BC6010869AD /* streams */ = {
- isa = PBXGroup;
- children = (
- 601F5CB6345EC149C773CAEA /* juce_BufferedInputStream.cpp */,
- E9AB8309552BD30792B23FCC /* juce_BufferedInputStream.h */,
- D5EAF5AB7E64FA98BFCCA1A7 /* juce_FileInputSource.cpp */,
- 911142143AB852FE25C27BEA /* juce_FileInputSource.h */,
- 785C1C92060466C4968202D0 /* juce_InputSource.h */,
- CEB18F1BEA68F075D50BD6CD /* juce_InputStream.cpp */,
- 920EC1092F93EC048706028A /* juce_InputStream.h */,
- 5247BE9855469B053C368F24 /* juce_MemoryInputStream.cpp */,
- 60200D25748FFB8436112D85 /* juce_MemoryInputStream.h */,
- 66AE29E32EB365E37B34FDD2 /* juce_MemoryOutputStream.cpp */,
- BE27A021A21278415868C466 /* juce_MemoryOutputStream.h */,
- C0DE626D028AA9B00127F9BD /* juce_OutputStream.cpp */,
- E08C436C85606AA1432C5C24 /* juce_OutputStream.h */,
- 5329122490F95D7339752A4E /* juce_SubregionStream.cpp */,
- 6509144104CFCCC2661C84AD /* juce_SubregionStream.h */,
- );
- name = streams;
- sourceTree = "";
- };
- AAC33A3115E54835F98F0BF5 /* misc */ = {
- isa = PBXGroup;
- children = (
- 9E742F2C0DCF21E717C69EC2 /* juce_Result.cpp */,
- EEF550D385BC7AEA1172FE5A /* juce_Result.h */,
- D58546D794E5BEBD2F10412A /* juce_RuntimePermissions.cpp */,
- 9A61D74797BF0F66E4942D15 /* juce_RuntimePermissions.h */,
- 448196AC5604B89ED7BC2086 /* juce_Uuid.cpp */,
- 518466F491B5DC8B80063C73 /* juce_Uuid.h */,
- 1B3FB995CF83C1B588F8F9BF /* juce_WindowsRegistry.h */,
- );
- name = misc;
- sourceTree = "";
- };
- AAD6D4686EC957A745989577 /* containers */ = {
- isa = PBXGroup;
- children = (
- 3B9D6C4308A396C6953A2B19 /* juce_AbstractFifo.cpp */,
- CCA01BB46B276DA072718679 /* juce_AbstractFifo.h */,
- E0A6645BF35A873306104E19 /* juce_Array.h */,
- 2E3883BEB89636D207BB88B5 /* juce_ArrayAllocationBase.h */,
- 02CE3CA00AB6A0E0C6EA7C45 /* juce_DynamicObject.cpp */,
- 3851E8BB5BD4F284C8489033 /* juce_DynamicObject.h */,
- F3E5F7DB01292CFF33EE3971 /* juce_ElementComparator.h */,
- E799718167E8643572309303 /* juce_HashMap.h */,
- F6F326524DED75455C217520 /* juce_LinkedListPointer.h */,
- 5660E3A821F2F566AAA0DCC3 /* juce_ListenerList.cpp */,
- EE0075DEF550FBC64F7D8B9E /* juce_ListenerList.h */,
- FBB15A363BAC741113987D32 /* juce_NamedValueSet.cpp */,
- 1655D2F156B917E893A29FEA /* juce_NamedValueSet.h */,
- 09BB66CFEE9A832CFCF2CCD2 /* juce_OwnedArray.h */,
- 53C70300D106400F1AF2C123 /* juce_PropertySet.cpp */,
- 9ED1E59E0EDEB57492B8B339 /* juce_PropertySet.h */,
- 47787A636075A669F8FFA434 /* juce_ReferenceCountedArray.h */,
- 0A268ACBB1D36A862A755465 /* juce_ScopedValueSetter.h */,
- 255D982E8E88EC37AF5D58CB /* juce_SortedSet.h */,
- C7EE187163451061AE2A3153 /* juce_SparseSet.h */,
- 2AAF0E53F74A1B4AD7B0684A /* juce_Variant.cpp */,
- 259D44F4C84C586F476BBA0C /* juce_Variant.h */,
- );
- name = containers;
- sourceTree = "";
- };
- B52FBC4342C378AD64834F80 /* players */ = {
- isa = PBXGroup;
- children = (
- B60BDAD15C5339F96D367450 /* juce_AudioProcessorPlayer.cpp */,
- 4A4FAB8C91193D662A4ACFEF /* juce_AudioProcessorPlayer.h */,
- DE703F44A06F45D75C122234 /* juce_SoundPlayer.cpp */,
- 425B547B9020991C73D4D65E /* juce_SoundPlayer.h */,
- );
- name = players;
- sourceTree = "";
- };
- B5FF8EBFDC0215A766098119 /* zlib */ = {
- isa = PBXGroup;
- children = (
- 13B537AE02190300E0DA5322 /* adler32.c */,
- 857C1BA3AF5C0210A8711464 /* compress.c */,
- 734EDE0CB353BEB637FB28DF /* crc32.c */,
- D051EB3531C22746F7AF08E8 /* crc32.h */,
- CF0A728B82AEB2D5931DB6A3 /* deflate.c */,
- B213182B13BE510B8B96939D /* deflate.h */,
- 303AA74F7D9B6F2E8804A2C1 /* infback.c */,
- 4A7D2BA623D3A1DE6B99DF1B /* inffast.c */,
- 0063493D90122A5E9F9000A5 /* inffast.h */,
- 0CC5574662C83E89FB9A4F6A /* inffixed.h */,
- 9F8A9B400F29F93177C13068 /* inflate.c */,
- 99D1B54C81E3B11E5A515449 /* inflate.h */,
- 81F5049B4903492A6902FAE3 /* inftrees.c */,
- BD2ACF51D2EDBB8D946C168B /* inftrees.h */,
- 6C75E5D335754A26EDB64C0E /* trees.c */,
- 321F587832C3C6C024BDD0E0 /* trees.h */,
- 62D3C5C70DDBEEE7E16DD1F3 /* uncompr.c */,
- 9621212C05067BDBB1EDC4B0 /* zconf.h */,
- 699EFC7DCE06711BB6C07F36 /* zconf.in.h */,
- D2785AE695E6FDF8147EEA2B /* zlib.h */,
- BEE43FF11F7D88506B3B6E90 /* zutil.c */,
- C1474E839569EDA193F71BBC /* zutil.h */,
- );
- name = zlib;
- sourceTree = "";
- };
- BC17C7FEA1883ECACA434368 /* contexts */ = {
- isa = PBXGroup;
- children = (
- CE2F5008560ED985C0B8B5EA /* juce_GraphicsContext.cpp */,
- 43573D003FDD2FEA313A8B2F /* juce_GraphicsContext.h */,
- E1C8BA4CF79BCC3B0E758A9F /* juce_LowLevelGraphicsContext.h */,
- 0EE7D572D91B088532018993 /* juce_LowLevelGraphicsPostScriptRenderer.cpp */,
- 9FF679F47F9901DBEE96E2F4 /* juce_LowLevelGraphicsPostScriptRenderer.h */,
- 703BF13C50FBAA0690EB819D /* juce_LowLevelGraphicsSoftwareRenderer.cpp */,
- 752759743BA54E6A4E34EBC4 /* juce_LowLevelGraphicsSoftwareRenderer.h */,
- );
- name = contexts;
- sourceTree = "";
- };
- BCCE53D07CFE5BBCF58B00F5 /* drawables */ = {
- isa = PBXGroup;
- children = (
- 31AA33CB3A5577B36EE0017D /* juce_Drawable.cpp */,
- FAF5B61706BC2CD2EB68B550 /* juce_Drawable.h */,
- FF748D1941B41C1794A241EA /* juce_DrawableComposite.cpp */,
- C08E2831019572E220A71669 /* juce_DrawableComposite.h */,
- 23C9352D9EEFA048506947EE /* juce_DrawableImage.cpp */,
- 272EA32D51A8C8AD73A45D9D /* juce_DrawableImage.h */,
- 76597C68627FE0AF43DEC454 /* juce_DrawablePath.cpp */,
- 1CF24016C5884A75DE865988 /* juce_DrawablePath.h */,
- 02633833709D15831BB6A4B8 /* juce_DrawableRectangle.cpp */,
- E4FE73FA8F2ADD14B7E7812E /* juce_DrawableRectangle.h */,
- FD2C8067AE30B6CEE4CE988F /* juce_DrawableShape.cpp */,
- 57BFD80A8E5673123D9004B8 /* juce_DrawableShape.h */,
- 5687068AA9A10610CCCAE92C /* juce_DrawableText.cpp */,
- A6722561E959322FC2D3F8D7 /* juce_DrawableText.h */,
- DEB1AA246A3B2804C43992C8 /* juce_SVGParser.cpp */,
- );
- name = drawables;
- sourceTree = "";
- };
- C09481DD2BAC5454AB6D8772 /* BlocksMonitor */ = {
- isa = PBXGroup;
- children = (
- 545FE4C9D51A36132F172336 /* Source */,
- );
- name = BlocksMonitor;
- sourceTree = "";
- };
- C30D3AF040D73E55B642D612 /* code_editor */ = {
- isa = PBXGroup;
- children = (
- 7F81AFE4D54AA74B17E81899 /* juce_CodeDocument.cpp */,
- C6438C01636AC02F3ACEF42D /* juce_CodeDocument.h */,
- 00D6F7A03576F399711D5ABC /* juce_CodeEditorComponent.cpp */,
- B86B55CF411F403FBE6EDD8B /* juce_CodeEditorComponent.h */,
- 26083ECFA60A676C6365DA3D /* juce_CodeTokeniser.h */,
- 4D84F3F6235C49D0ABAF4885 /* juce_CPlusPlusCodeTokeniser.cpp */,
- 8A9F1BF21DEC92A64F468E9C /* juce_CPlusPlusCodeTokeniser.h */,
- 9DCF20D6DD5D63567ED73A68 /* juce_CPlusPlusCodeTokeniserFunctions.h */,
- 5E0AA1FA0367D0B8D32A5FDB /* juce_LuaCodeTokeniser.cpp */,
- 52C4BC3D28F8184BC2F6B022 /* juce_LuaCodeTokeniser.h */,
- 6F303FBDC38398256ADA7BA7 /* juce_XMLCodeTokeniser.cpp */,
- 4A7DB9A482CFE6B1FCCA6174 /* juce_XMLCodeTokeniser.h */,
- );
- name = code_editor;
- sourceTree = "";
- };
- C46BAD19056C6AFCB61C8747 /* Juce Modules */ = {
- isa = PBXGroup;
- children = (
- D50B2337B08D012224137BB2 /* juce_audio_basics */,
- 6D10CDFC1618B6213AFBE599 /* juce_audio_devices */,
- 2789350038E8D9166DFD8868 /* juce_audio_formats */,
- 15645B0CE83271714833C3A1 /* juce_audio_processors */,
- 1D9FE5BF60A6EF6602D24565 /* juce_audio_utils */,
- 48B6293FB2A5EC097988691B /* juce_blocks_basics */,
- 5CC42EF0177D6F44F26F0570 /* juce_core */,
- EE7F58530DF1E8A70FBA260B /* juce_data_structures */,
- 8B7CDF2D950588E762525811 /* juce_events */,
- FB0B308B3B55C9CE28D2A00A /* juce_graphics */,
- 54AC93CB6D9A615C39CB06B5 /* juce_gui_basics */,
- 62BBDE7395E0E3796E989B57 /* juce_gui_extra */,
- 202A764FF05218C5841E9086 /* juce_opengl */,
- );
- name = "Juce Modules";
- sourceTree = "";
- };
- C47AFB64084B93622220C070 /* sources */ = {
- isa = PBXGroup;
- children = (
- AED53153DA5BEE178C227DDF /* juce_AudioSource.h */,
- 488FA6954BBFB6694C21AEB4 /* juce_BufferingAudioSource.cpp */,
- E5F243A42AFB91068026ADA4 /* juce_BufferingAudioSource.h */,
- F5B9A3BC6E33C98DFD9C9246 /* juce_ChannelRemappingAudioSource.cpp */,
- F597712CD0CFE5D1F1145B83 /* juce_ChannelRemappingAudioSource.h */,
- FBEF609D497831012E3D8829 /* juce_IIRFilterAudioSource.cpp */,
- 72F093BD43569F666B148B27 /* juce_IIRFilterAudioSource.h */,
- F75524422C20C513FC73502B /* juce_MixerAudioSource.cpp */,
- 9B83893AFBF95FF07B65E433 /* juce_MixerAudioSource.h */,
- 6C783023901E82078E0F2435 /* juce_PositionableAudioSource.h */,
- DC20E4741780F1519099EA3C /* juce_ResamplingAudioSource.cpp */,
- 21E9D0E35F84BCF5897B262C /* juce_ResamplingAudioSource.h */,
- 88EE9BAF87CBE950013CD3AB /* juce_ReverbAudioSource.cpp */,
- 68F432AE5DFBDF416D381D69 /* juce_ReverbAudioSource.h */,
- B0A159D25E2692435B03ACC0 /* juce_ToneGeneratorAudioSource.cpp */,
- DDA658B496D43C8BD1DF3410 /* juce_ToneGeneratorAudioSource.h */,
- );
- name = sources;
- sourceTree = "";
- };
- C4EB51DE075E129C945DD29E /* keyboard */ = {
- isa = PBXGroup;
- children = (
- 3DE8B0B99FE443C92EE32CCF /* juce_CaretComponent.cpp */,
- AD2E097A960F2A4A946CF177 /* juce_CaretComponent.h */,
- 687551D7CBDC73E3D249A30E /* juce_KeyboardFocusTraverser.cpp */,
- 60001B432129FD5855629F3E /* juce_KeyboardFocusTraverser.h */,
- 19CDD6C2AE371BE31174D5F1 /* juce_KeyListener.cpp */,
- 78D3A157D1DCAB72DC7D4FF2 /* juce_KeyListener.h */,
- 332586DA099D853A0202054A /* juce_KeyPress.cpp */,
- C8F3A77AFEF173C097EB08CD /* juce_KeyPress.h */,
- AB7710558CEE0A3C649AD2AA /* juce_ModifierKeys.cpp */,
- 0AA6BBC6867F7EEA5C10722A /* juce_ModifierKeys.h */,
- 1DCD9527835FD4771E959818 /* juce_SystemClipboard.h */,
- 948ACEC6E5E7FB3963593D14 /* juce_TextEditorKeyMapper.h */,
- 7EC2BB0FBA7BEC433B901162 /* juce_TextInputTarget.h */,
- );
- name = keyboard;
- sourceTree = "";
- };
- C6780B6FBC8E601F934FC158 /* colour */ = {
- isa = PBXGroup;
- children = (
- B2EA904753A758EA2A653D82 /* juce_Colour.cpp */,
- 39B450967D7D7D4B1E1ECED3 /* juce_Colour.h */,
- 7C137769611C5A269332467B /* juce_ColourGradient.cpp */,
- 4DCF8D8075DD05492643A922 /* juce_ColourGradient.h */,
- 3B2A1B51E2C33786098AAE49 /* juce_Colours.cpp */,
- 9209F549B676E740E0B83FF7 /* juce_Colours.h */,
- 6A95798F17AF7D10D2677BD7 /* juce_FillType.cpp */,
- F6EB5AF7554635EB441568FE /* juce_FillType.h */,
- C9EEE195FD4C2C90915219FE /* juce_PixelFormats.h */,
- );
- name = colour;
- sourceTree = "";
- };
- C746B6625833C2CEA0E19D07 /* mouse */ = {
- isa = PBXGroup;
- children = (
- 77847C660F3D9562BD1469FB /* juce_ComponentDragger.cpp */,
- E222435250E8A57C88E441F8 /* juce_ComponentDragger.h */,
- 721BC1EF4670F969B327BCFE /* juce_DragAndDropContainer.cpp */,
- E6335D36399077078BC78ECC /* juce_DragAndDropContainer.h */,
- 060D039A8903F16757040051 /* juce_DragAndDropTarget.h */,
- FD456DC8A0AA86BA70897D1A /* juce_FileDragAndDropTarget.h */,
- 4A65ADBD6816BF0C9FE56E0F /* juce_LassoComponent.h */,
- 57436F09E9FE1CB619681DE1 /* juce_MouseCursor.cpp */,
- D0F5CD629E1D7C466E87A7E6 /* juce_MouseCursor.h */,
- 15BEE6B9299B0E97F16C07D8 /* juce_MouseEvent.cpp */,
- 7BD3D12701E20AD0509702C5 /* juce_MouseEvent.h */,
- 31531D45E19AEC8E3EC90C90 /* juce_MouseInactivityDetector.cpp */,
- 13ECF6CF71CA92E4E1F845C6 /* juce_MouseInactivityDetector.h */,
- EA1AA20402977B302BF5D363 /* juce_MouseInputSource.cpp */,
- C9F2ECCBC4868DE614C90303 /* juce_MouseInputSource.h */,
- B3A5905404A72FDE0888DF46 /* juce_MouseListener.cpp */,
- EAEA770719580DF72D030505 /* juce_MouseListener.h */,
- 66AF1158C662CB915EE1F216 /* juce_SelectedItemSet.h */,
- 0E4C2A01524E87834E2FB4B2 /* juce_TextDragAndDropTarget.h */,
- EEC74F1DE224D270462503B0 /* juce_TooltipClient.h */,
- );
- name = mouse;
- sourceTree = "";
- };
- C7F69DEF5735EE1DE8040CFE /* lookandfeel */ = {
- isa = PBXGroup;
- children = (
- 49E68BE55F02C76D1A39B8E9 /* juce_LookAndFeel.cpp */,
- 1072ED1E4C961324C65D3305 /* juce_LookAndFeel.h */,
- 9D08A5F790FC71D1BE770D20 /* juce_LookAndFeel_V1.cpp */,
- 23543D16B95632B1C14B943E /* juce_LookAndFeel_V1.h */,
- 0DE80059716B40D2D9BBEFC9 /* juce_LookAndFeel_V2.cpp */,
- 77F678CCA2C005969380CA48 /* juce_LookAndFeel_V2.h */,
- E8A878C2CE1A7EB1EEF6B92E /* juce_LookAndFeel_V3.cpp */,
- 19BF72ABEB3B9D8D776744EE /* juce_LookAndFeel_V3.h */,
- );
- name = lookandfeel;
- sourceTree = "";
- };
- C80A9F785F2081A97227C18E /* midi_io */ = {
- isa = PBXGroup;
- children = (
- 54EDF505CD9D19D1FD59D612 /* juce_MidiInput.h */,
- 70A3109F4B0C80AA941F513C /* juce_MidiMessageCollector.cpp */,
- B67DEB7456F7A7FE9E99F5AC /* juce_MidiMessageCollector.h */,
- 86C050562945072E55B2304F /* juce_MidiOutput.cpp */,
- 22A1487B587036337AC48F11 /* juce_MidiOutput.h */,
- );
- name = midi_io;
- sourceTree = "";
- };
- C91FF17401D512FD0BC96A03 /* values */ = {
- isa = PBXGroup;
- children = (
- 1CC0B58D7AEA47DADB041C96 /* juce_CachedValue.cpp */,
- 9EA3A564C2056CABF6F64F19 /* juce_CachedValue.h */,
- A3B3FBDBB67F69256BA6A290 /* juce_Value.cpp */,
- 3E7005B5E5C7E2B1EE1FEA55 /* juce_Value.h */,
- A31630141AF03CAE86F4228C /* juce_ValueTree.cpp */,
- 735B02968773FD74934EC9B9 /* juce_ValueTree.h */,
- 9BEA281CBD5878DF1330C6E8 /* juce_ValueTreeSynchroniser.cpp */,
- 5236F7786FD9BFC43D9ABD94 /* juce_ValueTreeSynchroniser.h */,
- );
- name = values;
- sourceTree = "";
- };
- CAD01FA6B80395085918D809 /* buttons */ = {
- isa = PBXGroup;
- children = (
- CBDAC7F54358B29D622C7659 /* juce_ArrowButton.cpp */,
- 398873B7F0980B7D27356464 /* juce_ArrowButton.h */,
- 3BEC5630096C646AACD87205 /* juce_Button.cpp */,
- C4DDAA034449093B3E5A60ED /* juce_Button.h */,
- 02B1467586FBA8F5C471CDCE /* juce_DrawableButton.cpp */,
- 215A5B82922A9A95F68FE7BA /* juce_DrawableButton.h */,
- 7597CCE58D1B95FB4342EA91 /* juce_HyperlinkButton.cpp */,
- B327326ADE69CAEA4410249D /* juce_HyperlinkButton.h */,
- 2736B4003A6B1E2AFB5B0F60 /* juce_ImageButton.cpp */,
- 9AB80400C174A565798B4DC7 /* juce_ImageButton.h */,
- C2B755C206D3AE7B0B4463ED /* juce_ShapeButton.cpp */,
- FC70FA0EABE4EDF87260618B /* juce_ShapeButton.h */,
- 7D272E58C41C4B21A689C487 /* juce_TextButton.cpp */,
- 54FF63024B2057CB82A3009C /* juce_TextButton.h */,
- 0EC222E14CC7DADB74BE6E80 /* juce_ToggleButton.cpp */,
- 0C338FC94EF538E20E3BD3CB /* juce_ToggleButton.h */,
- 7E4D2E09A56241058D485070 /* juce_ToolbarButton.cpp */,
- 737EA145B8366E0A55A8D6A0 /* juce_ToolbarButton.h */,
- );
- name = buttons;
- sourceTree = "";
- };
- CC3BF308E1C5E427BE3CF882 /* geometry */ = {
- isa = PBXGroup;
- children = (
- 21479ABF74938D58A8859E57 /* juce_AffineTransform.cpp */,
- B0276417E1FCAC6415FEC24C /* juce_AffineTransform.h */,
- 16118DB20238C2B904A3FDA7 /* juce_BorderSize.h */,
- FBA7E37B32790A96A06D3D71 /* juce_EdgeTable.cpp */,
- C4F45122F361CE23DDB32596 /* juce_EdgeTable.h */,
- DAFEB9CD6997FA5768A7DBA5 /* juce_Line.h */,
- D9BB56CF58E7421832148DEC /* juce_Path.cpp */,
- C52BA5CFAC5D4DE4CEF2A51D /* juce_Path.h */,
- E844B59EADE8FBB9804FCC9F /* juce_PathIterator.cpp */,
- FF4021F0CFBE14A6FD29CCC1 /* juce_PathIterator.h */,
- 64E3E6EDAFEA1CE0C515588A /* juce_PathStrokeType.cpp */,
- 17B2AAE117564DA4933B70AA /* juce_PathStrokeType.h */,
- 2D2C6DAA3B50438E63266771 /* juce_Point.h */,
- 9B8C599BB498481CB64141B0 /* juce_Rectangle.h */,
- E93C91661F22E59660A807AE /* juce_RectangleList.h */,
- );
- name = geometry;
- sourceTree = "";
- };
- CCAEF77ED7D83EF2AC36927E /* network */ = {
- isa = PBXGroup;
- children = (
- B3A97D5DC77DB3FD2FC5FCEB /* juce_IPAddress.cpp */,
- 31F899D8732CEAF956AA7A72 /* juce_IPAddress.h */,
- AF11A0E66EA77FF9F426CBDD /* juce_MACAddress.cpp */,
- 671BC724698C6A4A159738A6 /* juce_MACAddress.h */,
- C5AC27F3564EF36AAFFAD703 /* juce_NamedPipe.cpp */,
- 190BFEB9E9811F1D73306F79 /* juce_NamedPipe.h */,
- 9EC497EFAB1C323884D011FA /* juce_Socket.cpp */,
- E2778AA90308DEB0DDB6C0DB /* juce_Socket.h */,
- 36D79F468C67AF3D0B800E85 /* juce_URL.cpp */,
- EFD32E4A4A81815891CF54FC /* juce_URL.h */,
- B83449AB719AFDE057B9245B /* juce_WebInputStream.cpp */,
- 170F6D425FF66C0388540225 /* juce_WebInputStream.h */,
- );
- name = network;
- sourceTree = "";
- };
- CDC14C396BA572BB165A74EE /* native */ = {
- isa = PBXGroup;
- children = (
- AFDDCF42011A661D8A965550 /* juce_MissingGLDefinitions.h */,
- 604CC1744C3DFD07E43F6A82 /* juce_OpenGL_android.h */,
- 4227DAE98212844575D0D944 /* juce_OpenGL_ios.h */,
- 2BC6A9CE84273433047F4C50 /* juce_OpenGL_linux.h */,
- D2CEF899F0C7DBD82CF4E7C7 /* juce_OpenGL_osx.h */,
- 007566E450CC50CB63D1C11C /* juce_OpenGL_win32.h */,
- DB116314BC85AB60708C199F /* juce_OpenGLExtensions.h */,
- );
- name = native;
- sourceTree = "";
- };
- CDDFF74DF54842375F1A11B1 /* logging */ = {
- isa = PBXGroup;
- children = (
- 95521385B606A5AF9DC25621 /* juce_FileLogger.cpp */,
- DC7062591F0E20788EDC379E /* juce_FileLogger.h */,
- 99670416B9C5B1427EFDC235 /* juce_Logger.cpp */,
- 4D69C440B571531C56B12E10 /* juce_Logger.h */,
- );
- name = logging;
- sourceTree = "";
- };
- CE23EF4195D4D47D4D94B87F /* littlefoot */ = {
- isa = PBXGroup;
- children = (
- 95DAFF093BC64C4E8AFFAD39 /* juce_LittleFootCompiler.h */,
- E3455619FB6BC525C9407A6D /* juce_LittleFootRemoteHeap.h */,
- F7E2CB260B70E401BF91E236 /* juce_LittleFootRunner.h */,
- 3E18E1893DB1F592952F6E8F /* LittleFoot Language README.txt */,
- );
- name = littlefoot;
- sourceTree = "";
- };
- CEBC87FED7860FF4F8EAFBBC /* files */ = {
- isa = PBXGroup;
- children = (
- 1A58C7E03F2C3D22E356E817 /* juce_DirectoryIterator.cpp */,
- 50FB808D07149E5872D146C8 /* juce_DirectoryIterator.h */,
- 08C26B85297999984DECB587 /* juce_File.cpp */,
- 1896F7A05A4372B4247C34A4 /* juce_File.h */,
- 4A78F089AF9BAFC1586AF196 /* juce_FileFilter.cpp */,
- E4A7590FF79E8EAE3286C76F /* juce_FileFilter.h */,
- B945AE13CE5FA99C9B48D98B /* juce_FileInputStream.cpp */,
- 9BAE8416CA03B3EE29D0DB0D /* juce_FileInputStream.h */,
- 2E735512175F5ADD2853D83D /* juce_FileOutputStream.cpp */,
- EA01768CDAAD4D13D769C371 /* juce_FileOutputStream.h */,
- 1DFD35C6D473DCAEE12C18DF /* juce_FileSearchPath.cpp */,
- 34B3D0B92C86C84AB27BBE90 /* juce_FileSearchPath.h */,
- BE472B6711E509DE55C83D38 /* juce_MemoryMappedFile.h */,
- 932D69952B622B2BCFB904AC /* juce_TemporaryFile.cpp */,
- 012EF1197FF04E76BD620071 /* juce_TemporaryFile.h */,
- 97AD1E50A2BA5069A53B385F /* juce_WildcardFileFilter.cpp */,
- 3A648036804F8E2D52E5B60E /* juce_WildcardFileFilter.h */,
- );
- name = files;
- sourceTree = "";
- };
- D2EB26DAED839AE88CAB724A /* timers */ = {
- isa = PBXGroup;
- children = (
- B46FA7622255695A963FCEA5 /* juce_MultiTimer.cpp */,
- 3E176A88BA217ABC03C93CD0 /* juce_MultiTimer.h */,
- 4F2671111CAD35AA9A14E50A /* juce_Timer.cpp */,
- AFE49D942B97B2FE5BF6345F /* juce_Timer.h */,
- );
- name = timers;
- sourceTree = "";
- };
- D3512F785BA120E54E63C04A /* time */ = {
- isa = PBXGroup;
- children = (
- 925360F7E3AA48D3AC8FC71B /* juce_PerformanceCounter.cpp */,
- D8D329C0D501906C8E581010 /* juce_PerformanceCounter.h */,
- 7C22E5FD3C91AB34CB539E2E /* juce_RelativeTime.cpp */,
- E30FA02A405F056C289608F5 /* juce_RelativeTime.h */,
- EA5D4A0F009B78BF824D7226 /* juce_Time.cpp */,
- E5578FB0E512495116B71F3A /* juce_Time.h */,
- );
- name = time;
- sourceTree = "";
- };
- D42221B44DA511070878FD61 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 3ABF91F41A610658F5B17523 /* Accelerate.framework */,
- 230ECC5997D02F79080DD55D /* AudioToolbox.framework */,
- 0726638325182847094ED297 /* AVFoundation.framework */,
- D4DA6EE18C4F580FC8A220B8 /* CoreAudio.framework */,
- 88A4EE2311F2D063677B1822 /* CoreAudioKit.framework */,
- 8F72A06310DEB2A6E6A0DA18 /* CoreGraphics.framework */,
- B5A57064DFB2BD47270A42E6 /* CoreMIDI.framework */,
- C48524BD8330E2A4710D99FF /* CoreText.framework */,
- 71386FCE19C79DC74F1623FF /* Foundation.framework */,
- BF4AF0A830706A80B2D1ADC5 /* OpenGLES.framework */,
- 6D2AA08C51674AC355C3C4B9 /* QuartzCore.framework */,
- 849DD96FF7656F52F1972F38 /* UIKit.framework */,
- );
- name = Frameworks;
- sourceTree = "";
- };
- D50B2337B08D012224137BB2 /* juce_audio_basics */ = {
- isa = PBXGroup;
- children = (
- 6A7EBAAF199594E266A2AABC /* buffers */,
- 6174AAEB049EF89001A54845 /* effects */,
- 517D48DA3D86D147A2174768 /* midi */,
- DC93E1DF7BCD2B46DCC1F158 /* mpe */,
- C47AFB64084B93622220C070 /* sources */,
- 2C7D50068311979A293C7896 /* synthesisers */,
- 70DB5546A7436EC8159F7825 /* juce_audio_basics.cpp */,
- 7BC44A73343EBF0012783283 /* juce_audio_basics.mm */,
- 8B1B3FA81F246E78CB5F2D99 /* juce_audio_basics.h */,
- );
- name = juce_audio_basics;
- sourceTree = "";
- };
- D65E79E69A55F01F0AC7917D /* audio_io */ = {
- isa = PBXGroup;
- children = (
- 1D9A7BEB060662FBA38DF385 /* juce_AudioDeviceManager.cpp */,
- 3E85FF93FDA0C5C93F8EE3FA /* juce_AudioDeviceManager.h */,
- 1E78B98A70BD5E14381302DC /* juce_AudioIODevice.cpp */,
- F78A0ACB1EADC8578B82664C /* juce_AudioIODevice.h */,
- 9966516477648BBFCF5B0B94 /* juce_AudioIODeviceType.cpp */,
- 67C85156717AC5DD60AD4279 /* juce_AudioIODeviceType.h */,
- F879359E8211BD2E1CFE5FE4 /* juce_SystemAudioVolume.h */,
- );
- name = audio_io;
- sourceTree = "";
- };
- D70DFE1F0FB32A198928B375 /* interprocess */ = {
- isa = PBXGroup;
- children = (
- 77E856C4EDFB5608F03EBC99 /* juce_ConnectedChildProcess.cpp */,
- C6144891191A6E1C95E21A25 /* juce_ConnectedChildProcess.h */,
- DFA0BD689C1C350DD66B8F10 /* juce_InterprocessConnection.cpp */,
- AB90BC12E5EAC2E1A7FDF691 /* juce_InterprocessConnection.h */,
- D67495EC058C6FDEB8C0FA6A /* juce_InterprocessConnectionServer.cpp */,
- 148AC48B82DFEC98FECBF5AC /* juce_InterprocessConnectionServer.h */,
- );
- name = interprocess;
- sourceTree = "";
- };
- D77358461927DD290D45860D /* misc */ = {
- isa = PBXGroup;
- children = (
- C6FFBF028815A3D4D197C1ED /* juce_AnimatedAppComponent.cpp */,
- D1C39914B1CDF9FDCF40F03C /* juce_AnimatedAppComponent.h */,
- 7991C45FB3CCD45D46A7EBDE /* juce_AppleRemote.h */,
- E30A6EED52F978044DBCB34C /* juce_BubbleMessageComponent.cpp */,
- 9CD5DB53DE796873DC2EE4E0 /* juce_BubbleMessageComponent.h */,
- 9DB368AB3A1712F5E741DF8E /* juce_ColourSelector.cpp */,
- AF4D1F728B7B429CBDEDC468 /* juce_ColourSelector.h */,
- 541BEA0E11518594C696094F /* juce_KeyMappingEditorComponent.cpp */,
- 27609A10FE09083D4C31AC75 /* juce_KeyMappingEditorComponent.h */,
- D7BEC4451FBA09761F065B12 /* juce_LiveConstantEditor.cpp */,
- 515145EF420E45BB7E0402C5 /* juce_LiveConstantEditor.h */,
- 9C2237E651B7A187DCBB75B9 /* juce_PreferencesPanel.cpp */,
- 78655006F91EC8E5C99A6991 /* juce_PreferencesPanel.h */,
- CD875963C6F9C05BA11A4AC9 /* juce_RecentlyOpenedFilesList.cpp */,
- B19D61C3D2D7BF60030FD1E2 /* juce_RecentlyOpenedFilesList.h */,
- 48FC93C2649A6B6B478AB4B8 /* juce_SplashScreen.cpp */,
- 77D91228977E55D6C4D6C97A /* juce_SplashScreen.h */,
- A6EA6620D7460A9405F56693 /* juce_SystemTrayIconComponent.cpp */,
- 54EB9618ADF1901432C2345F /* juce_SystemTrayIconComponent.h */,
- 40B2DF2617C73C0928FF7D93 /* juce_WebBrowserComponent.h */,
- );
- name = misc;
- sourceTree = "";
- };
- DB244ED32E405D91AA96D9C7 /* native */ = {
- isa = PBXGroup;
- children = (
- 5BC395EBD64E8CAD3F608735 /* juce_android_Messaging.cpp */,
- 41641B5371BDC760981FDF9C /* juce_ios_MessageManager.mm */,
- D1508B7542B04397ACF773B4 /* juce_linux_Messaging.cpp */,
- 9B6A0011D68BE05B0848FD8A /* juce_mac_MessageManager.mm */,
- A212A98178DA800BC7104EED /* juce_osx_MessageQueue.h */,
- 104FFDFF6CC57A7630FB7EAC /* juce_ScopedXLock.h */,
- FA67F7DC71898AC7AD4F0284 /* juce_win32_HiddenMessageWindow.h */,
- 86C53DA3976331FD98DF115F /* juce_win32_Messaging.cpp */,
- );
- name = native;
- sourceTree = "";
- };
- DC93E1DF7BCD2B46DCC1F158 /* mpe */ = {
- isa = PBXGroup;
- children = (
- A50045AA484A93660F5D0DEC /* juce_MPEInstrument.cpp */,
- 22ED7F3091B15731766D82C9 /* juce_MPEInstrument.h */,
- 1E614A63C2C2AA7B858DF4C1 /* juce_MPEMessages.cpp */,
- 8B4505D4C9EBC3014C27D6D9 /* juce_MPEMessages.h */,
- 26FC7D9E7E5BB2D4535FB0CE /* juce_MPENote.cpp */,
- 228CF6C968876BDA6ABC9242 /* juce_MPENote.h */,
- BE0489F4AA110E7A4BE6880E /* juce_MPESynthesiser.cpp */,
- 3E8E3CBF730E14A6EC9BEF89 /* juce_MPESynthesiser.h */,
- 847F33928C5A70863F673938 /* juce_MPESynthesiserBase.cpp */,
- E23D59AE5843A019D0B20D61 /* juce_MPESynthesiserBase.h */,
- 99ACE9D856A4E22A5BACF1F9 /* juce_MPESynthesiserVoice.cpp */,
- C37E5834DB1CC5410BF93D8F /* juce_MPESynthesiserVoice.h */,
- BB6321248114A79859B8468B /* juce_MPEValue.cpp */,
- CBAB521E6B494AABD42A4B90 /* juce_MPEValue.h */,
- D73F9D1ECAA60F87E31F531C /* juce_MPEZone.cpp */,
- A409C91727751590682E3237 /* juce_MPEZone.h */,
- FA1ADE34C41760B0FBCCDE64 /* juce_MPEZoneLayout.cpp */,
- 0589A9A25D0130ABC2840F23 /* juce_MPEZoneLayout.h */,
- );
- name = mpe;
- sourceTree = "";
- };
- DCF8B732A58C87567166A89F /* commands */ = {
- isa = PBXGroup;
- children = (
- 26D37FF39DEC1AAD1AC03A53 /* juce_ApplicationCommandID.h */,
- 2A28AB08780C76D52CA8D732 /* juce_ApplicationCommandInfo.cpp */,
- 34A09EB72E861BC2E41CF66E /* juce_ApplicationCommandInfo.h */,
- 2C7B8BA92ACDE7200C096AD9 /* juce_ApplicationCommandManager.cpp */,
- DED4D4557567F40DCDA8340A /* juce_ApplicationCommandManager.h */,
- FB87C64D7D673B76E4B5209D /* juce_ApplicationCommandTarget.cpp */,
- 4E8EA77D5F1F16096D60F3CF /* juce_ApplicationCommandTarget.h */,
- F5668D6CDFED46BDB46C2E75 /* juce_KeyPressMappingSet.cpp */,
- 6A84B8A22E5DA1A769CCC18C /* juce_KeyPressMappingSet.h */,
- );
- name = commands;
- sourceTree = "";
- };
- E0D35A029E21EB7BA9064153 /* jpglib */ = {
- isa = PBXGroup;
- children = (
- 40BCCE9C782DBAF6459C3EDB /* cderror.h */,
- 9E8FB4DD69AA02041D70B749 /* changes to libjpeg for JUCE.txt */,
- 38A03045629DB69AE42D4206 /* jcapimin.c */,
- 72300583DCD807FB8965116E /* jcapistd.c */,
- 2282324E575678E8837470EF /* jccoefct.c */,
- 770D1A48C625E77273E34C64 /* jccolor.c */,
- F5CCD78E2928A6021051AEE3 /* jcdctmgr.c */,
- 11D3E71143E92D6D541C2E68 /* jchuff.c */,
- F8B25FD2FE72F0862EDA70AC /* jchuff.h */,
- 0721D51684D1E4BEAF849793 /* jcinit.c */,
- 271866450733C15873B1E46D /* jcmainct.c */,
- C33F5E40671D8969529DC1F3 /* jcmarker.c */,
- 0A9B3441E4C766603206171A /* jcmaster.c */,
- CF095321F298B5EBCC94F41C /* jcomapi.c */,
- 2116BBCD560828B835577E82 /* jconfig.h */,
- C91C155CE2FBFB917E03E114 /* jcparam.c */,
- E8345B1296211CB1845D88C6 /* jcphuff.c */,
- 1BB1E8928FBEB3F72621F2F6 /* jcprepct.c */,
- 104CA8597373932F80F25354 /* jcsample.c */,
- E61A0BF68D610DA6AB86F94D /* jctrans.c */,
- 906854E5A523A5B01E5B5E63 /* jdapimin.c */,
- CB01B5AD5F8CC26814C1FAE8 /* jdapistd.c */,
- 986D508D78EA59268FADE965 /* jdatasrc.c */,
- EA21A9139BBAE2238DBB6920 /* jdcoefct.c */,
- E40C81964A35DCBA5C07A708 /* jdcolor.c */,
- 69B3DA0D93EFA18D005D4BBA /* jdct.h */,
- F4E74A5B357BA4EA4CEC0F13 /* jddctmgr.c */,
- 4B28F11FE91DFD5341610403 /* jdhuff.c */,
- 5B9F3AC6C97B813BB96F9C07 /* jdhuff.h */,
- B2D8F96F3F4463D678951CD6 /* jdinput.c */,
- 1B6684D65B3AF31CAB4D7B8E /* jdmainct.c */,
- 3568F7E50F7858A1B6279DDE /* jdmarker.c */,
- D9F59FD82ECF3FDA305537AA /* jdmaster.c */,
- 4EDEDEAB7029C5B5C2A63A15 /* jdmerge.c */,
- 919C366862EB3C10E5850D70 /* jdphuff.c */,
- 8D5DB6220A070CA7C6EF649B /* jdpostct.c */,
- 27957B112247D501D6B6FB8C /* jdsample.c */,
- A61B0324CAD4DE2A04ECAF2D /* jdtrans.c */,
- 769FABFC14A17F7AC2BBC65D /* jerror.c */,
- 9915EA36F2BC695AD5DA1FB0 /* jerror.h */,
- 22866A3227D44A6B5CF577F6 /* jfdctflt.c */,
- DDE841F2D06B35620C95F7BD /* jfdctfst.c */,
- 3E17AE4B984D9E4083124600 /* jfdctint.c */,
- 3B4E0B86B77DC40F15FB3F94 /* jidctflt.c */,
- B6F1AD93847540736A7C3B96 /* jidctfst.c */,
- E7AAC5B8A3584327D2A77AE3 /* jidctint.c */,
- EA2B74AE3EBD1A8CE6BBE889 /* jidctred.c */,
- 0FBF55B74F1BFBAF8F670E2C /* jinclude.h */,
- 30E6F8EE669C2F151A9F2956 /* jmemmgr.c */,
- 58880E117B1FCE6771ED958A /* jmemnobs.c */,
- E00E9055E0D461FBA65415F4 /* jmemsys.h */,
- F5AA13686E3E014FA127B57E /* jmorecfg.h */,
- E77ED2BF4E691CDA0BDF67E5 /* jpegint.h */,
- 6A194777720E39F99CEBDE68 /* jpeglib.h */,
- 23E572AAE21BB03B019F07EA /* jquant1.c */,
- D9158BF72A9410721CF32E92 /* jquant2.c */,
- 8853EE56290506D1C5B1A324 /* jutils.c */,
- 2D583C31EE6E9A5D8ACD988F /* jversion.h */,
- C49F54FB785A0B5D4D41B6BF /* transupp.c */,
- CE38F82B1484802D0AD0E8BB /* transupp.h */,
- );
- name = jpglib;
- sourceTree = "";
- };
- E0ED8FECDD5ECEB822B913E5 /* properties */ = {
- isa = PBXGroup;
- children = (
- 7F0EFEADDCDF0B8C3BD1278B /* juce_BooleanPropertyComponent.cpp */,
- 263C2C63172A2793CE67D3D4 /* juce_BooleanPropertyComponent.h */,
- 9F8621A060D21CD4F8E52082 /* juce_ButtonPropertyComponent.cpp */,
- 04D3FE9C1AC2AB770BFFE0EF /* juce_ButtonPropertyComponent.h */,
- 5FEDA06DD9D390733743ED0F /* juce_ChoicePropertyComponent.cpp */,
- A0A4D1CCCA84F1D6EC92D442 /* juce_ChoicePropertyComponent.h */,
- D62EA842B44315CFBCB24BCF /* juce_PropertyComponent.cpp */,
- CEB10C78DD0C1F9970029F25 /* juce_PropertyComponent.h */,
- 40C17131B384BEEB66A4FAB1 /* juce_PropertyPanel.cpp */,
- 28DC9D131B0DAEB78CEA016A /* juce_PropertyPanel.h */,
- CD768752C091A375ADC708A7 /* juce_SliderPropertyComponent.cpp */,
- D81B4D2BFB753FFD2D6F3AF0 /* juce_SliderPropertyComponent.h */,
- B62F00B50AC42FC2DC1ADEEE /* juce_TextPropertyComponent.cpp */,
- 2FAF11C9F6C314A36C879445 /* juce_TextPropertyComponent.h */,
- );
- name = properties;
- sourceTree = "";
- };
- E252C4CC79CD0D4A50359EF8 /* pnglib */ = {
- isa = PBXGroup;
- children = (
- E92CA7282B750596908F685C /* libpng_readme.txt */,
- C468BC4730E745AD31CA903D /* png.c */,
- 3DFE53F6F99C7D51A8032CB1 /* png.h */,
- 9EB8EAADA992AB7525B04C57 /* pngconf.h */,
- 6EB3442488752F0077F61CFA /* pngerror.c */,
- 20AFC08D3825F8F1EA4C4352 /* pngget.c */,
- FE6B0496C0CC7E25BCB6A277 /* pnginfo.h */,
- 80D52462F8B49C3D1FBB6349 /* pngmem.c */,
- F9D767E4012A0A1ADD83A533 /* pngpread.c */,
- 90EB80CDB45A0909C2ABDCCF /* pngpriv.h */,
- 22A423BB04E0A3F1C2C3CA63 /* pngread.c */,
- A0B76982E47F6552E076C115 /* pngrio.c */,
- 2F85284E588516584213B5F1 /* pngrtran.c */,
- C75E0D3ABA4599B591806B6F /* pngrutil.c */,
- 593FDB1011C838F5CB25E6A9 /* pngset.c */,
- A8ABBA51A3DEB23F46A5EAE6 /* pngstruct.h */,
- 650E5906E5CAAEABABFEEE1C /* pngtrans.c */,
- 3CCEB87B02CFD73B01FE5E3C /* pngwio.c */,
- F1CB294C66C69F817C9CDC1B /* pngwrite.c */,
- DEBEFE952C92EE38B62CCBA0 /* pngwtran.c */,
- 2524470C265DC4C41D0F12FD /* pngwutil.c */,
- );
- name = pnglib;
- sourceTree = "";
- };
- E3D96D5BBF636EF28DE616A4 /* fonts */ = {
- isa = PBXGroup;
- children = (
- 3BD3060E486C89B438B21F43 /* juce_AttributedString.cpp */,
- 68C49A6E9109C5F448289C25 /* juce_AttributedString.h */,
- 335219963DCBA3F85AC6C232 /* juce_CustomTypeface.cpp */,
- EE16A3FB712E9DFB3EE0A875 /* juce_CustomTypeface.h */,
- FC7AD77D53883AA7C906A6A3 /* juce_Font.cpp */,
- 80E4BC98EF30B463FCBF95C0 /* juce_Font.h */,
- 04C07E0DE8225D8E6F791D96 /* juce_GlyphArrangement.cpp */,
- 6E6A0A28D29F9CE5A97D9603 /* juce_GlyphArrangement.h */,
- 38034209A283D7F8D56B5E53 /* juce_TextLayout.cpp */,
- D3B2CF92BBBABE4AEEC691A3 /* juce_TextLayout.h */,
- C2585C4A959C4CBA76BCEE6C /* juce_Typeface.cpp */,
- 9D45A965F9A8184B64460680 /* juce_Typeface.h */,
- );
- name = fonts;
- sourceTree = "";
- };
- E63B8ABCE65C4254D9987CD9 /* processors */ = {
- isa = PBXGroup;
- children = (
- 2BF8C1C0452AA518578E2262 /* juce_AudioPlayHead.h */,
- 8AF2D36988A56CB9C6068F5B /* juce_AudioPluginInstance.h */,
- 4A7C8B1D23E9B6B7CCC02741 /* juce_AudioProcessor.cpp */,
- CFC449D448A0844857CA526D /* juce_AudioProcessor.h */,
- 74FB9B1CB018E5342E7AABFA /* juce_AudioProcessorEditor.cpp */,
- 5E5B5455D01D68404DA760D3 /* juce_AudioProcessorEditor.h */,
- 242F542B9738479E885167E6 /* juce_AudioProcessorGraph.cpp */,
- 72E0C00FE7CAB47242F2B815 /* juce_AudioProcessorGraph.h */,
- 13C55E3F2AA2B95275CB050B /* juce_AudioProcessorListener.h */,
- 6602C5EBB2ADC3158B37B907 /* juce_AudioProcessorParameter.h */,
- 6820E5E02FBE26EDA1E814E6 /* juce_GenericAudioProcessorEditor.cpp */,
- FFE735418137221B6EABF1A0 /* juce_GenericAudioProcessorEditor.h */,
- 60DE112B177F465AF7ECD44C /* juce_PluginDescription.cpp */,
- 83BA095FCF4E84B0AB0CF903 /* juce_PluginDescription.h */,
- );
- name = processors;
- sourceTree = "";
- };
- E9CFBBD9D25BB5B176CDF2C1 /* include */ = {
- isa = PBXGroup;
- children = (
- 9757775CBE25913D73CC0497 /* private */,
- F5D5BB6522B49CA562F51654 /* protected */,
- );
- name = include;
- sourceTree = "";
- };
- EB3E75FE4B4092D4E0F0DAEE /* libFLAC */ = {
- isa = PBXGroup;
- children = (
- E9CFBBD9D25BB5B176CDF2C1 /* include */,
- F0BA9CA48CC49E14CB65B10A /* bitmath.c */,
- DEE913D46DAAD878430264D6 /* bitreader.c */,
- 3067E2B75D1E66CAC8DD65C0 /* bitwriter.c */,
- DA6680F2E017C1451B8B3E09 /* cpu.c */,
- 8E841F589CA7AAD4294FD631 /* crc.c */,
- 1C024E345C38DCAB8D0BE6F9 /* fixed.c */,
- F40688B881E38D0CEC413A0A /* float.c */,
- 9415AEBC23728926E143CA87 /* format.c */,
- 1520C6D07978AEAC58F684F8 /* lpc_flac.c */,
- A4D97A4003659632818C71FF /* md5.c */,
- C09EE24431A651C996153ACA /* memory.c */,
- F4259584E00B36526D5CFB0A /* stream_decoder.c */,
- 7C164C4F47469F58BA6DCDD5 /* stream_encoder.c */,
- 352E7E01ACE857617C20A3E1 /* stream_encoder_framing.c */,
- 04185482CCC0316BF46B2DC7 /* window_flac.c */,
- );
- name = libFLAC;
- sourceTree = "";
- };
- EC1FFFA5993CDB034E258369 /* unit_tests */ = {
- isa = PBXGroup;
- children = (
- C3CD93C748F880042436180B /* juce_UnitTest.cpp */,
- FBEB137F69B8A261A4B64760 /* juce_UnitTest.h */,
- );
- name = unit_tests;
- sourceTree = "";
- };
- EE7F58530DF1E8A70FBA260B /* juce_data_structures */ = {
- isa = PBXGroup;
- children = (
- 9D7B25358BD5C5AA07B5EC21 /* app_properties */,
- 93858860095307EE90AF2FCD /* undomanager */,
- C91FF17401D512FD0BC96A03 /* values */,
- 36AB1E409836F7CDCD24CE58 /* juce_data_structures.cpp */,
- BA5EBAC0C16D620D37B80143 /* juce_data_structures.mm */,
- 60D50FA5390DEADA129CBD25 /* juce_data_structures.h */,
- );
- name = juce_data_structures;
- sourceTree = "";
- };
- EFB162A49E91B2A648212C14 /* widgets */ = {
- isa = PBXGroup;
- children = (
- D403908B6B803FA4EF5BDBBF /* juce_ComboBox.cpp */,
- 67606EF1CD1DDF9D69C93DFB /* juce_ComboBox.h */,
- F72B09FDE33658D77B49C7A6 /* juce_ImageComponent.cpp */,
- 392CEE74B1D96166F05D02D9 /* juce_ImageComponent.h */,
- B22A37C8077912A763F8FAEE /* juce_Label.cpp */,
- 34A1DB27664840651D853100 /* juce_Label.h */,
- 093309B3FE42407C9C80EB2F /* juce_ListBox.cpp */,
- B979BF385FBD2717200311E7 /* juce_ListBox.h */,
- 9851670A2A94D090ABDCD8EC /* juce_ProgressBar.cpp */,
- F392A87E5AE1D4D390FCF488 /* juce_ProgressBar.h */,
- 4C9BD4A188792CD1AA04D76E /* juce_Slider.cpp */,
- 976DD9AF4615787148AD3141 /* juce_Slider.h */,
- 86A4BD370ED34FF4CC252A18 /* juce_TableHeaderComponent.cpp */,
- 2F7EBCA1222D6D2E4B89FC2E /* juce_TableHeaderComponent.h */,
- B000E9B383585F14D4106B33 /* juce_TableListBox.cpp */,
- 199FB84B17D7610C48A08C12 /* juce_TableListBox.h */,
- 451702B185B088648F14A833 /* juce_TextEditor.cpp */,
- 25616CCE492D37070C5FCBFF /* juce_TextEditor.h */,
- 2EA0BA49F0FEBB8B4BBEE3E0 /* juce_Toolbar.cpp */,
- 0F40FDDE37B6B63FEA333F05 /* juce_Toolbar.h */,
- E24521953703852377A32D70 /* juce_ToolbarItemComponent.cpp */,
- 4846DC8E7DFB0B17B0FCFF60 /* juce_ToolbarItemComponent.h */,
- 4307B791E5DC631C9447D24C /* juce_ToolbarItemFactory.h */,
- 641322D5C3949AED6682C101 /* juce_ToolbarItemPalette.cpp */,
- 814F764F531DA3B45B982764 /* juce_ToolbarItemPalette.h */,
- 9EBFDCA556AB40E02BC2D3D9 /* juce_TreeView.cpp */,
- 6FC15D6A4868FBA38C374110 /* juce_TreeView.h */,
- );
- name = widgets;
- sourceTree = "";
- };
- EFFEDEC35E4A38750F7CB582 /* windows */ = {
- isa = PBXGroup;
- children = (
- 4EECFA337A245BA2F32FDE9C /* juce_AlertWindow.cpp */,
- 90168C92385FFFE93633DD25 /* juce_AlertWindow.h */,
- 2E7B68565DA034DDCF34573C /* juce_CallOutBox.cpp */,
- 6FACB6671DF178C374D288C3 /* juce_CallOutBox.h */,
- 531078615D14BDA90A50AA53 /* juce_ComponentPeer.cpp */,
- B4E737B45F3090ECA81D34CE /* juce_ComponentPeer.h */,
- 9A798AA0771301D879ACA0E6 /* juce_DialogWindow.cpp */,
- 6A5C7073E616E3C027C7298C /* juce_DialogWindow.h */,
- B58ED38442F322226E81E930 /* juce_DocumentWindow.cpp */,
- 8E25DB9F4F02D1EB553DD954 /* juce_DocumentWindow.h */,
- 9D86489534874805E5005BEF /* juce_NativeMessageBox.h */,
- 7C145A4C116A743CB8D0624F /* juce_ResizableWindow.cpp */,
- 031D1BC4C76359BA17663E17 /* juce_ResizableWindow.h */,
- A49C327EA3CD090C4768925D /* juce_ThreadWithProgressWindow.cpp */,
- AF000B66A6C3683AA30FFA85 /* juce_ThreadWithProgressWindow.h */,
- CB6596103EE0B3579B8D2C3C /* juce_TooltipWindow.cpp */,
- 8033E71C6724106F16F7FC35 /* juce_TooltipWindow.h */,
- 678100D85EB6578B7390BE6F /* juce_TopLevelWindow.cpp */,
- 33FED0E86133FA3439FCA42B /* juce_TopLevelWindow.h */,
- );
- name = windows;
- sourceTree = "";
- };
- F5D5BB6522B49CA562F51654 /* protected */ = {
- isa = PBXGroup;
- children = (
- CFA6A67D8C7733249ED7FBC5 /* all.h */,
- 7533170247A4B5A10D70246B /* stream_decoder.h */,
- DFD83A7CDABE2CC9D9D29FEE /* stream_encoder.h */,
- );
- name = protected;
- sourceTree = "";
- };
- F6BD837B724D3DDF240ABC40 /* native */ = {
- isa = PBXGroup;
- children = (
- 831C32DB068A571A3E99E55B /* juce_android_Audio.cpp */,
- A1596463A5167EF7B3B9E3F3 /* juce_android_Midi.cpp */,
- AAC7E9D875D6B6AA83E571AB /* juce_android_OpenSL.cpp */,
- C1EA59968F46E68D75AABDCE /* juce_ios_Audio.cpp */,
- CA7EE521D0323E69E581633A /* juce_linux_ALSA.cpp */,
- C9D366816AA16012A9FD56D0 /* juce_linux_JackAudio.cpp */,
- F75CCB348B732B0AFEE4B4FC /* juce_linux_Midi.cpp */,
- 9BD70EEF4FCF2A636DAA3C48 /* juce_mac_CoreAudio.cpp */,
- 5B3703950FC13A76F07CC0B0 /* juce_mac_CoreMidi.cpp */,
- C917343C99E5B7DD04F04FE3 /* juce_MidiDataConcatenator.h */,
- FEB6A996354866F8AE7221C3 /* juce_win32_ASIO.cpp */,
- 39D9DEE8F862C43CF6F4DA7F /* juce_win32_DirectSound.cpp */,
- 9FF3D6166AF80343ACC2DF7A /* juce_win32_Midi.cpp */,
- CF6716C0AD7BC8E630CEA8DD /* juce_win32_WASAPI.cpp */,
- );
- name = native;
- sourceTree = "";
- };
- F747D2293FF285B72185547E /* audio_cd */ = {
- isa = PBXGroup;
- children = (
- F77E277347DD30D380C5A3C8 /* juce_AudioCDBurner.h */,
- ABD0576F2543A863F5DB40E7 /* juce_AudioCDReader.cpp */,
- 34A745BB4A935998D25D1E86 /* juce_AudioCDReader.h */,
- );
- name = audio_cd;
- sourceTree = "";
- };
- FB0B308B3B55C9CE28D2A00A /* juce_graphics */ = {
- isa = PBXGroup;
- children = (
- C6780B6FBC8E601F934FC158 /* colour */,
- BC17C7FEA1883ECACA434368 /* contexts */,
- 1A35F54335F030EB7CED69E1 /* effects */,
- E3D96D5BBF636EF28DE616A4 /* fonts */,
- CC3BF308E1C5E427BE3CF882 /* geometry */,
- 16B6DDD69A3C6342C3ED929F /* image_formats */,
- 540901B179BD14810F98D941 /* images */,
- 3C7EE0C47E42BE0F161EFB77 /* native */,
- 8E26D163EE3DCAE501FEC883 /* placement */,
- 06497F2BEB751B1840F27F62 /* juce_graphics.cpp */,
- D8A1D9C7F7B42C75598A385F /* juce_graphics.mm */,
- 1F58F7262450884A7E6BEF4F /* juce_graphics.h */,
- );
- name = juce_graphics;
- sourceTree = "";
- };
- FEA821AB5BDC38FC45CCFB0E /* components */ = {
- isa = PBXGroup;
- children = (
- 4840F2FDA6C6A3E0CA41FA3D /* juce_CachedComponentImage.h */,
- FAB83E6CF91D59901CD87D9F /* juce_Component.cpp */,
- 0E204D9C847CEC5AE4391ED5 /* juce_Component.h */,
- E39BFCA09C446A2AD541D66C /* juce_ComponentListener.cpp */,
- 3AB83A04D08F2F329AB81AE1 /* juce_ComponentListener.h */,
- C5EDD0AB18A362054E8FE283 /* juce_Desktop.cpp */,
- 5AD9E3796F5E585A81810A09 /* juce_Desktop.h */,
- 3A795BC053BEA2428052FEBE /* juce_ModalComponentManager.cpp */,
- CC485BE41CFF25257214B6EA /* juce_ModalComponentManager.h */,
- );
- name = components;
- sourceTree = "";
- };
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
- 9C6BA11D1261B15A2F52EB60 /* BlocksMonitor (App) */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = F2ABB4C4775A3BD1B6DEBD6A /* Build configuration list for PBXNativeTarget "BlocksMonitor (App)" */;
- buildPhases = (
- D08BB290D5F778E1450AD3F3 /* Resources */,
- 9C2AF708958E95C688544D95 /* Sources */,
- 2410311707C8C7B9E6CFE23D /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "BlocksMonitor (App)";
- productName = BlocksMonitor;
- productReference = 00558AF4AA37DD00B15B21A8 /* BlocksMonitor.app */;
- productType = "com.apple.product-type.application";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- B42B7651E1352BD7921E5754 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 0440;
- TargetAttributes = {
- 9C6BA11D1261B15A2F52EB60 = {
- DevelopmentTeam = S5LKE7JNDX;
- SystemCapabilities = {
- com.apple.InAppPurchase = {
- enabled = 0;
- };
- com.apple.Sandbox = {
- enabled = 0;
- };
- };
- };
- };
- };
- buildConfigurationList = 61CDB68D74329CF066EA57D6 /* Build configuration list for PBXProject "BlocksMonitor" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- );
- mainGroup = 5D6DAC6A0A862ED325F1DB34 /* Source */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 9C6BA11D1261B15A2F52EB60 /* BlocksMonitor (App) */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- D08BB290D5F778E1450AD3F3 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 8865BAB56BA7C344961B8C78 /* Images.xcassets in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 9C2AF708958E95C688544D95 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- D2EAAF12976946EE8C45FB0B /* Main.cpp in Sources */,
- 1AED1945B3F869251C0AE961 /* juce_audio_basics.mm in Sources */,
- E17C689ADF6944C5DBFB87FC /* juce_audio_devices.mm in Sources */,
- 09AD8FE14AB25476E5B895F0 /* juce_audio_formats.mm in Sources */,
- 0D2A7C0067BE86F2CFDF180E /* juce_audio_processors.mm in Sources */,
- C3771B5653D9760164E40FBB /* juce_audio_utils.mm in Sources */,
- 8DCEF084990118E5E8781096 /* juce_blocks_basics.cpp in Sources */,
- 3A0447CE74DA2F6F547581E2 /* juce_core.mm in Sources */,
- 7D8C07117F2E674F24031D72 /* juce_data_structures.mm in Sources */,
- C8DA641BA677BA04FD298869 /* juce_events.mm in Sources */,
- D650FA605147B0260A8A94C7 /* juce_graphics.mm in Sources */,
- C38A78F09BFE9B4378FF23C0 /* juce_gui_basics.mm in Sources */,
- 86C00C6333D9F12FED7C221A /* juce_gui_extra.mm in Sources */,
- 3FB72C8D23D5F6CB77C88C63 /* juce_opengl.mm in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin XCBuildConfiguration section */
- 0B575022E52611F3CF802F93 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
+ EDB2A950FFE8C3AE8932A5BC = {isa = PBXBuildFile; fileRef = 00558AF4AA37DD00B15B21A8; };
+ 732F2CFE7C7968D6638BC5D1 = {isa = PBXBuildFile; fileRef = 3ABF91F41A610658F5B17523; };
+ 76FF951CD8921AFDC24648FB = {isa = PBXBuildFile; fileRef = 230ECC5997D02F79080DD55D; };
+ F88FFF629E47F8CB257B7157 = {isa = PBXBuildFile; fileRef = 0726638325182847094ED297; };
+ 924BC7B8C552402D22C30959 = {isa = PBXBuildFile; fileRef = D4DA6EE18C4F580FC8A220B8; };
+ B92223437105FB45C1973FF5 = {isa = PBXBuildFile; fileRef = 88A4EE2311F2D063677B1822; };
+ A458DA809D44DCCB921620D2 = {isa = PBXBuildFile; fileRef = 8F72A06310DEB2A6E6A0DA18; };
+ 1D0987A356ABA1C3B4A785BD = {isa = PBXBuildFile; fileRef = B5A57064DFB2BD47270A42E6; };
+ B4F2D8F80F24A3A8B90D2519 = {isa = PBXBuildFile; fileRef = C48524BD8330E2A4710D99FF; };
+ 918E1AB94993954386975092 = {isa = PBXBuildFile; fileRef = 71386FCE19C79DC74F1623FF; };
+ F0C1938D68C0994E2338379C = {isa = PBXBuildFile; fileRef = BF4AF0A830706A80B2D1ADC5; };
+ 3601C134F7B5A1AB67E814D7 = {isa = PBXBuildFile; fileRef = 6D2AA08C51674AC355C3C4B9; };
+ FBF94D0D4A73E69D79614536 = {isa = PBXBuildFile; fileRef = 849DD96FF7656F52F1972F38; };
+ 8865BAB56BA7C344961B8C78 = {isa = PBXBuildFile; fileRef = 850772CD6A8E69EACB89CB02; };
+ D2EAAF12976946EE8C45FB0B = {isa = PBXBuildFile; fileRef = DE1AA6017CEF48540B7D5521; };
+ 1AED1945B3F869251C0AE961 = {isa = PBXBuildFile; fileRef = C0CE2DBD3E07E03623F29618; };
+ E17C689ADF6944C5DBFB87FC = {isa = PBXBuildFile; fileRef = 5D4BEFEC0E129949C58876DD; };
+ 09AD8FE14AB25476E5B895F0 = {isa = PBXBuildFile; fileRef = 1559C4DCC579423B1A05CF89; };
+ 0D2A7C0067BE86F2CFDF180E = {isa = PBXBuildFile; fileRef = C8FBA54671860CB3636D7A76; };
+ C3771B5653D9760164E40FBB = {isa = PBXBuildFile; fileRef = 460CE4619594A71E9BCE42A3; };
+ 8DCEF084990118E5E8781096 = {isa = PBXBuildFile; fileRef = 830F7516AA78496143854C16; };
+ 3A0447CE74DA2F6F547581E2 = {isa = PBXBuildFile; fileRef = 7BAF11556203D550CE5E1560; };
+ 7D8C07117F2E674F24031D72 = {isa = PBXBuildFile; fileRef = 9B6EFF388E31F7E480380796; };
+ C8DA641BA677BA04FD298869 = {isa = PBXBuildFile; fileRef = 993004BB53091A0FBEB0E418; };
+ D650FA605147B0260A8A94C7 = {isa = PBXBuildFile; fileRef = 787FCE42F8EFF4F62B69363D; };
+ C38A78F09BFE9B4378FF23C0 = {isa = PBXBuildFile; fileRef = E6D09BB9A4D7592AA53FA63C; };
+ 86C00C6333D9F12FED7C221A = {isa = PBXBuildFile; fileRef = EF02685FDE72675F4B750650; };
+ 3FB72C8D23D5F6CB77C88C63 = {isa = PBXBuildFile; fileRef = 5D456364DF7A1A1C1CBCA1F0; };
+ 00558AF4AA37DD00B15B21A8 = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BlocksMonitor.app; sourceTree = "BUILT_PRODUCTS_DIR"; };
+ 0063493D90122A5E9F9000A5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inffast.h; path = "../../../../../modules/juce_core/zip/zlib/inffast.h"; sourceTree = "SOURCE_ROOT"; };
+ 007566E450CC50CB63D1C11C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGL_win32.h"; path = "../../../../../modules/juce_opengl/native/juce_OpenGL_win32.h"; sourceTree = "SOURCE_ROOT"; };
+ 00D6F7A03576F399711D5ABC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeEditorComponent.cpp"; path = "../../../../../modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 012B74A5BAF1F975F4A0C648 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LEDRow.h"; path = "../../../../../modules/juce_blocks_basics/blocks/juce_LEDRow.h"; sourceTree = "SOURCE_ROOT"; };
+ 012EF1197FF04E76BD620071 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TemporaryFile.h"; path = "../../../../../modules/juce_core/files/juce_TemporaryFile.h"; sourceTree = "SOURCE_ROOT"; };
+ 0138E84BEADF91E11BF423E8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharPointer_ASCII.h"; path = "../../../../../modules/juce_core/text/juce_CharPointer_ASCII.h"; sourceTree = "SOURCE_ROOT"; };
+ 01B2BABD6C54666254257CF9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RelativeCoordinate.h"; path = "../../../../../modules/juce_gui_basics/positioning/juce_RelativeCoordinate.h"; sourceTree = "SOURCE_ROOT"; };
+ 01F94B27ADD4198E3CC15C0B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Process.h"; path = "../../../../../modules/juce_core/threads/juce_Process.h"; sourceTree = "SOURCE_ROOT"; };
+ 02148EBC074DA2992CC96E88 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_SystemStats.cpp"; path = "../../../../../modules/juce_core/native/juce_win32_SystemStats.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 02633833709D15831BB6A4B8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DrawableRectangle.cpp"; path = "../../../../../modules/juce_gui_basics/drawables/juce_DrawableRectangle.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 02B1467586FBA8F5C471CDCE = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DrawableButton.cpp"; path = "../../../../../modules/juce_gui_basics/buttons/juce_DrawableButton.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 02CE3CA00AB6A0E0C6EA7C45 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DynamicObject.cpp"; path = "../../../../../modules/juce_core/containers/juce_DynamicObject.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 031D1BC4C76359BA17663E17 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ResizableWindow.h"; path = "../../../../../modules/juce_gui_basics/windows/juce_ResizableWindow.h"; sourceTree = "SOURCE_ROOT"; };
+ 034E4F3996519B2624117798 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PhysicalTopologySource.h"; path = "../../../../../modules/juce_blocks_basics/topology/juce_PhysicalTopologySource.h"; sourceTree = "SOURCE_ROOT"; };
+ 036AB53DA1FCBDB74F591CC3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SpinLock.h"; path = "../../../../../modules/juce_core/threads/juce_SpinLock.h"; sourceTree = "SOURCE_ROOT"; };
+ 0377FDB5BDD3EC08C3F83FBD = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Application.h"; path = "../../../../../modules/juce_gui_basics/application/juce_Application.h"; sourceTree = "SOURCE_ROOT"; };
+ 03AF279CB4C8AA1B917C9E6E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_StretchableObjectResizer.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_StretchableObjectResizer.h"; sourceTree = "SOURCE_ROOT"; };
+ 04185482CCC0316BF46B2DC7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "window_flac.c"; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/window_flac.c"; sourceTree = "SOURCE_ROOT"; };
+ 044402CF33BF673FD4FE541E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TimeSliceThread.cpp"; path = "../../../../../modules/juce_core/threads/juce_TimeSliceThread.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 0460787CA1702E4A267536CD = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioTransportSource.h"; path = "../../../../../modules/juce_audio_devices/sources/juce_AudioTransportSource.h"; sourceTree = "SOURCE_ROOT"; };
+ 04874C168F8DB8B3661AE099 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "floor_all.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/floor_all.h"; sourceTree = "SOURCE_ROOT"; };
+ 0496A10293C6532DB2889643 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ogg.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/ogg.h"; sourceTree = "SOURCE_ROOT"; };
+ 04B6090AAC1B334B1F121BE0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_WavAudioFormat.cpp"; path = "../../../../../modules/juce_audio_formats/codecs/juce_WavAudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 04C07E0DE8225D8E6F791D96 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_GlyphArrangement.cpp"; path = "../../../../../modules/juce_graphics/fonts/juce_GlyphArrangement.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 04D3FE9C1AC2AB770BFFE0EF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ButtonPropertyComponent.h"; path = "../../../../../modules/juce_gui_basics/properties/juce_ButtonPropertyComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 04E0627AC999CE642D9009F5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RelativeCoordinate.cpp"; path = "../../../../../modules/juce_gui_basics/positioning/juce_RelativeCoordinate.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 0589A9A25D0130ABC2840F23 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MPEZoneLayout.h"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h"; sourceTree = "SOURCE_ROOT"; };
+ 05F4C8ED36A49DC106309AB3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = all.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/all.h"; sourceTree = "SOURCE_ROOT"; };
+ 060D039A8903F16757040051 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DragAndDropTarget.h"; path = "../../../../../modules/juce_gui_basics/mouse/juce_DragAndDropTarget.h"; sourceTree = "SOURCE_ROOT"; };
+ 06497F2BEB751B1840F27F62 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_graphics.cpp"; path = "../../../../../modules/juce_graphics/juce_graphics.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 0697A131C2572A76CBC3A2D4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_WindowsMediaAudioFormat.cpp"; path = "../../../../../modules/juce_audio_formats/codecs/juce_WindowsMediaAudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 06B84EC6276C82A50AA87A78 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_FileChooser.cpp"; path = "../../../../../modules/juce_gui_basics/native/juce_linux_FileChooser.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 06BB9F1EBA1172275FE5413D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ScopedWriteLock.h"; path = "../../../../../modules/juce_core/threads/juce_ScopedWriteLock.h"; sourceTree = "SOURCE_ROOT"; };
+ 06EC101285EA08EEDDB65F87 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TopologySource.h"; path = "../../../../../modules/juce_blocks_basics/topology/juce_TopologySource.h"; sourceTree = "SOURCE_ROOT"; };
+ 0717F6008681C056FF92AE41 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLImage.h"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLImage.h"; sourceTree = "SOURCE_ROOT"; };
+ 0721D51684D1E4BEAF849793 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcinit.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jcinit.c"; sourceTree = "SOURCE_ROOT"; };
+ 0726638325182847094ED297 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
+ 078D0122C02815C45F14E220 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_core.h"; path = "../../../../../modules/juce_core/juce_core.h"; sourceTree = "SOURCE_ROOT"; };
+ 0798ABC473768B7DA59020BB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CoreAudioFormat.h"; path = "../../../../../modules/juce_audio_formats/codecs/juce_CoreAudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ 07E12DE4ACDC0607DB48477A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_StatisticsAccumulator.h"; path = "../../../../../modules/juce_core/maths/juce_StatisticsAccumulator.h"; sourceTree = "SOURCE_ROOT"; };
+ 084F07B2269A72130EDC450D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = misc.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/misc.h"; sourceTree = "SOURCE_ROOT"; };
+ 08C26B85297999984DECB587 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_File.cpp"; path = "../../../../../modules/juce_core/files/juce_File.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 093309B3FE42407C9C80EB2F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ListBox.cpp"; path = "../../../../../modules/juce_gui_basics/widgets/juce_ListBox.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 096474E2642303EBBE13AD4B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = block.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/block.c"; sourceTree = "SOURCE_ROOT"; };
+ 09BB66CFEE9A832CFCF2CCD2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OwnedArray.h"; path = "../../../../../modules/juce_core/containers/juce_OwnedArray.h"; sourceTree = "SOURCE_ROOT"; };
+ 0A268ACBB1D36A862A755465 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ScopedValueSetter.h"; path = "../../../../../modules/juce_core/containers/juce_ScopedValueSetter.h"; sourceTree = "SOURCE_ROOT"; };
+ 0A7A9EA59E25C13CB9C14A7D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_CommonFile.cpp"; path = "../../../../../modules/juce_core/native/juce_linux_CommonFile.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 0A986A71F3920D38E7D88F58 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MessageListener.cpp"; path = "../../../../../modules/juce_events/messages/juce_MessageListener.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 0A9B3441E4C766603206171A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmaster.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jcmaster.c"; sourceTree = "SOURCE_ROOT"; };
+ 0AA6BBC6867F7EEA5C10722A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ModifierKeys.h"; path = "../../../../../modules/juce_gui_basics/keyboard/juce_ModifierKeys.h"; sourceTree = "SOURCE_ROOT"; };
+ 0B30452CA065C138233F99E7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioParameterInt.h"; path = "../../../../../modules/juce_audio_processors/utilities/juce_AudioParameterInt.h"; sourceTree = "SOURCE_ROOT"; };
+ 0B3FBA4C1CFF6D65E98AEFE1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OpenGLGraphicsContext.cpp"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLGraphicsContext.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 0BB1CC68B7BB505B480D6174 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = "SOURCE_ROOT"; };
+ 0BB1F767785BA329DAE91DBD = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TabbedButtonBar.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_TabbedButtonBar.h"; sourceTree = "SOURCE_ROOT"; };
+ 0C338FC94EF538E20E3BD3CB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ToggleButton.h"; path = "../../../../../modules/juce_gui_basics/buttons/juce_ToggleButton.h"; sourceTree = "SOURCE_ROOT"; };
+ 0C59026808740853C23AE185 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_UndoManager.h"; path = "../../../../../modules/juce_data_structures/undomanager/juce_UndoManager.h"; sourceTree = "SOURCE_ROOT"; };
+ 0CC5574662C83E89FB9A4F6A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inffixed.h; path = "../../../../../modules/juce_core/zip/zlib/inffixed.h"; sourceTree = "SOURCE_ROOT"; };
+ 0D5C830BBE28DBA8795B10DE = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_DragAndDrop.cpp"; path = "../../../../../modules/juce_gui_basics/native/juce_win32_DragAndDrop.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 0D6E37748850EAE66F9CA70B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioAppComponent.h"; path = "../../../../../modules/juce_audio_utils/gui/juce_AudioAppComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 0DA6CC35E4AFC202C7D5298F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Network.cpp"; path = "../../../../../modules/juce_core/native/juce_win32_Network.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 0DA6F88B400D1BA27A9EF72B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PNGLoader.cpp"; path = "../../../../../modules/juce_graphics/image_formats/juce_PNGLoader.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 0DBCD27DE42DAF64EF974F1D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_processors.h"; path = "../../../../../modules/juce_audio_processors/juce_audio_processors.h"; sourceTree = "SOURCE_ROOT"; };
+ 0DE80059716B40D2D9BBEFC9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_LookAndFeel_V2.cpp"; path = "../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V2.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 0DEF8B7D54BF56ED8569D690 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ResizableEdgeComponent.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_ResizableEdgeComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 0E18DB38D8B88859C5D16D11 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioSampleBuffer.h"; path = "../../../../../modules/juce_audio_basics/buffers/juce_AudioSampleBuffer.h"; sourceTree = "SOURCE_ROOT"; };
+ 0E204D9C847CEC5AE4391ED5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Component.h"; path = "../../../../../modules/juce_gui_basics/components/juce_Component.h"; sourceTree = "SOURCE_ROOT"; };
+ 0E4C2A01524E87834E2FB4B2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TextDragAndDropTarget.h"; path = "../../../../../modules/juce_gui_basics/mouse/juce_TextDragAndDropTarget.h"; sourceTree = "SOURCE_ROOT"; };
+ 0EC222E14CC7DADB74BE6E80 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ToggleButton.cpp"; path = "../../../../../modules/juce_gui_basics/buttons/juce_ToggleButton.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 0EE7D572D91B088532018993 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_LowLevelGraphicsPostScriptRenderer.cpp"; path = "../../../../../modules/juce_graphics/contexts/juce_LowLevelGraphicsPostScriptRenderer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 0F40FDDE37B6B63FEA333F05 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Toolbar.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_Toolbar.h"; sourceTree = "SOURCE_ROOT"; };
+ 0FBF55B74F1BFBAF8F670E2C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jinclude.h; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jinclude.h"; sourceTree = "SOURCE_ROOT"; };
+ 104CA8597373932F80F25354 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcsample.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jcsample.c"; sourceTree = "SOURCE_ROOT"; };
+ 104FFDFF6CC57A7630FB7EAC = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ScopedXLock.h"; path = "../../../../../modules/juce_events/native/juce_ScopedXLock.h"; sourceTree = "SOURCE_ROOT"; };
+ 106C8F431770C832B77BFFD9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioThumbnailCache.cpp"; path = "../../../../../modules/juce_audio_utils/gui/juce_AudioThumbnailCache.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1072ED1E4C961324C65D3305 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LookAndFeel.h"; path = "../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.h"; sourceTree = "SOURCE_ROOT"; };
+ 108582FEE483C0EAE1FF767D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OpenGLShaderProgram.cpp"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLShaderProgram.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 10AAEECABC6BA65A3D2C4933 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ChangeListener.h"; path = "../../../../../modules/juce_events/broadcasters/juce_ChangeListener.h"; sourceTree = "SOURCE_ROOT"; };
+ 11A1987734275CA22120DD49 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ScopedLock.h"; path = "../../../../../modules/juce_core/threads/juce_ScopedLock.h"; sourceTree = "SOURCE_ROOT"; };
+ 11D3E71143E92D6D541C2E68 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jchuff.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jchuff.c"; sourceTree = "SOURCE_ROOT"; };
+ 122B74F324719CFD9425A135 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = vorbisenc.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/vorbisenc.h"; sourceTree = "SOURCE_ROOT"; };
+ 12B073CF9C72D46B540CB899 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Windowing.cpp"; path = "../../../../../modules/juce_gui_basics/native/juce_win32_Windowing.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 12DF2FA1DB7312F834B0721E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioProcessorParameters.cpp"; path = "../../../../../modules/juce_audio_processors/utilities/juce_AudioProcessorParameters.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1311A028E6551920CCB23899 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AiffAudioFormat.cpp"; path = "../../../../../modules/juce_audio_formats/codecs/juce_AiffAudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 132DA30E80054A4CB1682F5C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_GZIPCompressorOutputStream.cpp"; path = "../../../../../modules/juce_core/zip/juce_GZIPCompressorOutputStream.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 134A859AAAD880C6CA78BA16 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_StretchableLayoutResizerBar.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_StretchableLayoutResizerBar.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 135A4D01694084A7B641D217 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = window.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/window.c"; sourceTree = "SOURCE_ROOT"; };
+ 137382482B888F9A1245CB52 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_Windowing.cpp"; path = "../../../../../modules/juce_gui_basics/native/juce_linux_Windowing.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 13B537AE02190300E0DA5322 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = adler32.c; path = "../../../../../modules/juce_core/zip/zlib/adler32.c"; sourceTree = "SOURCE_ROOT"; };
+ 13C55E3F2AA2B95275CB050B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioProcessorListener.h"; path = "../../../../../modules/juce_audio_processors/processors/juce_AudioProcessorListener.h"; sourceTree = "SOURCE_ROOT"; };
+ 13ECF6CF71CA92E4E1F845C6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MouseInactivityDetector.h"; path = "../../../../../modules/juce_gui_basics/mouse/juce_MouseInactivityDetector.h"; sourceTree = "SOURCE_ROOT"; };
+ 13F0C5C5B5775E09051D19D0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RectanglePlacement.cpp"; path = "../../../../../modules/juce_graphics/placement/juce_RectanglePlacement.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 148AC48B82DFEC98FECBF5AC = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_InterprocessConnectionServer.h"; path = "../../../../../modules/juce_events/interprocess/juce_InterprocessConnectionServer.h"; sourceTree = "SOURCE_ROOT"; };
+ 1520C6D07978AEAC58F684F8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "lpc_flac.c"; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c"; sourceTree = "SOURCE_ROOT"; };
+ 15494D9F18EC8265BBB4BA44 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_core.cpp"; path = "../../../../../modules/juce_core/juce_core.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1559C4DCC579423B1A05CF89 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_formats.mm"; path = "../../JuceLibraryCode/juce_audio_formats.mm"; sourceTree = "SOURCE_ROOT"; };
+ 15BEE6B9299B0E97F16C07D8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MouseEvent.cpp"; path = "../../../../../modules/juce_gui_basics/mouse/juce_MouseEvent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 16118DB20238C2B904A3FDA7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BorderSize.h"; path = "../../../../../modules/juce_graphics/geometry/juce_BorderSize.h"; sourceTree = "SOURCE_ROOT"; };
+ 1655D2F156B917E893A29FEA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_NamedValueSet.h"; path = "../../../../../modules/juce_core/containers/juce_NamedValueSet.h"; sourceTree = "SOURCE_ROOT"; };
+ 1673C95BCCE19C8F4664703E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_String.cpp"; path = "../../../../../modules/juce_core/text/juce_String.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 16DD43E629D9E32F1FE86143 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_audio_processors.cpp"; path = "../../../../../modules/juce_audio_processors/juce_audio_processors.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 16E132B11E1648815CEFF729 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MenuBarModel.h"; path = "../../../../../modules/juce_gui_basics/menus/juce_MenuBarModel.h"; sourceTree = "SOURCE_ROOT"; };
+ 170F6D425FF66C0388540225 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_WebInputStream.h"; path = "../../../../../modules/juce_core/network/juce_WebInputStream.h"; sourceTree = "SOURCE_ROOT"; };
+ 1719057E5D9514D7DD88DEB9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioChannelSet.cpp"; path = "../../../../../modules/juce_audio_basics/buffers/juce_AudioChannelSet.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1737459117017D5BBEE069D2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioAppComponent.cpp"; path = "../../../../../modules/juce_audio_utils/gui/juce_AudioAppComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1758DCBCE1766DA3968BEC1F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_curl_Network.cpp"; path = "../../../../../modules/juce_core/native/juce_curl_Network.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 177856ECCAE5F779DB31EBCF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_Strings.mm"; path = "../../../../../modules/juce_core/native/juce_mac_Strings.mm"; sourceTree = "SOURCE_ROOT"; };
+ 17B2AAE117564DA4933B70AA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PathStrokeType.h"; path = "../../../../../modules/juce_graphics/geometry/juce_PathStrokeType.h"; sourceTree = "SOURCE_ROOT"; };
+ 18319D005DF6998885AC677F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "setup_16.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_16.h"; sourceTree = "SOURCE_ROOT"; };
+ 184CE8BA435703F28975DC5D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_NotificationType.h"; path = "../../../../../modules/juce_events/messages/juce_NotificationType.h"; sourceTree = "SOURCE_ROOT"; };
+ 184F543273935A63366BCA51 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioDeviceSelectorComponent.cpp"; path = "../../../../../modules/juce_audio_utils/gui/juce_AudioDeviceSelectorComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 18828011791118DF6440C6A4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SharedResourcePointer.h"; path = "../../../../../modules/juce_core/memory/juce_SharedResourcePointer.h"; sourceTree = "SOURCE_ROOT"; };
+ 1896F7A05A4372B4247C34A4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_File.h"; path = "../../../../../modules/juce_core/files/juce_File.h"; sourceTree = "SOURCE_ROOT"; };
+ 190BFEB9E9811F1D73306F79 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_NamedPipe.h"; path = "../../../../../modules/juce_core/network/juce_NamedPipe.h"; sourceTree = "SOURCE_ROOT"; };
+ 193954F9CF9005014377F9FF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_events.cpp"; path = "../../../../../modules/juce_events/juce_events.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 193EE3A9C056FB7BFD83667C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_blocks_basics.h"; path = "../../../../../modules/juce_blocks_basics/juce_blocks_basics.h"; sourceTree = "SOURCE_ROOT"; };
+ 19482F63E164192F9C0CC655 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Identifier.h"; path = "../../../../../modules/juce_core/text/juce_Identifier.h"; sourceTree = "SOURCE_ROOT"; };
+ 197D3D704A44AA39F3F92F1F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_SystemStats.cpp"; path = "../../../../../modules/juce_core/system/juce_SystemStats.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 199FB84B17D7610C48A08C12 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TableListBox.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_TableListBox.h"; sourceTree = "SOURCE_ROOT"; };
+ 19BF72ABEB3B9D8D776744EE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LookAndFeel_V3.h"; path = "../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V3.h"; sourceTree = "SOURCE_ROOT"; };
+ 19CDD6C2AE371BE31174D5F1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_KeyListener.cpp"; path = "../../../../../modules/juce_gui_basics/keyboard/juce_KeyListener.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1A54156E7F0715AA90652992 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileChooserDialogBox.h"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FileChooserDialogBox.h"; sourceTree = "SOURCE_ROOT"; };
+ 1A58C7E03F2C3D22E356E817 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DirectoryIterator.cpp"; path = "../../../../../modules/juce_core/files/juce_DirectoryIterator.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1A9FEB70EB440AE3B3BE52D2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = registry.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/registry.h"; sourceTree = "SOURCE_ROOT"; };
+ 1B3FB995CF83C1B588F8F9BF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_WindowsRegistry.h"; path = "../../../../../modules/juce_core/misc/juce_WindowsRegistry.h"; sourceTree = "SOURCE_ROOT"; };
+ 1B6684D65B3AF31CAB4D7B8E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmainct.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdmainct.c"; sourceTree = "SOURCE_ROOT"; };
+ 1BB1E8928FBEB3F72621F2F6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcprepct.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jcprepct.c"; sourceTree = "SOURCE_ROOT"; };
+ 1BD83CC88D6EA454CE3CC746 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_BluetoothMidiDevicePairingDialogue.cpp"; path = "../../../../../modules/juce_audio_utils/native/juce_linux_BluetoothMidiDevicePairingDialogue.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1BE918CC1F7F26F93A4B8EC1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LocalisedStrings.h"; path = "../../../../../modules/juce_core/text/juce_LocalisedStrings.h"; sourceTree = "SOURCE_ROOT"; };
+ 1C024E345C38DCAB8D0BE6F9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = fixed.c; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/fixed.c"; sourceTree = "SOURCE_ROOT"; };
+ 1C14BD4230F9672D9AE44BFF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MultiDocumentPanel.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_MultiDocumentPanel.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1CC0B58D7AEA47DADB041C96 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CachedValue.cpp"; path = "../../../../../modules/juce_data_structures/values/juce_CachedValue.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1CDA4FD4B1B51222AEE6DCA2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MarkerList.h"; path = "../../../../../modules/juce_gui_basics/positioning/juce_MarkerList.h"; sourceTree = "SOURCE_ROOT"; };
+ 1CF24016C5884A75DE865988 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DrawablePath.h"; path = "../../../../../modules/juce_gui_basics/drawables/juce_DrawablePath.h"; sourceTree = "SOURCE_ROOT"; };
+ 1D0E04EA23573F4C5199DFF3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DropShadower.h"; path = "../../../../../modules/juce_gui_basics/misc/juce_DropShadower.h"; sourceTree = "SOURCE_ROOT"; };
+ 1D9A7BEB060662FBA38DF385 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioDeviceManager.cpp"; path = "../../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1DC75AA5AD6118F35371BDB0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_Network.cpp"; path = "../../../../../modules/juce_core/native/juce_android_Network.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1DCD9527835FD4771E959818 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SystemClipboard.h"; path = "../../../../../modules/juce_gui_basics/keyboard/juce_SystemClipboard.h"; sourceTree = "SOURCE_ROOT"; };
+ 1DFD35C6D473DCAEE12C18DF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FileSearchPath.cpp"; path = "../../../../../modules/juce_core/files/juce_FileSearchPath.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1E5474F79E3971C77F173C21 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SystemStats.h"; path = "../../../../../modules/juce_core/system/juce_SystemStats.h"; sourceTree = "SOURCE_ROOT"; };
+ 1E614A63C2C2AA7B858DF4C1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MPEMessages.cpp"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPEMessages.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1E78B98A70BD5E14381302DC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioIODevice.cpp"; path = "../../../../../modules/juce_audio_devices/audio_io/juce_AudioIODevice.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 1EA1A059799CA880FA6E2ADB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioParameterChoice.h"; path = "../../../../../modules/juce_audio_processors/utilities/juce_AudioParameterChoice.h"; sourceTree = "SOURCE_ROOT"; };
+ 1EAF33874D8D4F13676C412C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BitmapLEDProgram.h"; path = "../../../../../modules/juce_blocks_basics/visualisers/juce_BitmapLEDProgram.h"; sourceTree = "SOURCE_ROOT"; };
+ 1ED66F4F7C1B6FA4369A8E95 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = res0.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/res0.c"; sourceTree = "SOURCE_ROOT"; };
+ 1F58F7262450884A7E6BEF4F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_graphics.h"; path = "../../../../../modules/juce_graphics/juce_graphics.h"; sourceTree = "SOURCE_ROOT"; };
+ 1FEB7C2AD69F03FD21C04CD8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MenuBarComponent.h"; path = "../../../../../modules/juce_gui_basics/menus/juce_MenuBarComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 1FF09BE12A8EE7359DEB6A11 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ActionBroadcaster.cpp"; path = "../../../../../modules/juce_events/broadcasters/juce_ActionBroadcaster.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 200E7992C80ECC1AE74C9468 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MemoryMappedAudioFormatReader.h"; path = "../../../../../modules/juce_audio_formats/format/juce_MemoryMappedAudioFormatReader.h"; sourceTree = "SOURCE_ROOT"; };
+ 20352597FF0FD0A4B487CCFC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_gui_basics.cpp"; path = "../../../../../modules/juce_gui_basics/juce_gui_basics.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 20AFC08D3825F8F1EA4C4352 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngget.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngget.c"; sourceTree = "SOURCE_ROOT"; };
+ 20E50B7CC91B87CFA1CC8C17 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/alloc.h"; sourceTree = "SOURCE_ROOT"; };
+ 2116BBCD560828B835577E82 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jconfig.h; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jconfig.h"; sourceTree = "SOURCE_ROOT"; };
+ 21479ABF74938D58A8859E57 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AffineTransform.cpp"; path = "../../../../../modules/juce_graphics/geometry/juce_AffineTransform.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 215273F35854D93D4684F590 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ImageConvolutionKernel.cpp"; path = "../../../../../modules/juce_graphics/images/juce_ImageConvolutionKernel.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 215A5B82922A9A95F68FE7BA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DrawableButton.h"; path = "../../../../../modules/juce_gui_basics/buttons/juce_DrawableButton.h"; sourceTree = "SOURCE_ROOT"; };
+ 21E9D0E35F84BCF5897B262C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ResamplingAudioSource.h"; path = "../../../../../modules/juce_audio_basics/sources/juce_ResamplingAudioSource.h"; sourceTree = "SOURCE_ROOT"; };
+ 222A183111DEA8A63599510A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = BlockComponents.h; path = ../../Source/BlockComponents.h; sourceTree = "SOURCE_ROOT"; };
+ 226BD1CCCAD60DBD0167568E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MenuBarModel.cpp"; path = "../../../../../modules/juce_gui_basics/menus/juce_MenuBarModel.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 2282324E575678E8837470EF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jccoefct.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jccoefct.c"; sourceTree = "SOURCE_ROOT"; };
+ 22866A3227D44A6B5CF577F6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctflt.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jfdctflt.c"; sourceTree = "SOURCE_ROOT"; };
+ 228C128F3835E988917C908E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_posix_SharedCode.h"; path = "../../../../../modules/juce_core/native/juce_posix_SharedCode.h"; sourceTree = "SOURCE_ROOT"; };
+ 228CF6C968876BDA6ABC9242 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MPENote.h"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPENote.h"; sourceTree = "SOURCE_ROOT"; };
+ 22A1487B587036337AC48F11 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MidiOutput.h"; path = "../../../../../modules/juce_audio_devices/midi_io/juce_MidiOutput.h"; sourceTree = "SOURCE_ROOT"; };
+ 22A423BB04E0A3F1C2C3CA63 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngread.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngread.c"; sourceTree = "SOURCE_ROOT"; };
+ 22B33EA86FAB7366A914C948 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = bitrate.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/bitrate.h"; sourceTree = "SOURCE_ROOT"; };
+ 22B991F37C9D185AD22048F9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_String.h"; path = "../../../../../modules/juce_core/text/juce_String.h"; sourceTree = "SOURCE_ROOT"; };
+ 22ED7F3091B15731766D82C9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MPEInstrument.h"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPEInstrument.h"; sourceTree = "SOURCE_ROOT"; };
+ 23063052109C21CA6277AA4F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "floor_books.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/books/floor/floor_books.h"; sourceTree = "SOURCE_ROOT"; };
+ 230ECC5997D02F79080DD55D = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
+ 2317A757B8847CE1AE30010F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ApplicationBase.cpp"; path = "../../../../../modules/juce_events/messages/juce_ApplicationBase.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 23543D16B95632B1C14B943E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LookAndFeel_V1.h"; path = "../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V1.h"; sourceTree = "SOURCE_ROOT"; };
+ 23C4B5A7859ACA959F99FDE9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MP3AudioFormat.h"; path = "../../../../../modules/juce_audio_formats/codecs/juce_MP3AudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ 23C9352D9EEFA048506947EE = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DrawableImage.cpp"; path = "../../../../../modules/juce_gui_basics/drawables/juce_DrawableImage.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 23DAF49B90FB33BB97015CCA = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OpenGLFrameBuffer.cpp"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLFrameBuffer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 23E0BB729907E348A33E996F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Block.h"; path = "../../../../../modules/juce_blocks_basics/blocks/juce_Block.h"; sourceTree = "SOURCE_ROOT"; };
+ 23E572AAE21BB03B019F07EA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jquant1.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jquant1.c"; sourceTree = "SOURCE_ROOT"; };
+ 242A96C7860436DE347CD432 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_VST3PluginFormat.h"; path = "../../../../../modules/juce_audio_processors/format_types/juce_VST3PluginFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ 242F542B9738479E885167E6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioProcessorGraph.cpp"; path = "../../../../../modules/juce_audio_processors/processors/juce_AudioProcessorGraph.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 243F5C11D97748ED03B760C6 = {isa = PBXFileReference; lastKnownFileType = text.txt; name = README.txt; path = "../../../../../modules/juce_blocks_basics/README.txt"; sourceTree = "SOURCE_ROOT"; };
+ 2440CDB6EEC69DDB25DABA04 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CharacterFunctions.cpp"; path = "../../../../../modules/juce_core/text/juce_CharacterFunctions.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 2524470C265DC4C41D0F12FD = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwutil.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngwutil.c"; sourceTree = "SOURCE_ROOT"; };
+ 255D982E8E88EC37AF5D58CB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SortedSet.h"; path = "../../../../../modules/juce_core/containers/juce_SortedSet.h"; sourceTree = "SOURCE_ROOT"; };
+ 25616CCE492D37070C5FCBFF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TextEditor.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_TextEditor.h"; sourceTree = "SOURCE_ROOT"; };
+ 259877493D9B71079446749E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_Files.cpp"; path = "../../../../../modules/juce_core/native/juce_android_Files.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 259D44F4C84C586F476BBA0C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Variant.h"; path = "../../../../../modules/juce_core/containers/juce_Variant.h"; sourceTree = "SOURCE_ROOT"; };
+ 26083ECFA60A676C6365DA3D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CodeTokeniser.h"; path = "../../../../../modules/juce_gui_extra/code_editor/juce_CodeTokeniser.h"; sourceTree = "SOURCE_ROOT"; };
+ 263C2C63172A2793CE67D3D4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BooleanPropertyComponent.h"; path = "../../../../../modules/juce_gui_basics/properties/juce_BooleanPropertyComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 269A9F80899756D1F87AA82D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ImageFileFormat.h"; path = "../../../../../modules/juce_graphics/images/juce_ImageFileFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ 26B9B07C8F5E7214A9D5EA8B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BluetoothMidiDevicePairingDialogue.h"; path = "../../../../../modules/juce_audio_utils/gui/juce_BluetoothMidiDevicePairingDialogue.h"; sourceTree = "SOURCE_ROOT"; };
+ 26D37FF39DEC1AAD1AC03A53 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationCommandID.h"; path = "../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandID.h"; sourceTree = "SOURCE_ROOT"; };
+ 26FC7D9E7E5BB2D4535FB0CE = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MPENote.cpp"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPENote.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 271866450733C15873B1E46D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmainct.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jcmainct.c"; sourceTree = "SOURCE_ROOT"; };
+ 272EA32D51A8C8AD73A45D9D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DrawableImage.h"; path = "../../../../../modules/juce_gui_basics/drawables/juce_DrawableImage.h"; sourceTree = "SOURCE_ROOT"; };
+ 2736B4003A6B1E2AFB5B0F60 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ImageButton.cpp"; path = "../../../../../modules/juce_gui_basics/buttons/juce_ImageButton.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 27609A10FE09083D4C31AC75 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_KeyMappingEditorComponent.h"; path = "../../../../../modules/juce_gui_extra/misc/juce_KeyMappingEditorComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 276FEE4DBCB6806D06E959BB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DropShadower.cpp"; path = "../../../../../modules/juce_gui_basics/misc/juce_DropShadower.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 27957B112247D501D6B6FB8C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdsample.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdsample.c"; sourceTree = "SOURCE_ROOT"; };
+ 2799B7075032596236A1A6C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AiffAudioFormat.h"; path = "../../../../../modules/juce_audio_formats/codecs/juce_AiffAudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ 27DF9F9857FE41EC6A51B601 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioProcessorValueTreeState.h"; path = "../../../../../modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.h"; sourceTree = "SOURCE_ROOT"; };
+ 281F71278F1CE0C02ECB2EC4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_VST3Common.h"; path = "../../../../../modules/juce_audio_processors/format_types/juce_VST3Common.h"; sourceTree = "SOURCE_ROOT"; };
+ 287298405BC363E9C2492200 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "res_books_stereo.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/books/coupled/res_books_stereo.h"; sourceTree = "SOURCE_ROOT"; };
+ 289FA55DC2B007BF300AA35E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OpenGLTexture.cpp"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLTexture.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 28DC9D131B0DAEB78CEA016A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PropertyPanel.h"; path = "../../../../../modules/juce_gui_basics/properties/juce_PropertyPanel.h"; sourceTree = "SOURCE_ROOT"; };
+ 28EA90843E65FB432CDF2329 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "setup_32.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_32.h"; sourceTree = "SOURCE_ROOT"; };
+ 2926E85AC4A3BDBC357DADA8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ResizableCornerComponent.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_ResizableCornerComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 296E767F3EC21EEDF71AACD9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LeakedObjectDetector.h"; path = "../../../../../modules/juce_core/memory/juce_LeakedObjectDetector.h"; sourceTree = "SOURCE_ROOT"; };
+ 2972426DAB18DB5F584BC1E9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_SystemStats.cpp"; path = "../../../../../modules/juce_core/native/juce_linux_SystemStats.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 2973E5E96EE07B12B06E4901 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_MouseCursor.mm"; path = "../../../../../modules/juce_gui_basics/native/juce_mac_MouseCursor.mm"; sourceTree = "SOURCE_ROOT"; };
+ 2A1D123CDD681C79A4830CD9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FlexBox.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_FlexBox.h"; sourceTree = "SOURCE_ROOT"; };
+ 2A28AB08780C76D52CA8D732 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ApplicationCommandInfo.cpp"; path = "../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandInfo.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 2A8F3A1F1C343D6EB025FDD1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioDeviceSelectorComponent.h"; path = "../../../../../modules/juce_audio_utils/gui/juce_AudioDeviceSelectorComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 2AAF0E53F74A1B4AD7B0684A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Variant.cpp"; path = "../../../../../modules/juce_core/containers/juce_Variant.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 2AC4F829CD8C78F19827A695 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MessageListener.h"; path = "../../../../../modules/juce_events/messages/juce_MessageListener.h"; sourceTree = "SOURCE_ROOT"; };
+ 2ACDC9BC9FB57E955B8D2811 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Reverb.h"; path = "../../../../../modules/juce_audio_basics/effects/juce_Reverb.h"; sourceTree = "SOURCE_ROOT"; };
+ 2B64FDC069A6D6C03128F3C3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RectanglePlacement.h"; path = "../../../../../modules/juce_graphics/placement/juce_RectanglePlacement.h"; sourceTree = "SOURCE_ROOT"; };
+ 2B6844B8253422926CF12456 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Sampler.h"; path = "../../../../../modules/juce_audio_formats/sampler/juce_Sampler.h"; sourceTree = "SOURCE_ROOT"; };
+ 2B83CA343CAE71BE4F5A8F8E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioParameterFloat.h"; path = "../../../../../modules/juce_audio_processors/utilities/juce_AudioParameterFloat.h"; sourceTree = "SOURCE_ROOT"; };
+ 2BAB647B7DA103003A8A11AE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Quaternion.h"; path = "../../../../../modules/juce_opengl/geometry/juce_Quaternion.h"; sourceTree = "SOURCE_ROOT"; };
+ 2BC6A9CE84273433047F4C50 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGL_linux.h"; path = "../../../../../modules/juce_opengl/native/juce_OpenGL_linux.h"; sourceTree = "SOURCE_ROOT"; };
+ 2BF8C1C0452AA518578E2262 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioPlayHead.h"; path = "../../../../../modules/juce_audio_processors/processors/juce_AudioPlayHead.h"; sourceTree = "SOURCE_ROOT"; };
+ 2C126377CD039D5D20DF0090 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RelativePoint.cpp"; path = "../../../../../modules/juce_gui_basics/positioning/juce_RelativePoint.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 2C7B8BA92ACDE7200C096AD9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ApplicationCommandManager.cpp"; path = "../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandManager.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 2D0232CD6B55510B10D2D04D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Block.cpp"; path = "../../../../../modules/juce_blocks_basics/blocks/juce_Block.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 2D2C6DAA3B50438E63266771 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Point.h"; path = "../../../../../modules/juce_graphics/geometry/juce_Point.h"; sourceTree = "SOURCE_ROOT"; };
+ 2D40263014314146060C284D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_VSTCommon.h"; path = "../../../../../modules/juce_audio_processors/format_types/juce_VSTCommon.h"; sourceTree = "SOURCE_ROOT"; };
+ 2D583C31EE6E9A5D8ACD988F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jversion.h; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jversion.h"; sourceTree = "SOURCE_ROOT"; };
+ 2E3883BEB89636D207BB88B5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ArrayAllocationBase.h"; path = "../../../../../modules/juce_core/containers/juce_ArrayAllocationBase.h"; sourceTree = "SOURCE_ROOT"; };
+ 2E667E8E327AB96B7E56BEE3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "psych_11.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/psych_11.h"; sourceTree = "SOURCE_ROOT"; };
+ 2E735512175F5ADD2853D83D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FileOutputStream.cpp"; path = "../../../../../modules/juce_core/files/juce_FileOutputStream.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 2E7B68565DA034DDCF34573C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CallOutBox.cpp"; path = "../../../../../modules/juce_gui_basics/windows/juce_CallOutBox.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 2EA0BA49F0FEBB8B4BBEE3E0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Toolbar.cpp"; path = "../../../../../modules/juce_gui_basics/widgets/juce_Toolbar.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 2EA29D7871008E52A033BE16 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "config_types.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/config_types.h"; sourceTree = "SOURCE_ROOT"; };
+ 2ED4E37632885A949CCB9BE9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ReadWriteLock.cpp"; path = "../../../../../modules/juce_core/threads/juce_ReadWriteLock.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 2F03461E6CBD4354FE073460 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_Fonts.cpp"; path = "../../../../../modules/juce_graphics/native/juce_android_Fonts.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 2F407D57D8476238C54F8112 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Thread.h"; path = "../../../../../modules/juce_core/threads/juce_Thread.h"; sourceTree = "SOURCE_ROOT"; };
+ 2F6F34739BCD0348BAC4D5BE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RelativeCoordinatePositioner.h"; path = "../../../../../modules/juce_gui_basics/positioning/juce_RelativeCoordinatePositioner.h"; sourceTree = "SOURCE_ROOT"; };
+ 2F7EBCA1222D6D2E4B89FC2E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TableHeaderComponent.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_TableHeaderComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 2F85284E588516584213B5F1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrtran.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngrtran.c"; sourceTree = "SOURCE_ROOT"; };
+ 2FAF11C9F6C314A36C879445 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TextPropertyComponent.h"; path = "../../../../../modules/juce_gui_basics/properties/juce_TextPropertyComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 2FB1B8992C3497C5EFE0EB53 = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "Info-App.plist"; path = "Info-App.plist"; sourceTree = "SOURCE_ROOT"; };
+ 2FB361FFB25BD8EFB6160374 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Image.h"; path = "../../../../../modules/juce_graphics/images/juce_Image.h"; sourceTree = "SOURCE_ROOT"; };
+ 303AA74F7D9B6F2E8804A2C1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = infback.c; path = "../../../../../modules/juce_core/zip/zlib/infback.c"; sourceTree = "SOURCE_ROOT"; };
+ 3067E2B75D1E66CAC8DD65C0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = bitwriter.c; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/bitwriter.c"; sourceTree = "SOURCE_ROOT"; };
+ 30845B589D24B592C853C93E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_GlowEffect.cpp"; path = "../../../../../modules/juce_graphics/effects/juce_GlowEffect.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 30B2BDB16DA4D564F64D5CC7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLShaderProgram.h"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLShaderProgram.h"; sourceTree = "SOURCE_ROOT"; };
+ 30E6F8EE669C2F151A9F2956 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jmemmgr.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jmemmgr.c"; sourceTree = "SOURCE_ROOT"; };
+ 31531D45E19AEC8E3EC90C90 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MouseInactivityDetector.cpp"; path = "../../../../../modules/juce_gui_basics/mouse/juce_MouseInactivityDetector.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 31AA33CB3A5577B36EE0017D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Drawable.cpp"; path = "../../../../../modules/juce_gui_basics/drawables/juce_Drawable.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 31F899D8732CEAF956AA7A72 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_IPAddress.h"; path = "../../../../../modules/juce_core/network/juce_IPAddress.h"; sourceTree = "SOURCE_ROOT"; };
+ 321F587832C3C6C024BDD0E0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = trees.h; path = "../../../../../modules/juce_core/zip/zlib/trees.h"; sourceTree = "SOURCE_ROOT"; };
+ 3228E413B22DEEBDBA7ABF83 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_GZIPDecompressorInputStream.cpp"; path = "../../../../../modules/juce_core/zip/juce_GZIPDecompressorInputStream.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 322BA1353F7CA1DDDE9CAA4D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = envelope.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/envelope.c"; sourceTree = "SOURCE_ROOT"; };
+ 3284EB2D81A682511A78D1AC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_BigInteger.cpp"; path = "../../../../../modules/juce_core/maths/juce_BigInteger.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 332586DA099D853A0202054A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_KeyPress.cpp"; path = "../../../../../modules/juce_gui_basics/keyboard/juce_KeyPress.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 335219963DCBA3F85AC6C232 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CustomTypeface.cpp"; path = "../../../../../modules/juce_graphics/fonts/juce_CustomTypeface.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 337DBCFC0A462376DAFA8C3F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioParameterBool.h"; path = "../../../../../modules/juce_audio_processors/utilities/juce_AudioParameterBool.h"; sourceTree = "SOURCE_ROOT"; };
+ 33FED0E86133FA3439FCA42B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TopLevelWindow.h"; path = "../../../../../modules/juce_gui_basics/windows/juce_TopLevelWindow.h"; sourceTree = "SOURCE_ROOT"; };
+ 340CD5C7C9744CCCBE3AC335 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FloatVectorOperations.h"; path = "../../../../../modules/juce_audio_basics/buffers/juce_FloatVectorOperations.h"; sourceTree = "SOURCE_ROOT"; };
+ 340EA1B2263C37EC8A7B6014 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FilePreviewComponent.h"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FilePreviewComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 346470CBB2B9F42E9CB6E7C0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "setup_44.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_44.h"; sourceTree = "SOURCE_ROOT"; };
+ 34A09EB72E861BC2E41CF66E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationCommandInfo.h"; path = "../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandInfo.h"; sourceTree = "SOURCE_ROOT"; };
+ 34A1D01D8C72A0B39C0CF6D5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Files.cpp"; path = "../../../../../modules/juce_core/native/juce_win32_Files.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 34A1DB27664840651D853100 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Label.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_Label.h"; sourceTree = "SOURCE_ROOT"; };
+ 34A745BB4A935998D25D1E86 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioCDReader.h"; path = "../../../../../modules/juce_audio_utils/audio_cd/juce_AudioCDReader.h"; sourceTree = "SOURCE_ROOT"; };
+ 34B3D0B92C86C84AB27BBE90 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileSearchPath.h"; path = "../../../../../modules/juce_core/files/juce_FileSearchPath.h"; sourceTree = "SOURCE_ROOT"; };
+ 352E7E01ACE857617C20A3E1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "stream_encoder_framing.c"; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/stream_encoder_framing.c"; sourceTree = "SOURCE_ROOT"; };
+ 35656731DCD6703896CEE2E8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RelativeParallelogram.cpp"; path = "../../../../../modules/juce_gui_basics/positioning/juce_RelativeParallelogram.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 3568F7E50F7858A1B6279DDE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmarker.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdmarker.c"; sourceTree = "SOURCE_ROOT"; };
+ 35A297789A17E01FBE82827F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TouchSurface.h"; path = "../../../../../modules/juce_blocks_basics/blocks/juce_TouchSurface.h"; sourceTree = "SOURCE_ROOT"; };
+ 3665F1F2237ABB55D7614221 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_audio_utils.cpp"; path = "../../../../../modules/juce_audio_utils/juce_audio_utils.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 36AB1E409836F7CDCD24CE58 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_data_structures.cpp"; path = "../../../../../modules/juce_data_structures/juce_data_structures.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 36CA5FBB8A3CE191E952D894 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_SystemTrayIcon.cpp"; path = "../../../../../modules/juce_gui_extra/native/juce_linux_SystemTrayIcon.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 36D79F468C67AF3D0B800E85 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_URL.cpp"; path = "../../../../../modules/juce_core/network/juce_URL.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 378D773196595D931B25B784 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "setup_44u.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_44u.h"; sourceTree = "SOURCE_ROOT"; };
+ 38034209A283D7F8D56B5E53 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TextLayout.cpp"; path = "../../../../../modules/juce_graphics/fonts/juce_TextLayout.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 38448998E8030347F182B334 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileListComponent.h"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FileListComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 3851E8BB5BD4F284C8489033 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DynamicObject.h"; path = "../../../../../modules/juce_core/containers/juce_DynamicObject.h"; sourceTree = "SOURCE_ROOT"; };
+ 38791AEE23AA4968433982F6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_VSTMidiEventList.h"; path = "../../../../../modules/juce_audio_processors/format_types/juce_VSTMidiEventList.h"; sourceTree = "SOURCE_ROOT"; };
+ 38A03045629DB69AE42D4206 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcapimin.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jcapimin.c"; sourceTree = "SOURCE_ROOT"; };
+ 392CEE74B1D96166F05D02D9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ImageComponent.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_ImageComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 3986436BB1332AA00187E0BC = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ImagePreviewComponent.h"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_ImagePreviewComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 398873B7F0980B7D27356464 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ArrowButton.h"; path = "../../../../../modules/juce_gui_basics/buttons/juce_ArrowButton.h"; sourceTree = "SOURCE_ROOT"; };
+ 39B450967D7D7D4B1E1ECED3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Colour.h"; path = "../../../../../modules/juce_graphics/colour/juce_Colour.h"; sourceTree = "SOURCE_ROOT"; };
+ 39D9DEE8F862C43CF6F4DA7F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_DirectSound.cpp"; path = "../../../../../modules/juce_audio_devices/native/juce_win32_DirectSound.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 3A56A49F2C3025A4E7E74C35 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OpenGLPixelFormat.cpp"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLPixelFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 3A5708787015E10D959ED324 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Memory.h"; path = "../../../../../modules/juce_core/memory/juce_Memory.h"; sourceTree = "SOURCE_ROOT"; };
+ 3A648036804F8E2D52E5B60E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_WildcardFileFilter.h"; path = "../../../../../modules/juce_core/files/juce_WildcardFileFilter.h"; sourceTree = "SOURCE_ROOT"; };
+ 3A795BC053BEA2428052FEBE = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ModalComponentManager.cpp"; path = "../../../../../modules/juce_gui_basics/components/juce_ModalComponentManager.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 3AB83A04D08F2F329AB81AE1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ComponentListener.h"; path = "../../../../../modules/juce_gui_basics/components/juce_ComponentListener.h"; sourceTree = "SOURCE_ROOT"; };
+ 3ABF91F41A610658F5B17523 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
+ 3AE6DEF29143AA3E59CEB1DA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ImageConvolutionKernel.h"; path = "../../../../../modules/juce_graphics/images/juce_ImageConvolutionKernel.h"; sourceTree = "SOURCE_ROOT"; };
+ 3B27E4A68284DA2C27655D59 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioPluginFormat.cpp"; path = "../../../../../modules/juce_audio_processors/format/juce_AudioPluginFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 3B2A1B51E2C33786098AAE49 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Colours.cpp"; path = "../../../../../modules/juce_graphics/colour/juce_Colours.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 3B4E0B86B77DC40F15FB3F94 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctflt.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jidctflt.c"; sourceTree = "SOURCE_ROOT"; };
+ 3B63BB4D108A10D0C5FECBEF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_Threads.mm"; path = "../../../../../modules/juce_core/native/juce_mac_Threads.mm"; sourceTree = "SOURCE_ROOT"; };
+ 3B9D6C4308A396C6953A2B19 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AbstractFifo.cpp"; path = "../../../../../modules/juce_core/containers/juce_AbstractFifo.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 3BD3060E486C89B438B21F43 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AttributedString.cpp"; path = "../../../../../modules/juce_graphics/fonts/juce_AttributedString.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 3BEC5630096C646AACD87205 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Button.cpp"; path = "../../../../../modules/juce_gui_basics/buttons/juce_Button.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 3C03483C05460B67987EA712 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "codec_internal.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/codec_internal.h"; sourceTree = "SOURCE_ROOT"; };
+ 3C43BD70ACCE68D03688BBBF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = envelope.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/envelope.h"; sourceTree = "SOURCE_ROOT"; };
+ 3C5760CD990742E382358250 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = lpc.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lpc.c"; sourceTree = "SOURCE_ROOT"; };
+ 3CCEB87B02CFD73B01FE5E3C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwio.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngwio.c"; sourceTree = "SOURCE_ROOT"; };
+ 3DA85B078D53F40F9AE66620 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ResizableEdgeComponent.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_ResizableEdgeComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 3DE8B0B99FE443C92EE32CCF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CaretComponent.cpp"; path = "../../../../../modules/juce_gui_basics/keyboard/juce_CaretComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 3DFE53F6F99C7D51A8032CB1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = png.h; path = "../../../../../modules/juce_graphics/image_formats/pnglib/png.h"; sourceTree = "SOURCE_ROOT"; };
+ 3E176A88BA217ABC03C93CD0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MultiTimer.h"; path = "../../../../../modules/juce_events/timers/juce_MultiTimer.h"; sourceTree = "SOURCE_ROOT"; };
+ 3E17AE4B984D9E4083124600 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctint.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jfdctint.c"; sourceTree = "SOURCE_ROOT"; };
+ 3E18E1893DB1F592952F6E8F = {isa = PBXFileReference; lastKnownFileType = text.txt; name = "LittleFoot Language README.txt"; path = "../../../../../modules/juce_blocks_basics/littlefoot/LittleFoot Language README.txt"; sourceTree = "SOURCE_ROOT"; };
+ 3E2249E2AB8DC6FDCC87F9BF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OpenGLContext.cpp"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLContext.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 3E7005B5E5C7E2B1EE1FEA55 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Value.h"; path = "../../../../../modules/juce_data_structures/values/juce_Value.h"; sourceTree = "SOURCE_ROOT"; };
+ 3E85FF93FDA0C5C93F8EE3FA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioDeviceManager.h"; path = "../../../../../modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.h"; sourceTree = "SOURCE_ROOT"; };
+ 3E8E3CBF730E14A6EC9BEF89 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MPESynthesiser.h"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPESynthesiser.h"; sourceTree = "SOURCE_ROOT"; };
+ 3FFE8EE77F46A343C6D7464E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_devices.mm"; path = "../../../../../modules/juce_audio_devices/juce_audio_devices.mm"; sourceTree = "SOURCE_ROOT"; };
+ 40096AE757FEA9F663BF88B9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_Network.cpp"; path = "../../../../../modules/juce_core/native/juce_linux_Network.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 40B2DF2617C73C0928FF7D93 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_WebBrowserComponent.h"; path = "../../../../../modules/juce_gui_extra/misc/juce_WebBrowserComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 40BCCE9C782DBAF6459C3EDB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cderror.h; path = "../../../../../modules/juce_graphics/image_formats/jpglib/cderror.h"; sourceTree = "SOURCE_ROOT"; };
+ 40C17131B384BEEB66A4FAB1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PropertyPanel.cpp"; path = "../../../../../modules/juce_gui_basics/properties/juce_PropertyPanel.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 416061525348EB462B1603AB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_gui_extra.cpp"; path = "../../../../../modules/juce_gui_extra/juce_gui_extra.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 41641B5371BDC760981FDF9C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_ios_MessageManager.mm"; path = "../../../../../modules/juce_events/native/juce_ios_MessageManager.mm"; sourceTree = "SOURCE_ROOT"; };
+ 418464056E84CF38CAE498FE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TimeSliceThread.h"; path = "../../../../../modules/juce_core/threads/juce_TimeSliceThread.h"; sourceTree = "SOURCE_ROOT"; };
+ 41AB492EEF462863E50AF460 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MessageManager.cpp"; path = "../../../../../modules/juce_events/messages/juce_MessageManager.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 41B259559A84E4D37B411E9E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_formats.mm"; path = "../../../../../modules/juce_audio_formats/juce_audio_formats.mm"; sourceTree = "SOURCE_ROOT"; };
+ 41EA8B9F834209FF197ECE40 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LAMEEncoderAudioFormat.h"; path = "../../../../../modules/juce_audio_formats/codecs/juce_LAMEEncoderAudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ 4227DAE98212844575D0D944 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGL_ios.h"; path = "../../../../../modules/juce_opengl/native/juce_OpenGL_ios.h"; sourceTree = "SOURCE_ROOT"; };
+ 4231BEF0941784C4F2CDF362 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MidiBuffer.h"; path = "../../../../../modules/juce_audio_basics/midi/juce_MidiBuffer.h"; sourceTree = "SOURCE_ROOT"; };
+ 424E6E480FA0C70D02DF349A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = vorbisenc.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/vorbisenc.c"; sourceTree = "SOURCE_ROOT"; };
+ 425B547B9020991C73D4D65E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SoundPlayer.h"; path = "../../../../../modules/juce_audio_utils/players/juce_SoundPlayer.h"; sourceTree = "SOURCE_ROOT"; };
+ 42D58F7C9468DB8F354B353F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Initialisation.h"; path = "../../../../../modules/juce_events/messages/juce_Initialisation.h"; sourceTree = "SOURCE_ROOT"; };
+ 4307B791E5DC631C9447D24C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ToolbarItemFactory.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_ToolbarItemFactory.h"; sourceTree = "SOURCE_ROOT"; };
+ 434FD5F26F8F5052AA287287 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FlacAudioFormat.cpp"; path = "../../../../../modules/juce_audio_formats/codecs/juce_FlacAudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 43573D003FDD2FEA313A8B2F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_GraphicsContext.h"; path = "../../../../../modules/juce_graphics/contexts/juce_GraphicsContext.h"; sourceTree = "SOURCE_ROOT"; };
+ 43AF9A4E676708B5C9B936DE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = bitrate.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/bitrate.c"; sourceTree = "SOURCE_ROOT"; };
+ 43BB607E9D1BC08AAF03B711 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FileSearchPathListComponent.cpp"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FileSearchPathListComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 441A0BB8FD08721B0768A41C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Sampler.cpp"; path = "../../../../../modules/juce_audio_formats/sampler/juce_Sampler.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 448196AC5604B89ED7BC2086 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Uuid.cpp"; path = "../../../../../modules/juce_core/misc/juce_Uuid.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 4490CBDB4F5B394BC4C8E22E = {isa = PBXFileReference; lastKnownFileType = text.txt; name = "Ogg Vorbis Licence.txt"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/Ogg Vorbis Licence.txt"; sourceTree = "SOURCE_ROOT"; };
+ 44ECB2E8A37E35CED1BDEB44 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = assert.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/assert.h"; sourceTree = "SOURCE_ROOT"; };
+ 451702B185B088648F14A833 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TextEditor.cpp"; path = "../../../../../modules/juce_gui_basics/widgets/juce_TextEditor.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 457AE3EFAEB98FE93CEB0ACF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CoreAudioFormat.cpp"; path = "../../../../../modules/juce_audio_formats/codecs/juce_CoreAudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 4581D33463D9A6F637E8CDD8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ScrollBar.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_ScrollBar.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 45DD050BF036D8362025CC86 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_GraphicsContext.cpp"; path = "../../../../../modules/juce_graphics/native/juce_android_GraphicsContext.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 460CE4619594A71E9BCE42A3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_utils.mm"; path = "../../JuceLibraryCode/juce_audio_utils.mm"; sourceTree = "SOURCE_ROOT"; };
+ 46A6F1936584ED15D40366DE = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_ios_UIViewComponentPeer.mm"; path = "../../../../../modules/juce_gui_basics/native/juce_ios_UIViewComponentPeer.mm"; sourceTree = "SOURCE_ROOT"; };
+ 46AF0A703258AEE24688FE5B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ScrollBar.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_ScrollBar.h"; sourceTree = "SOURCE_ROOT"; };
+ 46EA57BC815C91944C720D59 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_QuickTimeAudioFormat.h"; path = "../../../../../modules/juce_audio_formats/codecs/juce_QuickTimeAudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ 4765710DC062B04830654235 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ScopedPointer.h"; path = "../../../../../modules/juce_core/memory/juce_ScopedPointer.h"; sourceTree = "SOURCE_ROOT"; };
+ 47787A636075A669F8FFA434 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ReferenceCountedArray.h"; path = "../../../../../modules/juce_core/containers/juce_ReferenceCountedArray.h"; sourceTree = "SOURCE_ROOT"; };
+ 478C6A7FDD7B257654B67B59 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ThreadPool.h"; path = "../../../../../modules/juce_core/threads/juce_ThreadPool.h"; sourceTree = "SOURCE_ROOT"; };
+ 48037047F1CC53BDB2CBF2E9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MidiFile.cpp"; path = "../../../../../modules/juce_audio_basics/midi/juce_MidiFile.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 4840F2FDA6C6A3E0CA41FA3D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CachedComponentImage.h"; path = "../../../../../modules/juce_gui_basics/components/juce_CachedComponentImage.h"; sourceTree = "SOURCE_ROOT"; };
+ 4846DC8E7DFB0B17B0FCFF60 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ToolbarItemComponent.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_ToolbarItemComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 4860027F79C430D081214B03 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Identifier.cpp"; path = "../../../../../modules/juce_core/text/juce_Identifier.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 488FA6954BBFB6694C21AEB4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_BufferingAudioSource.cpp"; path = "../../../../../modules/juce_audio_basics/sources/juce_BufferingAudioSource.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 48FC93C2649A6B6B478AB4B8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_SplashScreen.cpp"; path = "../../../../../modules/juce_gui_extra/misc/juce_SplashScreen.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 490E933166E75FBF2163CAE0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_DirectWriteTypeface.cpp"; path = "../../../../../modules/juce_graphics/native/juce_win32_DirectWriteTypeface.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 49294AB2D8C5CCBBE763EA04 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FileChooser.cpp"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FileChooser.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 492DC3C535B73B14A707133A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BubbleComponent.h"; path = "../../../../../modules/juce_gui_basics/misc/juce_BubbleComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 4986E10C464822F15B91C7ED = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_IIRFilter.cpp"; path = "../../../../../modules/juce_audio_basics/effects/juce_IIRFilter.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 49D0C33F5968B4B16D73521F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_QuickTimeAudioFormat.cpp"; path = "../../../../../modules/juce_audio_formats/codecs/juce_QuickTimeAudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 49E68BE55F02C76D1A39B8E9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_LookAndFeel.cpp"; path = "../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 4A46906896AD28D34B0218F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = crc.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/crc.h"; sourceTree = "SOURCE_ROOT"; };
+ 4A4FAB8C91193D662A4ACFEF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioProcessorPlayer.h"; path = "../../../../../modules/juce_audio_utils/players/juce_AudioProcessorPlayer.h"; sourceTree = "SOURCE_ROOT"; };
+ 4A65ADBD6816BF0C9FE56E0F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LassoComponent.h"; path = "../../../../../modules/juce_gui_basics/mouse/juce_LassoComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 4A78F089AF9BAFC1586AF196 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FileFilter.cpp"; path = "../../../../../modules/juce_core/files/juce_FileFilter.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 4A7C8B1D23E9B6B7CCC02741 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioProcessor.cpp"; path = "../../../../../modules/juce_audio_processors/processors/juce_AudioProcessor.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 4A7D2BA623D3A1DE6B99DF1B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inffast.c; path = "../../../../../modules/juce_core/zip/zlib/inffast.c"; sourceTree = "SOURCE_ROOT"; };
+ 4A7DB9A482CFE6B1FCCA6174 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_XMLCodeTokeniser.h"; path = "../../../../../modules/juce_gui_extra/code_editor/juce_XMLCodeTokeniser.h"; sourceTree = "SOURCE_ROOT"; };
+ 4AC6C62FB545839E566D0FE9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_NewLine.h"; path = "../../../../../modules/juce_core/text/juce_NewLine.h"; sourceTree = "SOURCE_ROOT"; };
+ 4B28F11FE91DFD5341610403 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdhuff.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdhuff.c"; sourceTree = "SOURCE_ROOT"; };
+ 4BE7254995C059C494538C70 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BlockModels.h"; path = "../../../../../modules/juce_blocks_basics/protocol/juce_BlockModels.h"; sourceTree = "SOURCE_ROOT"; };
+ 4C512E6E088C4B973E866756 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_NSViewComponent.mm"; path = "../../../../../modules/juce_gui_extra/native/juce_mac_NSViewComponent.mm"; sourceTree = "SOURCE_ROOT"; };
+ 4C9BD4A188792CD1AA04D76E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Slider.cpp"; path = "../../../../../modules/juce_gui_basics/widgets/juce_Slider.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 4CCFA4612BCBD5FCEB6E02E0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PluginListComponent.cpp"; path = "../../../../../modules/juce_audio_processors/scanning/juce_PluginListComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 4D2D9C398522FA01A9FFFCBB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MidiBuffer.cpp"; path = "../../../../../modules/juce_audio_basics/midi/juce_MidiBuffer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 4D4461D4DE302DC06DE22D68 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ImageCache.cpp"; path = "../../../../../modules/juce_graphics/images/juce_ImageCache.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 4D69C440B571531C56B12E10 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Logger.h"; path = "../../../../../modules/juce_core/logging/juce_Logger.h"; sourceTree = "SOURCE_ROOT"; };
+ 4D84F3F6235C49D0ABAF4885 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CPlusPlusCodeTokeniser.cpp"; path = "../../../../../modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniser.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 4DCF8D8075DD05492643A922 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ColourGradient.h"; path = "../../../../../modules/juce_graphics/colour/juce_ColourGradient.h"; sourceTree = "SOURCE_ROOT"; };
+ 4E55A9C84ABE776CCA556594 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MidiKeyboardComponent.h"; path = "../../../../../modules/juce_audio_utils/gui/juce_MidiKeyboardComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 4E8EA77D5F1F16096D60F3CF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationCommandTarget.h"; path = "../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandTarget.h"; sourceTree = "SOURCE_ROOT"; };
+ 4E93F48CAB3C538054B0D9B6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AsyncUpdater.h"; path = "../../../../../modules/juce_events/broadcasters/juce_AsyncUpdater.h"; sourceTree = "SOURCE_ROOT"; };
+ 4EDEDEAB7029C5B5C2A63A15 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmerge.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdmerge.c"; sourceTree = "SOURCE_ROOT"; };
+ 4EECFA337A245BA2F32FDE9C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AlertWindow.cpp"; path = "../../../../../modules/juce_gui_basics/windows/juce_AlertWindow.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 4EFDE9EEDF6DA6E5A066F2DF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../../../../modules/juce_core/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
+ 4F2671111CAD35AA9A14E50A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Timer.cpp"; path = "../../../../../modules/juce_events/timers/juce_Timer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 505900B3A9C3E0EB350784F1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = callback.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/callback.h"; sourceTree = "SOURCE_ROOT"; };
+ 50FB808D07149E5872D146C8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DirectoryIterator.h"; path = "../../../../../modules/juce_core/files/juce_DirectoryIterator.h"; sourceTree = "SOURCE_ROOT"; };
+ 5122839D8D39723AA8BFBC70 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Base64.cpp"; path = "../../../../../modules/juce_core/text/juce_Base64.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 515145EF420E45BB7E0402C5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LiveConstantEditor.h"; path = "../../../../../modules/juce_gui_extra/misc/juce_LiveConstantEditor.h"; sourceTree = "SOURCE_ROOT"; };
+ 516684CBCB8ACBA9E44E4BFD = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_VSTPluginFormat.cpp"; path = "../../../../../modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 518466F491B5DC8B80063C73 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Uuid.h"; path = "../../../../../modules/juce_core/misc/juce_Uuid.h"; sourceTree = "SOURCE_ROOT"; };
+ 5236F7786FD9BFC43D9ABD94 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ValueTreeSynchroniser.h"; path = "../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.h"; sourceTree = "SOURCE_ROOT"; };
+ 5247BE9855469B053C368F24 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MemoryInputStream.cpp"; path = "../../../../../modules/juce_core/streams/juce_MemoryInputStream.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5289927ABB985AA0C17AFF50 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BufferingAudioFormatReader.h"; path = "../../../../../modules/juce_audio_formats/format/juce_BufferingAudioFormatReader.h"; sourceTree = "SOURCE_ROOT"; };
+ 529810AFE34B3B173DF7E89B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_mac_SystemTrayIcon.cpp"; path = "../../../../../modules/juce_gui_extra/native/juce_mac_SystemTrayIcon.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 52C4BC3D28F8184BC2F6B022 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LuaCodeTokeniser.h"; path = "../../../../../modules/juce_gui_extra/code_editor/juce_LuaCodeTokeniser.h"; sourceTree = "SOURCE_ROOT"; };
+ 531078615D14BDA90A50AA53 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentPeer.cpp"; path = "../../../../../modules/juce_gui_basics/windows/juce_ComponentPeer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5321E4A1DB897A2B7CF23AC0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FlexItem.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_FlexItem.h"; sourceTree = "SOURCE_ROOT"; };
+ 5329122490F95D7339752A4E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_SubregionStream.cpp"; path = "../../../../../modules/juce_core/streams/juce_SubregionStream.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 53C70300D106400F1AF2C123 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PropertySet.cpp"; path = "../../../../../modules/juce_core/containers/juce_PropertySet.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 541BEA0E11518594C696094F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_KeyMappingEditorComponent.cpp"; path = "../../../../../modules/juce_gui_extra/misc/juce_KeyMappingEditorComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5467983B508645F3246CADF1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileTreeComponent.h"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FileTreeComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 54C8D084F87C2B0A407CB3A0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_JSON.h"; path = "../../../../../modules/juce_core/javascript/juce_JSON.h"; sourceTree = "SOURCE_ROOT"; };
+ 54EB9618ADF1901432C2345F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SystemTrayIconComponent.h"; path = "../../../../../modules/juce_gui_extra/misc/juce_SystemTrayIconComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 54EDF505CD9D19D1FD59D612 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MidiInput.h"; path = "../../../../../modules/juce_audio_devices/midi_io/juce_MidiInput.h"; sourceTree = "SOURCE_ROOT"; };
+ 54FF63024B2057CB82A3009C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TextButton.h"; path = "../../../../../modules/juce_gui_basics/buttons/juce_TextButton.h"; sourceTree = "SOURCE_ROOT"; };
+ 55EFBD6183E831FBD8826325 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_events.mm"; path = "../../../../../modules/juce_events/juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
+ 5634188A865D1AED86FC1030 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Viewport.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_Viewport.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5660E3A821F2F566AAA0DCC3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ListenerList.cpp"; path = "../../../../../modules/juce_core/containers/juce_ListenerList.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5687068AA9A10610CCCAE92C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DrawableText.cpp"; path = "../../../../../modules/juce_gui_basics/drawables/juce_DrawableText.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 56A2B221F07582C3693CFABC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ThreadPool.cpp"; path = "../../../../../modules/juce_core/threads/juce_ThreadPool.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 56E56C2AB629F7288EFFDF99 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Atomic.h"; path = "../../../../../modules/juce_core/memory/juce_Atomic.h"; sourceTree = "SOURCE_ROOT"; };
+ 57436F09E9FE1CB619681DE1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MouseCursor.cpp"; path = "../../../../../modules/juce_gui_basics/mouse/juce_MouseCursor.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5779480339AAA112A12315A1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_CoreGraphicsContext.mm"; path = "../../../../../modules/juce_graphics/native/juce_mac_CoreGraphicsContext.mm"; sourceTree = "SOURCE_ROOT"; };
+ 57BFD80A8E5673123D9004B8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DrawableShape.h"; path = "../../../../../modules/juce_gui_basics/drawables/juce_DrawableShape.h"; sourceTree = "SOURCE_ROOT"; };
+ 580B644027718870A081DC4E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "stream_encoder.h"; path = "../../../../../modules/juce_audio_formats/codecs/flac/stream_encoder.h"; sourceTree = "SOURCE_ROOT"; };
+ 58880E117B1FCE6771ED958A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jmemnobs.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jmemnobs.c"; sourceTree = "SOURCE_ROOT"; };
+ 58C7100720C49C23EA841B13 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_ActiveXComponent.cpp"; path = "../../../../../modules/juce_gui_extra/native/juce_win32_ActiveXComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5901AE44435BBEA1841F2028 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = lsp.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lsp.h"; sourceTree = "SOURCE_ROOT"; };
+ 593FDB1011C838F5CB25E6A9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngset.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngset.c"; sourceTree = "SOURCE_ROOT"; };
+ 599F21A262B43F26B31A0137 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FileChooserDialogBox.cpp"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FileChooserDialogBox.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 59DBC804E4110F9FCDDAB23F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_mac_CoreGraphicsHelpers.h"; path = "../../../../../modules/juce_graphics/native/juce_mac_CoreGraphicsHelpers.h"; sourceTree = "SOURCE_ROOT"; };
+ 5AC1394BDDA0F1C11051F763 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioFormatManager.h"; path = "../../../../../modules/juce_audio_formats/format/juce_AudioFormatManager.h"; sourceTree = "SOURCE_ROOT"; };
+ 5AD9E3796F5E585A81810A09 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Desktop.h"; path = "../../../../../modules/juce_gui_basics/components/juce_Desktop.h"; sourceTree = "SOURCE_ROOT"; };
+ 5AEA510A742A1D7BAF22EC41 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TargetPlatform.h"; path = "../../../../../modules/juce_core/system/juce_TargetPlatform.h"; sourceTree = "SOURCE_ROOT"; };
+ 5B3703950FC13A76F07CC0B0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_mac_CoreMidi.cpp"; path = "../../../../../modules/juce_audio_devices/native/juce_mac_CoreMidi.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5B9750AEC9BF60E5C75D6F27 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TextDiff.cpp"; path = "../../../../../modules/juce_core/text/juce_TextDiff.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5B9F3AC6C97B813BB96F9C07 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jdhuff.h; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdhuff.h"; sourceTree = "SOURCE_ROOT"; };
+ 5BC395EBD64E8CAD3F608735 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_Messaging.cpp"; path = "../../../../../modules/juce_events/native/juce_android_Messaging.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5BD41E05243398FB26BC8041 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = scales.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/scales.h"; sourceTree = "SOURCE_ROOT"; };
+ 5C67296AC2E94992F244B1A8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_mac_CoreGraphicsContext.h"; path = "../../../../../modules/juce_graphics/native/juce_mac_CoreGraphicsContext.h"; sourceTree = "SOURCE_ROOT"; };
+ 5C843AB1BC6467611517390A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = export.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/export.h"; sourceTree = "SOURCE_ROOT"; };
+ 5CD9180E4223F79C65313EF8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_StretchableLayoutManager.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_StretchableLayoutManager.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5CF0F5458B69B697F084D1CB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = lpc.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lpc.h"; sourceTree = "SOURCE_ROOT"; };
+ 5D065FB649082368A82A4D7E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_AudioCDReader.mm"; path = "../../../../../modules/juce_audio_utils/native/juce_mac_AudioCDReader.mm"; sourceTree = "SOURCE_ROOT"; };
+ 5D456364DF7A1A1C1CBCA1F0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_opengl.mm"; path = "../../JuceLibraryCode/juce_opengl.mm"; sourceTree = "SOURCE_ROOT"; };
+ 5D4BEFEC0E129949C58876DD = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_devices.mm"; path = "../../JuceLibraryCode/juce_audio_devices.mm"; sourceTree = "SOURCE_ROOT"; };
+ 5D55891DEDD0EEFA6F294941 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Synthesiser.cpp"; path = "../../../../../modules/juce_audio_basics/synthesisers/juce_Synthesiser.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5D55C700506847B0C3E7992A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ApplicationProperties.cpp"; path = "../../../../../modules/juce_data_structures/app_properties/juce_ApplicationProperties.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5E0AA1FA0367D0B8D32A5FDB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_LuaCodeTokeniser.cpp"; path = "../../../../../modules/juce_gui_extra/code_editor/juce_LuaCodeTokeniser.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5E11C3AEEEBFB5D3ACE79B2E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MidiRPN.h"; path = "../../../../../modules/juce_audio_basics/midi/juce_MidiRPN.h"; sourceTree = "SOURCE_ROOT"; };
+ 5E5B5455D01D68404DA760D3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioProcessorEditor.h"; path = "../../../../../modules/juce_audio_processors/processors/juce_AudioProcessorEditor.h"; sourceTree = "SOURCE_ROOT"; };
+ 5ECB1585CB10B6336F35039E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_Clipboard.cpp"; path = "../../../../../modules/juce_gui_basics/native/juce_linux_Clipboard.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5F2ABD15045B9C2D45BBB281 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileBrowserListener.h"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FileBrowserListener.h"; sourceTree = "SOURCE_ROOT"; };
+ 5F849E06BD0AEC3F3CA3803E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_utils.h"; path = "../../../../../modules/juce_audio_utils/juce_audio_utils.h"; sourceTree = "SOURCE_ROOT"; };
+ 5FB96EBC6B8E73E76F2C2D7A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MidiKeyboardState.cpp"; path = "../../../../../modules/juce_audio_basics/midi/juce_MidiKeyboardState.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5FDD76A98FDD6FAD2CB88606 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "res_books_uncoupled.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/books/uncoupled/res_books_uncoupled.h"; sourceTree = "SOURCE_ROOT"; };
+ 5FEDA06DD9D390733743ED0F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ChoicePropertyComponent.cpp"; path = "../../../../../modules/juce_gui_basics/properties/juce_ChoicePropertyComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 5FFD4BC1A7EB346271391205 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Thread.cpp"; path = "../../../../../modules/juce_core/threads/juce_Thread.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 60001B432129FD5855629F3E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_KeyboardFocusTraverser.h"; path = "../../../../../modules/juce_gui_basics/keyboard/juce_KeyboardFocusTraverser.h"; sourceTree = "SOURCE_ROOT"; };
+ 601F5CB6345EC149C773CAEA = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_BufferedInputStream.cpp"; path = "../../../../../modules/juce_core/streams/juce_BufferedInputStream.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 60200D25748FFB8436112D85 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MemoryInputStream.h"; path = "../../../../../modules/juce_core/streams/juce_MemoryInputStream.h"; sourceTree = "SOURCE_ROOT"; };
+ 604CC1744C3DFD07E43F6A82 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGL_android.h"; path = "../../../../../modules/juce_opengl/native/juce_OpenGL_android.h"; sourceTree = "SOURCE_ROOT"; };
+ 609A9DCD9B58779BFE402BBF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "stream_decoder.h"; path = "../../../../../modules/juce_audio_formats/codecs/flac/stream_decoder.h"; sourceTree = "SOURCE_ROOT"; };
+ 60D50FA5390DEADA129CBD25 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_data_structures.h"; path = "../../../../../modules/juce_data_structures/juce_data_structures.h"; sourceTree = "SOURCE_ROOT"; };
+ 60DE112B177F465AF7ECD44C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PluginDescription.cpp"; path = "../../../../../modules/juce_audio_processors/processors/juce_PluginDescription.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 60EEA5E3658D36513E1A25FD = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_opengl.h"; path = "../../../../../modules/juce_opengl/juce_opengl.h"; sourceTree = "SOURCE_ROOT"; };
+ 621C85154E8537D98DD550D3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormatReaderSource.cpp"; path = "../../../../../modules/juce_audio_formats/format/juce_AudioFormatReaderSource.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 6259E41DD05DF414BFAEFF1F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentMovementWatcher.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_ComponentMovementWatcher.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 62D3C5C70DDBEEE7E16DD1F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = uncompr.c; path = "../../../../../modules/juce_core/zip/zlib/uncompr.c"; sourceTree = "SOURCE_ROOT"; };
+ 62D3CBF544E4AB48E11D77E3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = sharedbook.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/sharedbook.c"; sourceTree = "SOURCE_ROOT"; };
+ 63690D22628914EA9BE61A6B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_KnownPluginList.cpp"; path = "../../../../../modules/juce_audio_processors/scanning/juce_KnownPluginList.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 639AEE67CBD131D3D160C094 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_AudioCDBurner.mm"; path = "../../../../../modules/juce_audio_utils/native/juce_mac_AudioCDBurner.mm"; sourceTree = "SOURCE_ROOT"; };
+ 63A0B0B37AAB0387A610F6AE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ReadWriteLock.h"; path = "../../../../../modules/juce_core/threads/juce_ReadWriteLock.h"; sourceTree = "SOURCE_ROOT"; };
+ 63B20B7D5AB4BA7C645F10AE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CompilerSupport.h"; path = "../../../../../modules/juce_core/system/juce_CompilerSupport.h"; sourceTree = "SOURCE_ROOT"; };
+ 63B8C5F0192F2C0767C38B59 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MathsFunctions.h"; path = "../../../../../modules/juce_core/maths/juce_MathsFunctions.h"; sourceTree = "SOURCE_ROOT"; };
+ 64045131E5C2BA8A8DE951BB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FlacAudioFormat.h"; path = "../../../../../modules/juce_audio_formats/codecs/juce_FlacAudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ 641322D5C3949AED6682C101 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ToolbarItemPalette.cpp"; path = "../../../../../modules/juce_gui_basics/widgets/juce_ToolbarItemPalette.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 64DFFD927FB3D86B97E36EF9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_BufferingAudioFormatReader.cpp"; path = "../../../../../modules/juce_audio_formats/format/juce_BufferingAudioFormatReader.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 64E3E6EDAFEA1CE0C515588A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PathStrokeType.cpp"; path = "../../../../../modules/juce_graphics/geometry/juce_PathStrokeType.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 64E5B84F1FA947FA88171033 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Matrix3D.h"; path = "../../../../../modules/juce_opengl/geometry/juce_Matrix3D.h"; sourceTree = "SOURCE_ROOT"; };
+ 64F35E547771BD3A4ABFDB0D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLAppComponent.h"; path = "../../../../../modules/juce_opengl/utils/juce_OpenGLAppComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 6509144104CFCCC2661C84AD = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SubregionStream.h"; path = "../../../../../modules/juce_core/streams/juce_SubregionStream.h"; sourceTree = "SOURCE_ROOT"; };
+ 650E5906E5CAAEABABFEEE1C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngtrans.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngtrans.c"; sourceTree = "SOURCE_ROOT"; };
+ 656121CD59DA8E95455ABC28 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Vector3D.h"; path = "../../../../../modules/juce_opengl/geometry/juce_Vector3D.h"; sourceTree = "SOURCE_ROOT"; };
+ 65E03D29E9BA76F1CF344B75 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentBoundsConstrainer.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_ComponentBoundsConstrainer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 6602C5EBB2ADC3158B37B907 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioProcessorParameter.h"; path = "../../../../../modules/juce_audio_processors/processors/juce_AudioProcessorParameter.h"; sourceTree = "SOURCE_ROOT"; };
+ 661EF1C85FF1D2B6070163EE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "setup_11.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_11.h"; sourceTree = "SOURCE_ROOT"; };
+ 66AE29E32EB365E37B34FDD2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MemoryOutputStream.cpp"; path = "../../../../../modules/juce_core/streams/juce_MemoryOutputStream.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 66AF1158C662CB915EE1F216 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SelectedItemSet.h"; path = "../../../../../modules/juce_gui_basics/mouse/juce_SelectedItemSet.h"; sourceTree = "SOURCE_ROOT"; };
+ 66FEE3D850AB3A3D9FACAAE5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DeletedAtShutdown.h"; path = "../../../../../modules/juce_events/messages/juce_DeletedAtShutdown.h"; sourceTree = "SOURCE_ROOT"; };
+ 671BC724698C6A4A159738A6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MACAddress.h"; path = "../../../../../modules/juce_core/network/juce_MACAddress.h"; sourceTree = "SOURCE_ROOT"; };
+ 67606EF1CD1DDF9D69C93DFB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ComboBox.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_ComboBox.h"; sourceTree = "SOURCE_ROOT"; };
+ 676856EAC9E9FFB013E6B910 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CallbackMessage.h"; path = "../../../../../modules/juce_events/messages/juce_CallbackMessage.h"; sourceTree = "SOURCE_ROOT"; };
+ 678100D85EB6578B7390BE6F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TopLevelWindow.cpp"; path = "../../../../../modules/juce_gui_basics/windows/juce_TopLevelWindow.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 67C85156717AC5DD60AD4279 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioIODeviceType.h"; path = "../../../../../modules/juce_audio_devices/audio_io/juce_AudioIODeviceType.h"; sourceTree = "SOURCE_ROOT"; };
+ 67EE78D1C669F6DDED31CB39 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ChangeBroadcaster.cpp"; path = "../../../../../modules/juce_events/broadcasters/juce_ChangeBroadcaster.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 680095499A49102EF1B7F3C0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TabbedComponent.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_TabbedComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 6820E5E02FBE26EDA1E814E6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_GenericAudioProcessorEditor.cpp"; path = "../../../../../modules/juce_audio_processors/processors/juce_GenericAudioProcessorEditor.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 684A7466DDEA4CA1F785AAAF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_XmlDocument.cpp"; path = "../../../../../modules/juce_core/xml/juce_XmlDocument.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 687551D7CBDC73E3D249A30E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_KeyboardFocusTraverser.cpp"; path = "../../../../../modules/juce_gui_basics/keyboard/juce_KeyboardFocusTraverser.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 6897A03FBCF6F3E3FE02DD69 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileBasedDocument.h"; path = "../../../../../modules/juce_gui_extra/documents/juce_FileBasedDocument.h"; sourceTree = "SOURCE_ROOT"; };
+ 68C49A6E9109C5F448289C25 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AttributedString.h"; path = "../../../../../modules/juce_graphics/fonts/juce_AttributedString.h"; sourceTree = "SOURCE_ROOT"; };
+ 68F432AE5DFBDF416D381D69 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ReverbAudioSource.h"; path = "../../../../../modules/juce_audio_basics/sources/juce_ReverbAudioSource.h"; sourceTree = "SOURCE_ROOT"; };
+ 69571EA44314BEC40565D70D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_UndoManager.cpp"; path = "../../../../../modules/juce_data_structures/undomanager/juce_UndoManager.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 699EFC7DCE06711BB6C07F36 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = zconf.in.h; path = "../../../../../modules/juce_core/zip/zlib/zconf.in.h"; sourceTree = "SOURCE_ROOT"; };
+ 69AC4DA97DAF6291FB4831EE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = codebook.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/codebook.c"; sourceTree = "SOURCE_ROOT"; };
+ 69B3DA0D93EFA18D005D4BBA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jdct.h; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdct.h"; sourceTree = "SOURCE_ROOT"; };
+ 6A194777720E39F99CEBDE68 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jpeglib.h; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jpeglib.h"; sourceTree = "SOURCE_ROOT"; };
+ 6A5C7073E616E3C027C7298C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DialogWindow.h"; path = "../../../../../modules/juce_gui_basics/windows/juce_DialogWindow.h"; sourceTree = "SOURCE_ROOT"; };
+ 6A84B8A22E5DA1A769CCC18C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_KeyPressMappingSet.h"; path = "../../../../../modules/juce_gui_basics/commands/juce_KeyPressMappingSet.h"; sourceTree = "SOURCE_ROOT"; };
+ 6A88B631279A877CBF1EE8FC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioSubsectionReader.cpp"; path = "../../../../../modules/juce_audio_formats/format/juce_AudioSubsectionReader.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 6A95798F17AF7D10D2677BD7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FillType.cpp"; path = "../../../../../modules/juce_graphics/colour/juce_FillType.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 6ABDB6B3BC707D5EA4E754E5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PopupMenu.h"; path = "../../../../../modules/juce_gui_basics/menus/juce_PopupMenu.h"; sourceTree = "SOURCE_ROOT"; };
+ 6B130B8EFF75E1ECF0E20F21 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RelativePointPath.cpp"; path = "../../../../../modules/juce_gui_basics/positioning/juce_RelativePointPath.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 6C0699AE325D1A41FB8CC560 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Expression.cpp"; path = "../../../../../modules/juce_core/maths/juce_Expression.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 6C2B97454AB4AD2B7BFE0776 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = vorbisfile.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/vorbisfile.c"; sourceTree = "SOURCE_ROOT"; };
+ 6C3BD063682D8A97CE28ED2C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = vorbisfile.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/vorbisfile.h"; sourceTree = "SOURCE_ROOT"; };
+ 6C3D05CB8D915E9E8C1286EF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Javascript.h"; path = "../../../../../modules/juce_core/javascript/juce_Javascript.h"; sourceTree = "SOURCE_ROOT"; };
+ 6C75E5D335754A26EDB64C0E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = trees.c; path = "../../../../../modules/juce_core/zip/zlib/trees.c"; sourceTree = "SOURCE_ROOT"; };
+ 6C783023901E82078E0F2435 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PositionableAudioSource.h"; path = "../../../../../modules/juce_audio_basics/sources/juce_PositionableAudioSource.h"; sourceTree = "SOURCE_ROOT"; };
+ 6D105609475B730F812FE7BB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OggVorbisAudioFormat.h"; path = "../../../../../modules/juce_audio_formats/codecs/juce_OggVorbisAudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ 6D2AA08C51674AC355C3C4B9 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
+ 6D665D953ABA975CDB21318F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_NormalisableRange.h"; path = "../../../../../modules/juce_core/maths/juce_NormalisableRange.h"; sourceTree = "SOURCE_ROOT"; };
+ 6D8CBDEA7BD024FC9E2875F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win_BluetoothMidiDevicePairingDialogue.cpp"; path = "../../../../../modules/juce_audio_utils/native/juce_win_BluetoothMidiDevicePairingDialogue.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 6DE2EDC2238B94B55FA5167C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Expression.h"; path = "../../../../../modules/juce_core/maths/juce_Expression.h"; sourceTree = "SOURCE_ROOT"; };
+ 6E0317C6D582381E18F6FC28 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FileTreeComponent.cpp"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FileTreeComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 6E6A0A28D29F9CE5A97D9603 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_GlyphArrangement.h"; path = "../../../../../modules/juce_graphics/fonts/juce_GlyphArrangement.h"; sourceTree = "SOURCE_ROOT"; };
+ 6E77E7974D18C2A3889C94D7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MemoryBlock.h"; path = "../../../../../modules/juce_core/memory/juce_MemoryBlock.h"; sourceTree = "SOURCE_ROOT"; };
+ 6EB3442488752F0077F61CFA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngerror.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngerror.c"; sourceTree = "SOURCE_ROOT"; };
+ 6EBBA65276F7311BE0074812 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_processors.mm"; path = "../../../../../modules/juce_audio_processors/juce_audio_processors.mm"; sourceTree = "SOURCE_ROOT"; };
+ 6F303FBDC38398256ADA7BA7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_XMLCodeTokeniser.cpp"; path = "../../../../../modules/juce_gui_extra/code_editor/juce_XMLCodeTokeniser.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 6F4AE6971D02991BCC1B7F1A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = floor0.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/floor0.c"; sourceTree = "SOURCE_ROOT"; };
+ 6F4E9231B5C05BC368C3450E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Direct2DGraphicsContext.cpp"; path = "../../../../../modules/juce_graphics/native/juce_win32_Direct2DGraphicsContext.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 6F6F12174D4A4E4D1266894F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_StringRef.h"; path = "../../../../../modules/juce_core/text/juce_StringRef.h"; sourceTree = "SOURCE_ROOT"; };
+ 6FACB6671DF178C374D288C3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CallOutBox.h"; path = "../../../../../modules/juce_gui_basics/windows/juce_CallOutBox.h"; sourceTree = "SOURCE_ROOT"; };
+ 6FC15D6A4868FBA38C374110 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TreeView.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_TreeView.h"; sourceTree = "SOURCE_ROOT"; };
+ 6FC3B994387E6EDAF2BDEE75 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_osx_ObjCHelpers.h"; path = "../../../../../modules/juce_core/native/juce_osx_ObjCHelpers.h"; sourceTree = "SOURCE_ROOT"; };
+ 703BF13C50FBAA0690EB819D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_LowLevelGraphicsSoftwareRenderer.cpp"; path = "../../../../../modules/juce_graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 707DD628F538166D4733876E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_StringPairArray.h"; path = "../../../../../modules/juce_core/text/juce_StringPairArray.h"; sourceTree = "SOURCE_ROOT"; };
+ 70A3109F4B0C80AA941F513C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MidiMessageCollector.cpp"; path = "../../../../../modules/juce_audio_devices/midi_io/juce_MidiMessageCollector.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 70C841CF701E3FB91C81E547 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = floor1.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/floor1.c"; sourceTree = "SOURCE_ROOT"; };
+ 70D730CB666E9D486B44A2AF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PluginDirectoryScanner.cpp"; path = "../../../../../modules/juce_audio_processors/scanning/juce_PluginDirectoryScanner.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 70DB5546A7436EC8159F7825 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_audio_basics.cpp"; path = "../../../../../modules/juce_audio_basics/juce_audio_basics.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 71386FCE19C79DC74F1623FF = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
+ 713A0BDC7ACC4F399C378A0D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLTexture.h"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLTexture.h"; sourceTree = "SOURCE_ROOT"; };
+ 716E7225D1FAE92136DDE91A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PopupMenu.cpp"; path = "../../../../../modules/juce_gui_basics/menus/juce_PopupMenu.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 71E11286C74E10382B85CAF6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileSearchPathListComponent.h"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FileSearchPathListComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 721BC1EF4670F969B327BCFE = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DragAndDropContainer.cpp"; path = "../../../../../modules/juce_gui_basics/mouse/juce_DragAndDropContainer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 72300583DCD807FB8965116E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcapistd.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jcapistd.c"; sourceTree = "SOURCE_ROOT"; };
+ 72CC4E382F4DD97DE7D2265B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Singleton.h"; path = "../../../../../modules/juce_core/memory/juce_Singleton.h"; sourceTree = "SOURCE_ROOT"; };
+ 72D5B90B3F201DE61EFF5904 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_Fonts.cpp"; path = "../../../../../modules/juce_graphics/native/juce_linux_Fonts.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 72D97C35265816BF84B17A64 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ActionBroadcaster.h"; path = "../../../../../modules/juce_events/broadcasters/juce_ActionBroadcaster.h"; sourceTree = "SOURCE_ROOT"; };
+ 72E0C00FE7CAB47242F2B815 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioProcessorGraph.h"; path = "../../../../../modules/juce_audio_processors/processors/juce_AudioProcessorGraph.h"; sourceTree = "SOURCE_ROOT"; };
+ 72F093BD43569F666B148B27 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_IIRFilterAudioSource.h"; path = "../../../../../modules/juce_audio_basics/sources/juce_IIRFilterAudioSource.h"; sourceTree = "SOURCE_ROOT"; };
+ 72FEC6F5671BA939439E0CF0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioVisualiserComponent.cpp"; path = "../../../../../modules/juce_audio_utils/gui/juce_AudioVisualiserComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 731A4FE5C9250FE1D83D2008 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RelativePointPath.h"; path = "../../../../../modules/juce_gui_basics/positioning/juce_RelativePointPath.h"; sourceTree = "SOURCE_ROOT"; };
+ 734EDE0CB353BEB637FB28DF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = crc32.c; path = "../../../../../modules/juce_core/zip/zlib/crc32.c"; sourceTree = "SOURCE_ROOT"; };
+ 7352B3C338D6C18D80BA03B6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = metadata.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/metadata.h"; sourceTree = "SOURCE_ROOT"; };
+ 735B02968773FD74934EC9B9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ValueTree.h"; path = "../../../../../modules/juce_data_structures/values/juce_ValueTree.h"; sourceTree = "SOURCE_ROOT"; };
+ 737EA145B8366E0A55A8D6A0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ToolbarButton.h"; path = "../../../../../modules/juce_gui_basics/buttons/juce_ToolbarButton.h"; sourceTree = "SOURCE_ROOT"; };
+ 73EF2B898A07179D14B9EE08 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ImageCache.h"; path = "../../../../../modules/juce_graphics/images/juce_ImageCache.h"; sourceTree = "SOURCE_ROOT"; };
+ 7433092862D26C58AF93AE62 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ZipFile.h"; path = "../../../../../modules/juce_core/zip/juce_ZipFile.h"; sourceTree = "SOURCE_ROOT"; };
+ 7498ED1709143C20C79DB1E2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_ios_BluetoothMidiDevicePairingDialogue.mm"; path = "../../../../../modules/juce_audio_utils/native/juce_ios_BluetoothMidiDevicePairingDialogue.mm"; sourceTree = "SOURCE_ROOT"; };
+ 74FB9B1CB018E5342E7AABFA = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioProcessorEditor.cpp"; path = "../../../../../modules/juce_audio_processors/processors/juce_AudioProcessorEditor.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 752759743BA54E6A4E34EBC4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LowLevelGraphicsSoftwareRenderer.h"; path = "../../../../../modules/juce_graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.h"; sourceTree = "SOURCE_ROOT"; };
+ 7533170247A4B5A10D70246B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "stream_decoder.h"; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/protected/stream_decoder.h"; sourceTree = "SOURCE_ROOT"; };
+ 7597CCE58D1B95FB4342EA91 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_HyperlinkButton.cpp"; path = "../../../../../modules/juce_gui_basics/buttons/juce_HyperlinkButton.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 759D310E427CAB584332F916 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_Fonts.mm"; path = "../../../../../modules/juce_graphics/native/juce_mac_Fonts.mm"; sourceTree = "SOURCE_ROOT"; };
+ 75AA9C6E3FC6AAE881B93CA3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FileListComponent.cpp"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FileListComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 75D8AD14EB3D9985A3770C83 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_AudioCDBurner.cpp"; path = "../../../../../modules/juce_audio_utils/native/juce_win32_AudioCDBurner.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 75F17FFBBC74680724103F2C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLPixelFormat.h"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLPixelFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ 76374244710CA4A53830D7E6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = smallft.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/smallft.h"; sourceTree = "SOURCE_ROOT"; };
+ 76597C68627FE0AF43DEC454 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DrawablePath.cpp"; path = "../../../../../modules/juce_gui_basics/drawables/juce_DrawablePath.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 769FABFC14A17F7AC2BBC65D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jerror.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jerror.c"; sourceTree = "SOURCE_ROOT"; };
+ 76DB19422D33EF95B030AF4F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = smallft.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/smallft.c"; sourceTree = "SOURCE_ROOT"; };
+ 76F731D0553785FDCEC0CCC4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = bitmath.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/bitmath.h"; sourceTree = "SOURCE_ROOT"; };
+ 770D1A48C625E77273E34C64 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jccolor.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jccolor.c"; sourceTree = "SOURCE_ROOT"; };
+ 7736BA69BFD6B79E44DCF9D6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_LAMEEncoderAudioFormat.cpp"; path = "../../../../../modules/juce_audio_formats/codecs/juce_LAMEEncoderAudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 77847C660F3D9562BD1469FB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentDragger.cpp"; path = "../../../../../modules/juce_gui_basics/mouse/juce_ComponentDragger.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 779FC2189E09A0B4A15C45F7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_GlowEffect.h"; path = "../../../../../modules/juce_graphics/effects/juce_GlowEffect.h"; sourceTree = "SOURCE_ROOT"; };
+ 77D91228977E55D6C4D6C97A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SplashScreen.h"; path = "../../../../../modules/juce_gui_extra/misc/juce_SplashScreen.h"; sourceTree = "SOURCE_ROOT"; };
+ 77E856C4EDFB5608F03EBC99 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ConnectedChildProcess.cpp"; path = "../../../../../modules/juce_events/interprocess/juce_ConnectedChildProcess.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 77F678CCA2C005969380CA48 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LookAndFeel_V2.h"; path = "../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V2.h"; sourceTree = "SOURCE_ROOT"; };
+ 78329D02001CA45058DCF1AB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_JSON.cpp"; path = "../../../../../modules/juce_core/javascript/juce_JSON.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 785C1C92060466C4968202D0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_InputSource.h"; path = "../../../../../modules/juce_core/streams/juce_InputSource.h"; sourceTree = "SOURCE_ROOT"; };
+ 78655006F91EC8E5C99A6991 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PreferencesPanel.h"; path = "../../../../../modules/juce_gui_extra/misc/juce_PreferencesPanel.h"; sourceTree = "SOURCE_ROOT"; };
+ 787FCE42F8EFF4F62B69363D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_graphics.mm"; path = "../../JuceLibraryCode/juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
+ 7890A2750EB787AEBCA75F19 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_StretchableLayoutResizerBar.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_StretchableLayoutResizerBar.h"; sourceTree = "SOURCE_ROOT"; };
+ 78977B6BAB87C72BE8A6825A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_StringPool.cpp"; path = "../../../../../modules/juce_core/text/juce_StringPool.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 78B2E56220F1F3D0E9C06FBD = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RuleBasedTopologySource.h"; path = "../../../../../modules/juce_blocks_basics/topology/juce_RuleBasedTopologySource.h"; sourceTree = "SOURCE_ROOT"; };
+ 78D3A157D1DCAB72DC7D4FF2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_KeyListener.h"; path = "../../../../../modules/juce_gui_basics/keyboard/juce_KeyListener.h"; sourceTree = "SOURCE_ROOT"; };
+ 7991C45FB3CCD45D46A7EBDE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AppleRemote.h"; path = "../../../../../modules/juce_gui_extra/misc/juce_AppleRemote.h"; sourceTree = "SOURCE_ROOT"; };
+ 7A5FADFA9A6CF71D5D2B9FC6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_ios_UIViewComponent.mm"; path = "../../../../../modules/juce_gui_extra/native/juce_ios_UIViewComponent.mm"; sourceTree = "SOURCE_ROOT"; };
+ 7AB01CF3ABEAA9948DC8E0F8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_freetype_Fonts.cpp"; path = "../../../../../modules/juce_graphics/native/juce_freetype_Fonts.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 7ADB824594D23926754D9ABD = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_Threads.cpp"; path = "../../../../../modules/juce_core/native/juce_android_Threads.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 7B121FD3C6971459B5EC4DE0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ComponentBoundsConstrainer.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_ComponentBoundsConstrainer.h"; sourceTree = "SOURCE_ROOT"; };
+ 7B844571D08EC929B21A5ACF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = backends.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/backends.h"; sourceTree = "SOURCE_ROOT"; };
+ 7BAF11556203D550CE5E1560 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_core.mm"; path = "../../JuceLibraryCode/juce_core.mm"; sourceTree = "SOURCE_ROOT"; };
+ 7BC44A73343EBF0012783283 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_basics.mm"; path = "../../../../../modules/juce_audio_basics/juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
+ 7BD3D12701E20AD0509702C5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MouseEvent.h"; path = "../../../../../modules/juce_gui_basics/mouse/juce_MouseEvent.h"; sourceTree = "SOURCE_ROOT"; };
+ 7BF8065AC65F92C392CDB058 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FilenameComponent.cpp"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FilenameComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 7C137769611C5A269332467B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ColourGradient.cpp"; path = "../../../../../modules/juce_graphics/colour/juce_ColourGradient.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 7C145A4C116A743CB8D0624F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ResizableWindow.cpp"; path = "../../../../../modules/juce_gui_basics/windows/juce_ResizableWindow.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 7C164C4F47469F58BA6DCDD5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "stream_encoder.c"; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/stream_encoder.c"; sourceTree = "SOURCE_ROOT"; };
+ 7C22E5FD3C91AB34CB539E2E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RelativeTime.cpp"; path = "../../../../../modules/juce_core/time/juce_RelativeTime.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 7C3158B229AE5B18BAD208FC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PhysicalTopologySource.cpp"; path = "../../../../../modules/juce_blocks_basics/topology/juce_PhysicalTopologySource.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 7C955BABA03F3EF1E19E178E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_StandardHeader.h"; path = "../../../../../modules/juce_core/system/juce_StandardHeader.h"; sourceTree = "SOURCE_ROOT"; };
+ 7CA69469B3AFC9137FB98243 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_basics.h"; path = "../../../../../modules/juce_gui_basics/juce_gui_basics.h"; sourceTree = "SOURCE_ROOT"; };
+ 7D272E58C41C4B21A689C487 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TextButton.cpp"; path = "../../../../../modules/juce_gui_basics/buttons/juce_TextButton.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 7E4D2E09A56241058D485070 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ToolbarButton.cpp"; path = "../../../../../modules/juce_gui_basics/buttons/juce_ToolbarButton.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 7E4D7F844737CE5D8C9BD1CD = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = codebook.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/codebook.h"; sourceTree = "SOURCE_ROOT"; };
+ 7E5C701836EE0E311AE805B7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MarkerList.cpp"; path = "../../../../../modules/juce_gui_basics/positioning/juce_MarkerList.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 7EC2BB0FBA7BEC433B901162 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TextInputTarget.h"; path = "../../../../../modules/juce_gui_basics/keyboard/juce_TextInputTarget.h"; sourceTree = "SOURCE_ROOT"; };
+ 7F0EFEADDCDF0B8C3BD1278B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_BooleanPropertyComponent.cpp"; path = "../../../../../modules/juce_gui_basics/properties/juce_BooleanPropertyComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 7F5A0B43EA4CE0599C30637B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_StretchableObjectResizer.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_StretchableObjectResizer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 7F615DFC87CDB7F78660077C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "psych_16.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/psych_16.h"; sourceTree = "SOURCE_ROOT"; };
+ 7F81AFE4D54AA74B17E81899 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CodeDocument.cpp"; path = "../../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 803335D3EDDD75FED2EA7864 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioProcessorValueTreeState.cpp"; path = "../../../../../modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 8033E71C6724106F16F7FC35 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TooltipWindow.h"; path = "../../../../../modules/juce_gui_basics/windows/juce_TooltipWindow.h"; sourceTree = "SOURCE_ROOT"; };
+ 8056F5AAE245F445D1F5FA26 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = analysis.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/analysis.c"; sourceTree = "SOURCE_ROOT"; };
+ 8079D10F25DE8A660DFD7F97 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OggVorbisAudioFormat.cpp"; path = "../../../../../modules/juce_audio_formats/codecs/juce_OggVorbisAudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 80A162921EA7B00DF95B9D1C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DynamicLibrary.h"; path = "../../../../../modules/juce_core/threads/juce_DynamicLibrary.h"; sourceTree = "SOURCE_ROOT"; };
+ 80D2A754CA228BCA22EAFC8E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioThumbnailBase.h"; path = "../../../../../modules/juce_audio_utils/gui/juce_AudioThumbnailBase.h"; sourceTree = "SOURCE_ROOT"; };
+ 80D52462F8B49C3D1FBB6349 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngmem.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngmem.c"; sourceTree = "SOURCE_ROOT"; };
+ 80E4BC98EF30B463FCBF95C0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Font.h"; path = "../../../../../modules/juce_graphics/fonts/juce_Font.h"; sourceTree = "SOURCE_ROOT"; };
+ 810D7E7AC4E48A67AB84B75D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormatManager.cpp"; path = "../../../../../modules/juce_audio_formats/format/juce_AudioFormatManager.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 813AE492EA6457096991918B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = psy.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/psy.c"; sourceTree = "SOURCE_ROOT"; };
+ 814F764F531DA3B45B982764 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ToolbarItemPalette.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_ToolbarItemPalette.h"; sourceTree = "SOURCE_ROOT"; };
+ 816E973AAA295DE63DEBC95D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_mac_CarbonViewWrapperComponent.h"; path = "../../../../../modules/juce_gui_extra/native/juce_mac_CarbonViewWrapperComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 818FAF2D047AE69BA11091D7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OptionalScopedPointer.h"; path = "../../../../../modules/juce_core/memory/juce_OptionalScopedPointer.h"; sourceTree = "SOURCE_ROOT"; };
+ 8195E5CA20B1E6DE88148B41 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PropertiesFile.cpp"; path = "../../../../../modules/juce_data_structures/app_properties/juce_PropertiesFile.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 81F5049B4903492A6902FAE3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inftrees.c; path = "../../../../../modules/juce_core/zip/zlib/inftrees.c"; sourceTree = "SOURCE_ROOT"; };
+ 8221F414FAE8FBF996CBF033 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationBase.h"; path = "../../../../../modules/juce_events/messages/juce_ApplicationBase.h"; sourceTree = "SOURCE_ROOT"; };
+ 82CD7AB6C8788920318BFFF7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PropertiesFile.h"; path = "../../../../../modules/juce_data_structures/app_properties/juce_PropertiesFile.h"; sourceTree = "SOURCE_ROOT"; };
+ 830F7516AA78496143854C16 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_blocks_basics.cpp"; path = "../../JuceLibraryCode/juce_blocks_basics.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 831C32DB068A571A3E99E55B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_Audio.cpp"; path = "../../../../../modules/juce_audio_devices/native/juce_android_Audio.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 83B3F4B22F3603CFF3199C33 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = registry.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/registry.c"; sourceTree = "SOURCE_ROOT"; };
+ 83BA095FCF4E84B0AB0CF903 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PluginDescription.h"; path = "../../../../../modules/juce_audio_processors/processors/juce_PluginDescription.h"; sourceTree = "SOURCE_ROOT"; };
+ 84568194A9D160AD5459F013 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_DirectWriteTypeLayout.cpp"; path = "../../../../../modules/juce_graphics/native/juce_win32_DirectWriteTypeLayout.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 847F33928C5A70863F673938 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MPESynthesiserBase.cpp"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPESynthesiserBase.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 849DD96FF7656F52F1972F38 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
+ 84A04C8B8DE6E1C4FDC3F4A1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormat.cpp"; path = "../../../../../modules/juce_audio_formats/format/juce_AudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 850772CD6A8E69EACB89CB02 = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = BlocksMonitor/Images.xcassets; sourceTree = "SOURCE_ROOT"; };
+ 8559A01D9B969E13A40980C6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MessageManager.h"; path = "../../../../../modules/juce_events/messages/juce_MessageManager.h"; sourceTree = "SOURCE_ROOT"; };
+ 857C1BA3AF5C0210A8711464 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = compress.c; path = "../../../../../modules/juce_core/zip/zlib/compress.c"; sourceTree = "SOURCE_ROOT"; };
+ 85A0ABA6D4313DEAF9C7FBEB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Threads.cpp"; path = "../../../../../modules/juce_core/native/juce_win32_Threads.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 85D8D664D73759C455C4E8DC = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Message.h"; path = "../../../../../modules/juce_events/messages/juce_Message.h"; sourceTree = "SOURCE_ROOT"; };
+ 8646E594783C3E937A259EEE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ChangeBroadcaster.h"; path = "../../../../../modules/juce_events/broadcasters/juce_ChangeBroadcaster.h"; sourceTree = "SOURCE_ROOT"; };
+ 865CC068EAD0A9E54C77BBB1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = bitwriter.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/bitwriter.h"; sourceTree = "SOURCE_ROOT"; };
+ 86A4BD370ED34FF4CC252A18 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TableHeaderComponent.cpp"; path = "../../../../../modules/juce_gui_basics/widgets/juce_TableHeaderComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 86C050562945072E55B2304F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MidiOutput.cpp"; path = "../../../../../modules/juce_audio_devices/midi_io/juce_MidiOutput.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 86C53DA3976331FD98DF115F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Messaging.cpp"; path = "../../../../../modules/juce_events/native/juce_win32_Messaging.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 8818BE9F1A26A6F0393DF753 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "psych_8.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/psych_8.h"; sourceTree = "SOURCE_ROOT"; };
+ 8853EE56290506D1C5B1A324 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jutils.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jutils.c"; sourceTree = "SOURCE_ROOT"; };
+ 88A4EE2311F2D063677B1822 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudioKit.framework; path = System/Library/Frameworks/CoreAudioKit.framework; sourceTree = SDKROOT; };
+ 88EE9BAF87CBE950013CD3AB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ReverbAudioSource.cpp"; path = "../../../../../modules/juce_audio_basics/sources/juce_ReverbAudioSource.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 8941D9AFE6BE0F15F8391874 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RuleBasedTopologySource.cpp"; path = "../../../../../modules/juce_blocks_basics/topology/juce_RuleBasedTopologySource.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 898A95E0423C95670F8E00D9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_LADSPAPluginFormat.cpp"; path = "../../../../../modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 8A279F88C2047651F58628D1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_AudioCDReader.cpp"; path = "../../../../../modules/juce_audio_utils/native/juce_linux_AudioCDReader.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 8A974C1E78DF69BEDF4760D0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "stream_encoder.h"; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/stream_encoder.h"; sourceTree = "SOURCE_ROOT"; };
+ 8A9F1BF21DEC92A64F468E9C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CPlusPlusCodeTokeniser.h"; path = "../../../../../modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniser.h"; sourceTree = "SOURCE_ROOT"; };
+ 8ABBC420D650176FC816CA90 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioPluginFormat.h"; path = "../../../../../modules/juce_audio_processors/format/juce_AudioPluginFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ 8AF2D36988A56CB9C6068F5B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioPluginInstance.h"; path = "../../../../../modules/juce_audio_processors/processors/juce_AudioPluginInstance.h"; sourceTree = "SOURCE_ROOT"; };
+ 8B1B3FA81F246E78CB5F2D99 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_basics.h"; path = "../../../../../modules/juce_audio_basics/juce_audio_basics.h"; sourceTree = "SOURCE_ROOT"; };
+ 8B4505D4C9EBC3014C27D6D9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MPEMessages.h"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPEMessages.h"; sourceTree = "SOURCE_ROOT"; };
+ 8C99020753B8736AEF7D04D0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "setup_8.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_8.h"; sourceTree = "SOURCE_ROOT"; };
+ 8D5DB6220A070CA7C6EF649B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdpostct.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdpostct.c"; sourceTree = "SOURCE_ROOT"; };
+ 8D9598B7B36DB4A8DC7F257A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = mapping0.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/mapping0.c"; sourceTree = "SOURCE_ROOT"; };
+ 8DAD27599B4D76AA741E2F94 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = format.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/format.h"; sourceTree = "SOURCE_ROOT"; };
+ 8DD3CBC5EFBC79EE967D57B6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioThumbnail.h"; path = "../../../../../modules/juce_audio_utils/gui/juce_AudioThumbnail.h"; sourceTree = "SOURCE_ROOT"; };
+ 8DE0F4ADDA1C7FD72763835F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TextDiff.h"; path = "../../../../../modules/juce_core/text/juce_TextDiff.h"; sourceTree = "SOURCE_ROOT"; };
+ 8E25DB9F4F02D1EB553DD954 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DocumentWindow.h"; path = "../../../../../modules/juce_gui_basics/windows/juce_DocumentWindow.h"; sourceTree = "SOURCE_ROOT"; };
+ 8E607B1E70CF61A3B3F8B230 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentAnimator.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_ComponentAnimator.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 8E841F589CA7AAD4294FD631 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = crc.c; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/crc.c"; sourceTree = "SOURCE_ROOT"; };
+ 8EE36E6294B0521F7F8FA4AB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_XmlElement.cpp"; path = "../../../../../modules/juce_core/xml/juce_XmlElement.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 8F577D253454A9B7795B976D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_VST3PluginFormat.cpp"; path = "../../../../../modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 8F72A06310DEB2A6E6A0DA18 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
+ 8F7A2483AB8A87ED367B8276 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Range.h"; path = "../../../../../modules/juce_core/maths/juce_Range.h"; sourceTree = "SOURCE_ROOT"; };
+ 90168C92385FFFE93633DD25 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AlertWindow.h"; path = "../../../../../modules/juce_gui_basics/windows/juce_AlertWindow.h"; sourceTree = "SOURCE_ROOT"; };
+ 906854E5A523A5B01E5B5E63 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdapimin.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdapimin.c"; sourceTree = "SOURCE_ROOT"; };
+ 909C06CF037053D160E1D911 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_HighResolutionTimer.h"; path = "../../../../../modules/juce_core/threads/juce_HighResolutionTimer.h"; sourceTree = "SOURCE_ROOT"; };
+ 90EB80CDB45A0909C2ABDCCF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pngpriv.h; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngpriv.h"; sourceTree = "SOURCE_ROOT"; };
+ 911142143AB852FE25C27BEA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileInputSource.h"; path = "../../../../../modules/juce_core/streams/juce_FileInputSource.h"; sourceTree = "SOURCE_ROOT"; };
+ 9118ECA920DB03C9623ACABB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BitPackingUtilities.h"; path = "../../../../../modules/juce_blocks_basics/protocol/juce_BitPackingUtilities.h"; sourceTree = "SOURCE_ROOT"; };
+ 914600CCFA720261FC69CCD9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioSubsectionReader.h"; path = "../../../../../modules/juce_audio_formats/format/juce_AudioSubsectionReader.h"; sourceTree = "SOURCE_ROOT"; };
+ 919C366862EB3C10E5850D70 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdphuff.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdphuff.c"; sourceTree = "SOURCE_ROOT"; };
+ 9209F549B676E740E0B83FF7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Colours.h"; path = "../../../../../modules/juce_graphics/colour/juce_Colours.h"; sourceTree = "SOURCE_ROOT"; };
+ 920EC1092F93EC048706028A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_InputStream.h"; path = "../../../../../modules/juce_core/streams/juce_InputStream.h"; sourceTree = "SOURCE_ROOT"; };
+ 925360F7E3AA48D3AC8FC71B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PerformanceCounter.cpp"; path = "../../../../../modules/juce_core/time/juce_PerformanceCounter.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 930DC0F3CD592DE7B6A6945E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TabbedComponent.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_TabbedComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 93286547177CBA88A45187FB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Application.cpp"; path = "../../../../../modules/juce_gui_basics/application/juce_Application.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 932D69952B622B2BCFB904AC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TemporaryFile.cpp"; path = "../../../../../modules/juce_core/files/juce_TemporaryFile.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9415AEBC23728926E143CA87 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = format.c; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/format.c"; sourceTree = "SOURCE_ROOT"; };
+ 948A5AC343109E364FF586C0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "setup_44p51.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_44p51.h"; sourceTree = "SOURCE_ROOT"; };
+ 948ACEC6E5E7FB3963593D14 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TextEditorKeyMapper.h"; path = "../../../../../modules/juce_gui_basics/keyboard/juce_TextEditorKeyMapper.h"; sourceTree = "SOURCE_ROOT"; };
+ 95521385B606A5AF9DC25621 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FileLogger.cpp"; path = "../../../../../modules/juce_core/logging/juce_FileLogger.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 95DAFF093BC64C4E8AFFAD39 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LittleFootCompiler.h"; path = "../../../../../modules/juce_blocks_basics/littlefoot/juce_LittleFootCompiler.h"; sourceTree = "SOURCE_ROOT"; };
+ 961B5BA203F6A096FC1D5221 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DirectoryContentsList.h"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_DirectoryContentsList.h"; sourceTree = "SOURCE_ROOT"; };
+ 9621212C05067BDBB1EDC4B0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = zconf.h; path = "../../../../../modules/juce_core/zip/zlib/zconf.h"; sourceTree = "SOURCE_ROOT"; };
+ 96B0988BE177AFFCCB353FC1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PlatformDefs.h"; path = "../../../../../modules/juce_core/system/juce_PlatformDefs.h"; sourceTree = "SOURCE_ROOT"; };
+ 96F7798575656A87A58107DB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "win_utf8_io.h"; path = "../../../../../modules/juce_audio_formats/codecs/flac/win_utf8_io.h"; sourceTree = "SOURCE_ROOT"; };
+ 976DD9AF4615787148AD3141 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Slider.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_Slider.h"; sourceTree = "SOURCE_ROOT"; };
+ 97AD1E50A2BA5069A53B385F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_WildcardFileFilter.cpp"; path = "../../../../../modules/juce_core/files/juce_WildcardFileFilter.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 97C4CF34A7B666E1076D8643 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ResizableBorderComponent.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_ResizableBorderComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9851670A2A94D090ABDCD8EC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ProgressBar.cpp"; path = "../../../../../modules/juce_gui_basics/widgets/juce_ProgressBar.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 98536B7D7BF6DCCC121EF75F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_WavAudioFormat.h"; path = "../../../../../modules/juce_audio_formats/codecs/juce_WavAudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ 986D508D78EA59268FADE965 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdatasrc.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdatasrc.c"; sourceTree = "SOURCE_ROOT"; };
+ 98BD14DB6D84583B0A2138AD = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileChooser.h"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FileChooser.h"; sourceTree = "SOURCE_ROOT"; };
+ 9915EA36F2BC695AD5DA1FB0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jerror.h; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jerror.h"; sourceTree = "SOURCE_ROOT"; };
+ 993004BB53091A0FBEB0E418 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_events.mm"; path = "../../JuceLibraryCode/juce_events.mm"; sourceTree = "SOURCE_ROOT"; };
+ 9966516477648BBFCF5B0B94 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioIODeviceType.cpp"; path = "../../../../../modules/juce_audio_devices/audio_io/juce_AudioIODeviceType.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 99670416B9C5B1427EFDC235 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Logger.cpp"; path = "../../../../../modules/juce_core/logging/juce_Logger.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 99ACE9D856A4E22A5BACF1F9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MPESynthesiserVoice.cpp"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPESynthesiserVoice.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 99D1B54C81E3B11E5A515449 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inflate.h; path = "../../../../../modules/juce_core/zip/zlib/inflate.h"; sourceTree = "SOURCE_ROOT"; };
+ 9A61D74797BF0F66E4942D15 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RuntimePermissions.h"; path = "../../../../../modules/juce_core/misc/juce_RuntimePermissions.h"; sourceTree = "SOURCE_ROOT"; };
+ 9A798AA0771301D879ACA0E6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DialogWindow.cpp"; path = "../../../../../modules/juce_gui_basics/windows/juce_DialogWindow.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9AAD723B4A3EF1165901402F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_XmlDocument.h"; path = "../../../../../modules/juce_core/xml/juce_XmlDocument.h"; sourceTree = "SOURCE_ROOT"; };
+ 9AB6CB5AF2F228CAC1AE63D6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MountedVolumeListChangeDetector.h"; path = "../../../../../modules/juce_events/messages/juce_MountedVolumeListChangeDetector.h"; sourceTree = "SOURCE_ROOT"; };
+ 9AB80400C174A565798B4DC7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ImageButton.h"; path = "../../../../../modules/juce_gui_basics/buttons/juce_ImageButton.h"; sourceTree = "SOURCE_ROOT"; };
+ 9B6A0011D68BE05B0848FD8A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_MessageManager.mm"; path = "../../../../../modules/juce_events/native/juce_mac_MessageManager.mm"; sourceTree = "SOURCE_ROOT"; };
+ 9B6EFF388E31F7E480380796 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_data_structures.mm"; path = "../../JuceLibraryCode/juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
+ 9B83893AFBF95FF07B65E433 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MixerAudioSource.h"; path = "../../../../../modules/juce_audio_basics/sources/juce_MixerAudioSource.h"; sourceTree = "SOURCE_ROOT"; };
+ 9B8C599BB498481CB64141B0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Rectangle.h"; path = "../../../../../modules/juce_graphics/geometry/juce_Rectangle.h"; sourceTree = "SOURCE_ROOT"; };
+ 9BAE8416CA03B3EE29D0DB0D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileInputStream.h"; path = "../../../../../modules/juce_core/files/juce_FileInputStream.h"; sourceTree = "SOURCE_ROOT"; };
+ 9BD70EEF4FCF2A636DAA3C48 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_mac_CoreAudio.cpp"; path = "../../../../../modules/juce_audio_devices/native/juce_mac_CoreAudio.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9BEA281CBD5878DF1330C6E8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ValueTreeSynchroniser.cpp"; path = "../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9BEF8EED62BFF46A514824A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "residue_16.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_16.h"; sourceTree = "SOURCE_ROOT"; };
+ 9C2237E651B7A187DCBB75B9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PreferencesPanel.cpp"; path = "../../../../../modules/juce_gui_extra/misc/juce_PreferencesPanel.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9C75C797BAEC7A8B9693A06B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FloatVectorOperations.cpp"; path = "../../../../../modules/juce_audio_basics/buffers/juce_FloatVectorOperations.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9CD5DB53DE796873DC2EE4E0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BubbleMessageComponent.h"; path = "../../../../../modules/juce_gui_extra/misc/juce_BubbleMessageComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ 9D08A5F790FC71D1BE770D20 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_LookAndFeel_V1.cpp"; path = "../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V1.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9D45A965F9A8184B64460680 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Typeface.h"; path = "../../../../../modules/juce_graphics/fonts/juce_Typeface.h"; sourceTree = "SOURCE_ROOT"; };
+ 9D86489534874805E5005BEF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_NativeMessageBox.h"; path = "../../../../../modules/juce_gui_basics/windows/juce_NativeMessageBox.h"; sourceTree = "SOURCE_ROOT"; };
+ 9DB368AB3A1712F5E741DF8E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ColourSelector.cpp"; path = "../../../../../modules/juce_gui_extra/misc/juce_ColourSelector.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9DCF20D6DD5D63567ED73A68 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CPlusPlusCodeTokeniserFunctions.h"; path = "../../../../../modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniserFunctions.h"; sourceTree = "SOURCE_ROOT"; };
+ 9E742F2C0DCF21E717C69EC2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Result.cpp"; path = "../../../../../modules/juce_core/misc/juce_Result.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9E8FB4DD69AA02041D70B749 = {isa = PBXFileReference; lastKnownFileType = text.txt; name = "changes to libjpeg for JUCE.txt"; path = "../../../../../modules/juce_graphics/image_formats/jpglib/changes to libjpeg for JUCE.txt"; sourceTree = "SOURCE_ROOT"; };
+ 9EA3A564C2056CABF6F64F19 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CachedValue.h"; path = "../../../../../modules/juce_data_structures/values/juce_CachedValue.h"; sourceTree = "SOURCE_ROOT"; };
+ 9EB8EAADA992AB7525B04C57 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pngconf.h; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngconf.h"; sourceTree = "SOURCE_ROOT"; };
+ 9EBFDCA556AB40E02BC2D3D9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TreeView.cpp"; path = "../../../../../modules/juce_gui_basics/widgets/juce_TreeView.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9EC497EFAB1C323884D011FA = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Socket.cpp"; path = "../../../../../modules/juce_core/network/juce_Socket.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9ED1E59E0EDEB57492B8B339 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PropertySet.h"; path = "../../../../../modules/juce_core/containers/juce_PropertySet.h"; sourceTree = "SOURCE_ROOT"; };
+ 9F0CD34B5E00755ED32C633A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = memory.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/memory.h"; sourceTree = "SOURCE_ROOT"; };
+ 9F8621A060D21CD4F8E52082 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ButtonPropertyComponent.cpp"; path = "../../../../../modules/juce_gui_basics/properties/juce_ButtonPropertyComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9F8A9B400F29F93177C13068 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inflate.c; path = "../../../../../modules/juce_core/zip/zlib/inflate.c"; sourceTree = "SOURCE_ROOT"; };
+ 9FBEC2F41AEF630320F831AB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = codec.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/codec.h"; sourceTree = "SOURCE_ROOT"; };
+ 9FF3D6166AF80343ACC2DF7A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Midi.cpp"; path = "../../../../../modules/juce_audio_devices/native/juce_win32_Midi.cpp"; sourceTree = "SOURCE_ROOT"; };
+ 9FF679F47F9901DBEE96E2F4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LowLevelGraphicsPostScriptRenderer.h"; path = "../../../../../modules/juce_graphics/contexts/juce_LowLevelGraphicsPostScriptRenderer.h"; sourceTree = "SOURCE_ROOT"; };
+ A02B644EE002D5CDFDBEB472 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FileBrowserComponent.cpp"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FileBrowserComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A02D981AD55D9C837497D9DF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_GroupComponent.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_GroupComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A06FEA5708DBBF89F31BC095 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_HeapBlock.h"; path = "../../../../../modules/juce_core/memory/juce_HeapBlock.h"; sourceTree = "SOURCE_ROOT"; };
+ A07531AA213977EA9B7ABFC3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_FileChooser.cpp"; path = "../../../../../modules/juce_gui_basics/native/juce_win32_FileChooser.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A0A4D1CCCA84F1D6EC92D442 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ChoicePropertyComponent.h"; path = "../../../../../modules/juce_gui_basics/properties/juce_ChoicePropertyComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ A0B76982E47F6552E076C115 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrio.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngrio.c"; sourceTree = "SOURCE_ROOT"; };
+ A0DDE4018BE50F9FF0F6D4DB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "residue_44.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_44.h"; sourceTree = "SOURCE_ROOT"; };
+ A1596463A5167EF7B3B9E3F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_Midi.cpp"; path = "../../../../../modules/juce_audio_devices/native/juce_android_Midi.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A212A98178DA800BC7104EED = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_osx_MessageQueue.h"; path = "../../../../../modules/juce_events/native/juce_osx_MessageQueue.h"; sourceTree = "SOURCE_ROOT"; };
+ A285CB0E88EA469C72C4C086 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ControlButton.h"; path = "../../../../../modules/juce_blocks_basics/blocks/juce_ControlButton.h"; sourceTree = "SOURCE_ROOT"; };
+ A288992FC193721FE3DB4BD9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DirectoryContentsList.cpp"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_DirectoryContentsList.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A31630141AF03CAE86F4228C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ValueTree.cpp"; path = "../../../../../modules/juce_data_structures/values/juce_ValueTree.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A34E3CFE305D1CC76C0046C1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DirectoryContentsDisplayComponent.h"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_DirectoryContentsDisplayComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ A36BCC5ED3A26F2E5592EE32 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_XmlElement.h"; path = "../../../../../modules/juce_core/xml/juce_XmlElement.h"; sourceTree = "SOURCE_ROOT"; };
+ A378497FA09036F13FA411C1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ImageEffectFilter.h"; path = "../../../../../modules/juce_graphics/effects/juce_ImageEffectFilter.h"; sourceTree = "SOURCE_ROOT"; };
+ A3913125232A72EF480476F2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BigInteger.h"; path = "../../../../../modules/juce_core/maths/juce_BigInteger.h"; sourceTree = "SOURCE_ROOT"; };
+ A3B3FBDBB67F69256BA6A290 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Value.cpp"; path = "../../../../../modules/juce_data_structures/values/juce_Value.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A409C91727751590682E3237 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MPEZone.h"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPEZone.h"; sourceTree = "SOURCE_ROOT"; };
+ A427924174225CB14EA8B615 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_LocalisedStrings.cpp"; path = "../../../../../modules/juce_core/text/juce_LocalisedStrings.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A49C327EA3CD090C4768925D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ThreadWithProgressWindow.cpp"; path = "../../../../../modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A4B659039C636AA90C05767F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_BluetoothMidiDevicePairingDialogue.cpp"; path = "../../../../../modules/juce_audio_utils/native/juce_android_BluetoothMidiDevicePairingDialogue.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A4D2F92AAE55340EB431CF8B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_SystemStats.mm"; path = "../../../../../modules/juce_core/native/juce_mac_SystemStats.mm"; sourceTree = "SOURCE_ROOT"; };
+ A4D97A4003659632818C71FF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = md5.c; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/md5.c"; sourceTree = "SOURCE_ROOT"; };
+ A50045AA484A93660F5D0DEC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MPEInstrument.cpp"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPEInstrument.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A572695065599E9D922B476A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_win32_ComSmartPtr.h"; path = "../../../../../modules/juce_core/native/juce_win32_ComSmartPtr.h"; sourceTree = "SOURCE_ROOT"; };
+ A5824D06228D6B5120269F73 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "res_books_51.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/books/coupled/res_books_51.h"; sourceTree = "SOURCE_ROOT"; };
+ A59CDBDDAAB25C0621DE2C22 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileBrowserComponent.h"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FileBrowserComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ A61B0324CAD4DE2A04ECAF2D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdtrans.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdtrans.c"; sourceTree = "SOURCE_ROOT"; };
+ A66CEA1922F1866BA9A10592 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_GZIPCompressorOutputStream.h"; path = "../../../../../modules/juce_core/zip/juce_GZIPCompressorOutputStream.h"; sourceTree = "SOURCE_ROOT"; };
+ A6722561E959322FC2D3F8D7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DrawableText.h"; path = "../../../../../modules/juce_gui_basics/drawables/juce_DrawableText.h"; sourceTree = "SOURCE_ROOT"; };
+ A6C807BA364341686874B1BB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_opengl.cpp"; path = "../../../../../modules/juce_opengl/juce_opengl.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A6EA6620D7460A9405F56693 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_SystemTrayIconComponent.cpp"; path = "../../../../../modules/juce_gui_extra/misc/juce_SystemTrayIconComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A705E85372EBA8B0351E477E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_VSTPluginFormat.h"; path = "../../../../../modules/juce_audio_processors/format_types/juce_VSTPluginFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ A79EA78DB02B7098DE470DC2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RelativeRectangle.cpp"; path = "../../../../../modules/juce_gui_basics/positioning/juce_RelativeRectangle.cpp"; sourceTree = "SOURCE_ROOT"; };
+ A7E2C39A7FF81AC0C2B0BB29 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = masking.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/masking.h"; sourceTree = "SOURCE_ROOT"; };
+ A7F8A897765E91543FF21D5F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RenderingHelpers.h"; path = "../../../../../modules/juce_graphics/native/juce_RenderingHelpers.h"; sourceTree = "SOURCE_ROOT"; };
+ A8ABBA51A3DEB23F46A5EAE6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pngstruct.h; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngstruct.h"; sourceTree = "SOURCE_ROOT"; };
+ A92093FCCEED7408744E3706 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LagrangeInterpolator.h"; path = "../../../../../modules/juce_audio_basics/effects/juce_LagrangeInterpolator.h"; sourceTree = "SOURCE_ROOT"; };
+ A9711C6C2B654B0B95C93ACB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_StringPool.h"; path = "../../../../../modules/juce_core/text/juce_StringPool.h"; sourceTree = "SOURCE_ROOT"; };
+ A9717066C7343E734BBA14A7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ComponentBuilder.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_ComponentBuilder.h"; sourceTree = "SOURCE_ROOT"; };
+ A9819750A6C5E908DBE3A309 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = bitreader.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/bitreader.h"; sourceTree = "SOURCE_ROOT"; };
+ AA1F66345AFB2EFA32855F27 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_Windowing.cpp"; path = "../../../../../modules/juce_gui_basics/native/juce_android_Windowing.cpp"; sourceTree = "SOURCE_ROOT"; };
+ AA6CA28DA51A2BAAD979771B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MidiMessageSequence.cpp"; path = "../../../../../modules/juce_audio_basics/midi/juce_MidiMessageSequence.cpp"; sourceTree = "SOURCE_ROOT"; };
+ AAABD4AE1DD0BB0519C4863F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharPointer_UTF16.h"; path = "../../../../../modules/juce_core/text/juce_CharPointer_UTF16.h"; sourceTree = "SOURCE_ROOT"; };
+ AAC7E9D875D6B6AA83E571AB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_OpenSL.cpp"; path = "../../../../../modules/juce_audio_devices/native/juce_android_OpenSL.cpp"; sourceTree = "SOURCE_ROOT"; };
+ AB7710558CEE0A3C649AD2AA = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ModifierKeys.cpp"; path = "../../../../../modules/juce_gui_basics/keyboard/juce_ModifierKeys.cpp"; sourceTree = "SOURCE_ROOT"; };
+ AB86D69CE5472E765749D5E2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationProperties.h"; path = "../../../../../modules/juce_data_structures/app_properties/juce_ApplicationProperties.h"; sourceTree = "SOURCE_ROOT"; };
+ AB90BC12E5EAC2E1A7FDF691 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_InterprocessConnection.h"; path = "../../../../../modules/juce_events/interprocess/juce_InterprocessConnection.h"; sourceTree = "SOURCE_ROOT"; };
+ ABA533A5D4493250568E3659 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_GroupComponent.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_GroupComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ ABD0576F2543A863F5DB40E7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioCDReader.cpp"; path = "../../../../../modules/juce_audio_utils/audio_cd/juce_AudioCDReader.cpp"; sourceTree = "SOURCE_ROOT"; };
+ AC8A8FB37E03EAD593C68BB2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_StringArray.cpp"; path = "../../../../../modules/juce_core/text/juce_StringArray.cpp"; sourceTree = "SOURCE_ROOT"; };
+ ACB9D9A21F63B364C3E431DD = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioFormatReader.h"; path = "../../../../../modules/juce_audio_formats/format/juce_AudioFormatReader.h"; sourceTree = "SOURCE_ROOT"; };
+ ACBA16D63E4470083B7CE29D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RelativeRectangle.h"; path = "../../../../../modules/juce_gui_basics/positioning/juce_RelativeRectangle.h"; sourceTree = "SOURCE_ROOT"; };
+ AD2E097A960F2A4A946CF177 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CaretComponent.h"; path = "../../../../../modules/juce_gui_basics/keyboard/juce_CaretComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ AD7225D561558BAFDF65BBC7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DrumPadLEDProgram.h"; path = "../../../../../modules/juce_blocks_basics/visualisers/juce_DrumPadLEDProgram.h"; sourceTree = "SOURCE_ROOT"; };
+ AD7FCDD3AC5EF4057B4E669B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_Files.mm"; path = "../../../../../modules/juce_core/native/juce_mac_Files.mm"; sourceTree = "SOURCE_ROOT"; };
+ ADD75823E8C98A3F7F299385 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormatWriter.cpp"; path = "../../../../../modules/juce_audio_formats/format/juce_AudioFormatWriter.cpp"; sourceTree = "SOURCE_ROOT"; };
+ ADD9F9EB5E0EFC63E2992ED7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainComponent.h; path = ../../Source/MainComponent.h; sourceTree = "SOURCE_ROOT"; };
+ AE19C39D6B958349413E5F76 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_SystemStats.cpp"; path = "../../../../../modules/juce_core/native/juce_android_SystemStats.cpp"; sourceTree = "SOURCE_ROOT"; };
+ AE4AAFB284B168518E366EBD = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FFT.h"; path = "../../../../../modules/juce_audio_basics/effects/juce_FFT.h"; sourceTree = "SOURCE_ROOT"; };
+ AED53153DA5BEE178C227DDF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioSource.h"; path = "../../../../../modules/juce_audio_basics/sources/juce_AudioSource.h"; sourceTree = "SOURCE_ROOT"; };
+ AEE9960FEFED454FB6DB18A7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_StatusLight.h"; path = "../../../../../modules/juce_blocks_basics/blocks/juce_StatusLight.h"; sourceTree = "SOURCE_ROOT"; };
+ AEFAF28C900A0DFFC5F6FD40 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Image.cpp"; path = "../../../../../modules/juce_graphics/images/juce_Image.cpp"; sourceTree = "SOURCE_ROOT"; };
+ AF000B66A6C3683AA30FFA85 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ThreadWithProgressWindow.h"; path = "../../../../../modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.h"; sourceTree = "SOURCE_ROOT"; };
+ AF11A0E66EA77FF9F426CBDD = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MACAddress.cpp"; path = "../../../../../modules/juce_core/network/juce_MACAddress.cpp"; sourceTree = "SOURCE_ROOT"; };
+ AF4D1F728B7B429CBDEDC468 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ColourSelector.h"; path = "../../../../../modules/juce_gui_extra/misc/juce_ColourSelector.h"; sourceTree = "SOURCE_ROOT"; };
+ AFDDCF42011A661D8A965550 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MissingGLDefinitions.h"; path = "../../../../../modules/juce_opengl/native/juce_MissingGLDefinitions.h"; sourceTree = "SOURCE_ROOT"; };
+ AFE49D942B97B2FE5BF6345F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Timer.h"; path = "../../../../../modules/juce_events/timers/juce_Timer.h"; sourceTree = "SOURCE_ROOT"; };
+ B000E9B383585F14D4106B33 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TableListBox.cpp"; path = "../../../../../modules/juce_gui_basics/widgets/juce_TableListBox.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B0276417E1FCAC6415FEC24C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AffineTransform.h"; path = "../../../../../modules/juce_graphics/geometry/juce_AffineTransform.h"; sourceTree = "SOURCE_ROOT"; };
+ B087CFCD5381A67E8ABE789D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DropShadowEffect.cpp"; path = "../../../../../modules/juce_graphics/effects/juce_DropShadowEffect.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B0A159D25E2692435B03ACC0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ToneGeneratorAudioSource.cpp"; path = "../../../../../modules/juce_audio_basics/sources/juce_ToneGeneratorAudioSource.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B107BF03016269AF7369630B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WebBrowserComponent.cpp"; path = "../../../../../modules/juce_gui_extra/native/juce_win32_WebBrowserComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B1657D09D3DF467A04A87E6A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_IIRFilter.h"; path = "../../../../../modules/juce_audio_basics/effects/juce_IIRFilter.h"; sourceTree = "SOURCE_ROOT"; };
+ B19D61C3D2D7BF60030FD1E2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RecentlyOpenedFilesList.h"; path = "../../../../../modules/juce_gui_extra/misc/juce_RecentlyOpenedFilesList.h"; sourceTree = "SOURCE_ROOT"; };
+ B2015E328522144C463397DC = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = lpc.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/lpc.h"; sourceTree = "SOURCE_ROOT"; };
+ B213182B13BE510B8B96939D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = deflate.h; path = "../../../../../modules/juce_core/zip/zlib/deflate.h"; sourceTree = "SOURCE_ROOT"; };
+ B22A37C8077912A763F8FAEE = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Label.cpp"; path = "../../../../../modules/juce_gui_basics/widgets/juce_Label.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B29BA78743A8C82A8575D41C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ConcertinaPanel.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_ConcertinaPanel.h"; sourceTree = "SOURCE_ROOT"; };
+ B2D8F96F3F4463D678951CD6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdinput.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdinput.c"; sourceTree = "SOURCE_ROOT"; };
+ B2EA904753A758EA2A653D82 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Colour.cpp"; path = "../../../../../modules/juce_graphics/colour/juce_Colour.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B327326ADE69CAEA4410249D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_HyperlinkButton.h"; path = "../../../../../modules/juce_gui_basics/buttons/juce_HyperlinkButton.h"; sourceTree = "SOURCE_ROOT"; };
+ B35985BF65A5735648F332DB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ContainerDeletePolicy.h"; path = "../../../../../modules/juce_core/memory/juce_ContainerDeletePolicy.h"; sourceTree = "SOURCE_ROOT"; };
+ B37091252E2FC04C254016C9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_Network.mm"; path = "../../../../../modules/juce_core/native/juce_mac_Network.mm"; sourceTree = "SOURCE_ROOT"; };
+ B3A5905404A72FDE0888DF46 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MouseListener.cpp"; path = "../../../../../modules/juce_gui_basics/mouse/juce_MouseListener.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B3A97D5DC77DB3FD2FC5FCEB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_IPAddress.cpp"; path = "../../../../../modules/juce_core/network/juce_IPAddress.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B3C5E4089AD8803D08F9067E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Javascript.cpp"; path = "../../../../../modules/juce_core/javascript/juce_Javascript.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B3CD18208A4368D7AE29D706 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_BitmapLEDProgram.cpp"; path = "../../../../../modules/juce_blocks_basics/visualisers/juce_BitmapLEDProgram.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B3E818A7CFAFA880F238BCC8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PluginListComponent.h"; path = "../../../../../modules/juce_audio_processors/scanning/juce_PluginListComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ B41BF21771B358856B2C44C8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = lsp.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lsp.c"; sourceTree = "SOURCE_ROOT"; };
+ B435295F7A3969E6EBD4E9B1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MenuBarComponent.cpp"; path = "../../../../../modules/juce_gui_basics/menus/juce_MenuBarComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B4679BF8D1848CC2C7698764 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioVisualiserComponent.h"; path = "../../../../../modules/juce_audio_utils/gui/juce_AudioVisualiserComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ B46FA7622255695A963FCEA5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MultiTimer.cpp"; path = "../../../../../modules/juce_events/timers/juce_MultiTimer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B4B445D0B8FF9D563C2F7F46 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioPluginFormatManager.h"; path = "../../../../../modules/juce_audio_processors/format/juce_AudioPluginFormatManager.h"; sourceTree = "SOURCE_ROOT"; };
+ B4E737B45F3090ECA81D34CE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ComponentPeer.h"; path = "../../../../../modules/juce_gui_basics/windows/juce_ComponentPeer.h"; sourceTree = "SOURCE_ROOT"; };
+ B50D99789F7F83360780022E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_Misc.cpp"; path = "../../../../../modules/juce_core/native/juce_android_Misc.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B58ED38442F322226E81E930 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DocumentWindow.cpp"; path = "../../../../../modules/juce_gui_basics/windows/juce_DocumentWindow.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B5A57064DFB2BD47270A42E6 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
+ B5FE94B9AE535C0F0FA1D88B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_RuntimePermissions.cpp"; path = "../../../../../modules/juce_core/native/juce_android_RuntimePermissions.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B60BDAD15C5339F96D367450 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioProcessorPlayer.cpp"; path = "../../../../../modules/juce_audio_utils/players/juce_AudioProcessorPlayer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B62F00B50AC42FC2DC1ADEEE = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TextPropertyComponent.cpp"; path = "../../../../../modules/juce_gui_basics/properties/juce_TextPropertyComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B6345846B766F695A8CAD09E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioSourcePlayer.h"; path = "../../../../../modules/juce_audio_devices/sources/juce_AudioSourcePlayer.h"; sourceTree = "SOURCE_ROOT"; };
+ B67DEB7456F7A7FE9E99F5AC = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MidiMessageCollector.h"; path = "../../../../../modules/juce_audio_devices/midi_io/juce_MidiMessageCollector.h"; sourceTree = "SOURCE_ROOT"; };
+ B6C06A491AB738501ACC77AE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_UIViewComponent.h"; path = "../../../../../modules/juce_gui_extra/embedding/juce_UIViewComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ B6F1AD93847540736A7C3B96 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctfst.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jidctfst.c"; sourceTree = "SOURCE_ROOT"; };
+ B70BB65A467220F7972C4FB0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ScopedReadLock.h"; path = "../../../../../modules/juce_core/threads/juce_ScopedReadLock.h"; sourceTree = "SOURCE_ROOT"; };
+ B7EDEB203D0BB0EAE5EE555B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MidiKeyboardState.h"; path = "../../../../../modules/juce_audio_basics/midi/juce_MidiKeyboardState.h"; sourceTree = "SOURCE_ROOT"; };
+ B83449AB719AFDE057B9245B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_WebInputStream.cpp"; path = "../../../../../modules/juce_core/network/juce_WebInputStream.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B86B55CF411F403FBE6EDD8B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CodeEditorComponent.h"; path = "../../../../../modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ B92C211B36B75E20B97D094E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_StringArray.h"; path = "../../../../../modules/juce_core/text/juce_StringArray.h"; sourceTree = "SOURCE_ROOT"; };
+ B945AE13CE5FA99C9B48D98B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FileInputStream.cpp"; path = "../../../../../modules/juce_core/files/juce_FileInputStream.cpp"; sourceTree = "SOURCE_ROOT"; };
+ B979BF385FBD2717200311E7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ListBox.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_ListBox.h"; sourceTree = "SOURCE_ROOT"; };
+ B9C32654F4F4FBDD5B8D8371 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_StretchableLayoutManager.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_StretchableLayoutManager.h"; sourceTree = "SOURCE_ROOT"; };
+ B9C392935DD8F5D8D0ABCF2D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/cpu.h"; sourceTree = "SOURCE_ROOT"; };
+ BA06C53C74A8510DD172D631 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_KnownPluginList.h"; path = "../../../../../modules/juce_audio_processors/scanning/juce_KnownPluginList.h"; sourceTree = "SOURCE_ROOT"; };
+ BA5EBAC0C16D620D37B80143 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_data_structures.mm"; path = "../../../../../modules/juce_data_structures/juce_data_structures.mm"; sourceTree = "SOURCE_ROOT"; };
+ BAE124F36EE934FEC863965A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioFormatReaderSource.h"; path = "../../../../../modules/juce_audio_formats/format/juce_AudioFormatReaderSource.h"; sourceTree = "SOURCE_ROOT"; };
+ BAE69D4E9ABF50B36C2844C9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = mdct.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/mdct.h"; sourceTree = "SOURCE_ROOT"; };
+ BAF64118ACD931F4A899D18E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_extra.mm"; path = "../../../../../modules/juce_gui_extra/juce_gui_extra.mm"; sourceTree = "SOURCE_ROOT"; };
+ BAFE0AA564EEF3F790410FDB = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_CatmullRomInterpolator.cpp"; path = "../../../../../modules/juce_audio_basics/effects/juce_CatmullRomInterpolator.cpp"; sourceTree = "SOURCE_ROOT"; };
+ BB6321248114A79859B8468B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MPEValue.cpp"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPEValue.cpp"; sourceTree = "SOURCE_ROOT"; };
+ BB8D9E34C22532DC6AFDA9DD = {isa = PBXFileReference; lastKnownFileType = text.txt; name = "Protocol Format.txt"; path = "../../../../../modules/juce_blocks_basics/protocol/Protocol Format.txt"; sourceTree = "SOURCE_ROOT"; };
+ BC2B18695DB1F8287E5CD7A4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RelativeParallelogram.h"; path = "../../../../../modules/juce_gui_basics/positioning/juce_RelativeParallelogram.h"; sourceTree = "SOURCE_ROOT"; };
+ BC6DCFE13B8042F59C065CC6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharPointer_UTF32.h"; path = "../../../../../modules/juce_core/text/juce_CharPointer_UTF32.h"; sourceTree = "SOURCE_ROOT"; };
+ BCBB30471154DD69D59BEBE8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLContext.h"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLContext.h"; sourceTree = "SOURCE_ROOT"; };
+ BCD101DB744482011FB7EA98 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_audio_formats.cpp"; path = "../../../../../modules/juce_audio_formats/juce_audio_formats.cpp"; sourceTree = "SOURCE_ROOT"; };
+ BCF2751331F61000AA2E6D8C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = window.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/window.h"; sourceTree = "SOURCE_ROOT"; };
+ BD290FDCC12F4ADF00DAD43B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioDataConverters.cpp"; path = "../../../../../modules/juce_audio_basics/buffers/juce_AudioDataConverters.cpp"; sourceTree = "SOURCE_ROOT"; };
+ BD2ACF51D2EDBB8D946C168B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inftrees.h; path = "../../../../../modules/juce_core/zip/zlib/inftrees.h"; sourceTree = "SOURCE_ROOT"; };
+ BD7737BC6B7B6EE4AE3DD687 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DropShadowEffect.h"; path = "../../../../../modules/juce_graphics/effects/juce_DropShadowEffect.h"; sourceTree = "SOURCE_ROOT"; };
+ BDC3A2443CA7C4A197AA7FD8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_AudioUnitPluginFormat.mm"; path = "../../../../../modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.mm"; sourceTree = "SOURCE_ROOT"; };
+ BE0489F4AA110E7A4BE6880E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MPESynthesiser.cpp"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPESynthesiser.cpp"; sourceTree = "SOURCE_ROOT"; };
+ BE1493D37BFED1206A196B23 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = synthesis.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/synthesis.c"; sourceTree = "SOURCE_ROOT"; };
+ BE27A021A21278415868C466 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MemoryOutputStream.h"; path = "../../../../../modules/juce_core/streams/juce_MemoryOutputStream.h"; sourceTree = "SOURCE_ROOT"; };
+ BE472B6711E509DE55C83D38 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MemoryMappedFile.h"; path = "../../../../../modules/juce_core/files/juce_MemoryMappedFile.h"; sourceTree = "SOURCE_ROOT"; };
+ BE531AFED218010571C90AAD = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RelativeCoordinatePositioner.cpp"; path = "../../../../../modules/juce_gui_basics/positioning/juce_RelativeCoordinatePositioner.cpp"; sourceTree = "SOURCE_ROOT"; };
+ BEA1459932A75A2D6AAD4B43 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_events.h"; path = "../../../../../modules/juce_events/juce_events.h"; sourceTree = "SOURCE_ROOT"; };
+ BEB701ADA012A1394ACCDD18 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OpenGLAppComponent.cpp"; path = "../../../../../modules/juce_opengl/utils/juce_OpenGLAppComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ BEE43FF11F7D88506B3B6E90 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = zutil.c; path = "../../../../../modules/juce_core/zip/zlib/zutil.c"; sourceTree = "SOURCE_ROOT"; };
+ BF1E8D386E1C71322F7B6321 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = all.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/all.h"; sourceTree = "SOURCE_ROOT"; };
+ BF4AF0A830706A80B2D1ADC5 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
+ BFB75579514FA95EADD75AC5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_InterProcessLock.h"; path = "../../../../../modules/juce_core/threads/juce_InterProcessLock.h"; sourceTree = "SOURCE_ROOT"; };
+ BFE7003BFA12C79A7E70E2F8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DirectoryContentsDisplayComponent.cpp"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_DirectoryContentsDisplayComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C08E2831019572E220A71669 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DrawableComposite.h"; path = "../../../../../modules/juce_gui_basics/drawables/juce_DrawableComposite.h"; sourceTree = "SOURCE_ROOT"; };
+ C09EE24431A651C996153ACA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = memory.c; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/memory.c"; sourceTree = "SOURCE_ROOT"; };
+ C0CE2DBD3E07E03623F29618 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_basics.mm"; path = "../../JuceLibraryCode/juce_audio_basics.mm"; sourceTree = "SOURCE_ROOT"; };
+ C0DD1473C48AEF7B3AB0087D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_WindowsMediaAudioFormat.h"; path = "../../../../../modules/juce_audio_formats/codecs/juce_WindowsMediaAudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ C0DE626D028AA9B00127F9BD = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OutputStream.cpp"; path = "../../../../../modules/juce_core/streams/juce_OutputStream.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C1474E839569EDA193F71BBC = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = zutil.h; path = "../../../../../modules/juce_core/zip/zlib/zutil.h"; sourceTree = "SOURCE_ROOT"; };
+ C1884E8D2D10F0AFEB1D87F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_posix_NamedPipe.cpp"; path = "../../../../../modules/juce_core/native/juce_posix_NamedPipe.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C19A71E5C01BB38E1EEA2110 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Fonts.cpp"; path = "../../../../../modules/juce_graphics/native/juce_win32_Fonts.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C19D89C56696F5747C298985 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_AppleRemote.mm"; path = "../../../../../modules/juce_gui_extra/native/juce_mac_AppleRemote.mm"; sourceTree = "SOURCE_ROOT"; };
+ C1EA59968F46E68D75AABDCE = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ios_Audio.cpp"; path = "../../../../../modules/juce_audio_devices/native/juce_ios_Audio.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C237671BF283E95CF9F93936 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TouchList.h"; path = "../../../../../modules/juce_blocks_basics/blocks/juce_TouchList.h"; sourceTree = "SOURCE_ROOT"; };
+ C2585C4A959C4CBA76BCEE6C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Typeface.cpp"; path = "../../../../../modules/juce_graphics/fonts/juce_Typeface.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C29107288DAD3ABB3719015D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioSourcePlayer.cpp"; path = "../../../../../modules/juce_audio_devices/sources/juce_AudioSourcePlayer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C29CB9EBB689083DD7D99F54 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Draggable3DOrientation.h"; path = "../../../../../modules/juce_opengl/geometry/juce_Draggable3DOrientation.h"; sourceTree = "SOURCE_ROOT"; };
+ C2B755C206D3AE7B0B4463ED = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ShapeButton.cpp"; path = "../../../../../modules/juce_gui_basics/buttons/juce_ShapeButton.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C2C938AA02C97A425ECF7926 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MidiKeyboardComponent.cpp"; path = "../../../../../modules/juce_audio_utils/gui/juce_MidiKeyboardComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C2F642C860D5E78D3E750E90 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AU_Shared.h"; path = "../../../../../modules/juce_audio_processors/format_types/juce_AU_Shared.h"; sourceTree = "SOURCE_ROOT"; };
+ C3104BD68827E3B23FE7BF51 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ReferenceCountedObject.h"; path = "../../../../../modules/juce_core/memory/juce_ReferenceCountedObject.h"; sourceTree = "SOURCE_ROOT"; };
+ C315E5EE86688FF6DEA57CE7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FFT.cpp"; path = "../../../../../modules/juce_audio_basics/effects/juce_FFT.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C33F5E40671D8969529DC1F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmarker.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jcmarker.c"; sourceTree = "SOURCE_ROOT"; };
+ C35A0F1C5323F130D4A1108F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioProcessorParameterWithID.h"; path = "../../../../../modules/juce_audio_processors/utilities/juce_AudioProcessorParameterWithID.h"; sourceTree = "SOURCE_ROOT"; };
+ C37E5834DB1CC5410BF93D8F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MPESynthesiserVoice.h"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPESynthesiserVoice.h"; sourceTree = "SOURCE_ROOT"; };
+ C3891745EE7DBD352727B9B2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_StringPairArray.cpp"; path = "../../../../../modules/juce_core/text/juce_StringPairArray.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C3CD93C748F880042436180B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_UnitTest.cpp"; path = "../../../../../modules/juce_core/unit_tests/juce_UnitTest.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C3E4493CE69B1B931CB96EA9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_HostPacketDecoder.h"; path = "../../../../../modules/juce_blocks_basics/protocol/juce_HostPacketDecoder.h"; sourceTree = "SOURCE_ROOT"; };
+ C3E64B47D41D5364FA0CFDC3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_utils.mm"; path = "../../../../../modules/juce_audio_utils/juce_audio_utils.mm"; sourceTree = "SOURCE_ROOT"; };
+ C42467520EB918DFA024D0AF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = psy.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/psy.h"; sourceTree = "SOURCE_ROOT"; };
+ C438A00F7FAE0D151BC99D0B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ActiveXControlComponent.h"; path = "../../../../../modules/juce_gui_extra/embedding/juce_ActiveXControlComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ C468BC4730E745AD31CA903D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = png.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/png.c"; sourceTree = "SOURCE_ROOT"; };
+ C48524BD8330E2A4710D99FF = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
+ C498F38B2EE41174DCA27032 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioUnitPluginFormat.h"; path = "../../../../../modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ C49F54FB785A0B5D4D41B6BF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = transupp.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/transupp.c"; sourceTree = "SOURCE_ROOT"; };
+ C4DDAA034449093B3E5A60ED = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Button.h"; path = "../../../../../modules/juce_gui_basics/buttons/juce_Button.h"; sourceTree = "SOURCE_ROOT"; };
+ C4E4C2AD07EA064EB32326F5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_HostPacketBuilder.h"; path = "../../../../../modules/juce_blocks_basics/protocol/juce_HostPacketBuilder.h"; sourceTree = "SOURCE_ROOT"; };
+ C4F45122F361CE23DDB32596 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_EdgeTable.h"; path = "../../../../../modules/juce_graphics/geometry/juce_EdgeTable.h"; sourceTree = "SOURCE_ROOT"; };
+ C50386097FEBEBECC9E84866 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MidiMessage.h"; path = "../../../../../modules/juce_audio_basics/midi/juce_MidiMessage.h"; sourceTree = "SOURCE_ROOT"; };
+ C52BA5CFAC5D4DE4CEF2A51D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Path.h"; path = "../../../../../modules/juce_graphics/geometry/juce_Path.h"; sourceTree = "SOURCE_ROOT"; };
+ C596B16782A9C4D0C6EB0BCA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PluginDirectoryScanner.h"; path = "../../../../../modules/juce_audio_processors/scanning/juce_PluginDirectoryScanner.h"; sourceTree = "SOURCE_ROOT"; };
+ C5AC27F3564EF36AAFFAD703 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_NamedPipe.cpp"; path = "../../../../../modules/juce_core/network/juce_NamedPipe.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C5EDD0AB18A362054E8FE283 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Desktop.cpp"; path = "../../../../../modules/juce_gui_basics/components/juce_Desktop.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C6144891191A6E1C95E21A25 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ConnectedChildProcess.h"; path = "../../../../../modules/juce_events/interprocess/juce_ConnectedChildProcess.h"; sourceTree = "SOURCE_ROOT"; };
+ C62BDB035997E471AE3096E7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ChildProcess.h"; path = "../../../../../modules/juce_core/threads/juce_ChildProcess.h"; sourceTree = "SOURCE_ROOT"; };
+ C6438C01636AC02F3ACEF42D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CodeDocument.h"; path = "../../../../../modules/juce_gui_extra/code_editor/juce_CodeDocument.h"; sourceTree = "SOURCE_ROOT"; };
+ C6A122F6B606753C30C30BD2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DrumPadLEDProgram.cpp"; path = "../../../../../modules/juce_blocks_basics/visualisers/juce_DrumPadLEDProgram.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C6FFBF028815A3D4D197C1ED = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AnimatedAppComponent.cpp"; path = "../../../../../modules/juce_gui_extra/misc/juce_AnimatedAppComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C720BCE4770D82EE19B5E304 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_WeakReference.h"; path = "../../../../../modules/juce_core/memory/juce_WeakReference.h"; sourceTree = "SOURCE_ROOT"; };
+ C75E0D3ABA4599B591806B6F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrutil.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngrutil.c"; sourceTree = "SOURCE_ROOT"; };
+ C79F1FCCE8950900DAE6BB50 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_LagrangeInterpolator.cpp"; path = "../../../../../modules/juce_audio_basics/effects/juce_LagrangeInterpolator.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C7EE187163451061AE2A3153 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SparseSet.h"; path = "../../../../../modules/juce_core/containers/juce_SparseSet.h"; sourceTree = "SOURCE_ROOT"; };
+ C8F3A77AFEF173C097EB08CD = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_KeyPress.h"; path = "../../../../../modules/juce_gui_basics/keyboard/juce_KeyPress.h"; sourceTree = "SOURCE_ROOT"; };
+ C8FBA54671860CB3636D7A76 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_audio_processors.mm"; path = "../../JuceLibraryCode/juce_audio_processors.mm"; sourceTree = "SOURCE_ROOT"; };
+ C917343C99E5B7DD04F04FE3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MidiDataConcatenator.h"; path = "../../../../../modules/juce_audio_devices/native/juce_MidiDataConcatenator.h"; sourceTree = "SOURCE_ROOT"; };
+ C91C155CE2FBFB917E03E114 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcparam.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jcparam.c"; sourceTree = "SOURCE_ROOT"; };
+ C91DD17FBE7A7541E7787987 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "residue_44u.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_44u.h"; sourceTree = "SOURCE_ROOT"; };
+ C9D366816AA16012A9FD56D0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_JackAudio.cpp"; path = "../../../../../modules/juce_audio_devices/native/juce_linux_JackAudio.cpp"; sourceTree = "SOURCE_ROOT"; };
+ C9EEE195FD4C2C90915219FE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PixelFormats.h"; path = "../../../../../modules/juce_graphics/colour/juce_PixelFormats.h"; sourceTree = "SOURCE_ROOT"; };
+ C9F2ECCBC4868DE614C90303 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MouseInputSource.h"; path = "../../../../../modules/juce_gui_basics/mouse/juce_MouseInputSource.h"; sourceTree = "SOURCE_ROOT"; };
+ CA7EE521D0323E69E581633A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_ALSA.cpp"; path = "../../../../../modules/juce_audio_devices/native/juce_linux_ALSA.cpp"; sourceTree = "SOURCE_ROOT"; };
+ CAC8EEB08140F6C3189606EC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_audio_devices.cpp"; path = "../../../../../modules/juce_audio_devices/juce_audio_devices.cpp"; sourceTree = "SOURCE_ROOT"; };
+ CAF5049EC08F7E410AEDD901 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Random.h"; path = "../../../../../modules/juce_core/maths/juce_Random.h"; sourceTree = "SOURCE_ROOT"; };
+ CAF65D1EFDDC93B47321327C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = framing.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/framing.c"; sourceTree = "SOURCE_ROOT"; };
+ CB01B5AD5F8CC26814C1FAE8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdapistd.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdapistd.c"; sourceTree = "SOURCE_ROOT"; };
+ CB6596103EE0B3579B8D2C3C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TooltipWindow.cpp"; path = "../../../../../modules/juce_gui_basics/windows/juce_TooltipWindow.cpp"; sourceTree = "SOURCE_ROOT"; };
+ CBAB521E6B494AABD42A4B90 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MPEValue.h"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPEValue.h"; sourceTree = "SOURCE_ROOT"; };
+ CBDAC7F54358B29D622C7659 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ArrowButton.cpp"; path = "../../../../../modules/juce_gui_basics/buttons/juce_ArrowButton.cpp"; sourceTree = "SOURCE_ROOT"; };
+ CC485BE41CFF25257214B6EA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ModalComponentManager.h"; path = "../../../../../modules/juce_gui_basics/components/juce_ModalComponentManager.h"; sourceTree = "SOURCE_ROOT"; };
+ CC7A625D7B7F517BC85C5578 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_blocks_basics.cpp"; path = "../../../../../modules/juce_blocks_basics/juce_blocks_basics.cpp"; sourceTree = "SOURCE_ROOT"; };
+ CCA01BB46B276DA072718679 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AbstractFifo.h"; path = "../../../../../modules/juce_core/containers/juce_AbstractFifo.h"; sourceTree = "SOURCE_ROOT"; };
+ CCE2ADA7EF8B417B5D5EC92C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharacterFunctions.h"; path = "../../../../../modules/juce_core/text/juce_CharacterFunctions.h"; sourceTree = "SOURCE_ROOT"; };
+ CD4633C9F9DA366C76E4B92A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_BluetoothMidiDevicePairingDialogue.mm"; path = "../../../../../modules/juce_audio_utils/native/juce_mac_BluetoothMidiDevicePairingDialogue.mm"; sourceTree = "SOURCE_ROOT"; };
+ CD768752C091A375ADC708A7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_SliderPropertyComponent.cpp"; path = "../../../../../modules/juce_gui_basics/properties/juce_SliderPropertyComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ CD875963C6F9C05BA11A4AC9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RecentlyOpenedFilesList.cpp"; path = "../../../../../modules/juce_gui_extra/misc/juce_RecentlyOpenedFilesList.cpp"; sourceTree = "SOURCE_ROOT"; };
+ CD9017D48D6C56C7D57426E8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_basics.mm"; path = "../../../../../modules/juce_gui_basics/juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
+ CDA6D006DEE688324E2540AE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLFrameBuffer.h"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLFrameBuffer.h"; sourceTree = "SOURCE_ROOT"; };
+ CDCF7C7420D481D45CDDBE85 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = highlevel.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/highlevel.h"; sourceTree = "SOURCE_ROOT"; };
+ CE2F5008560ED985C0B8B5EA = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_GraphicsContext.cpp"; path = "../../../../../modules/juce_graphics/contexts/juce_GraphicsContext.cpp"; sourceTree = "SOURCE_ROOT"; };
+ CE38F82B1484802D0AD0E8BB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transupp.h; path = "../../../../../modules/juce_graphics/image_formats/jpglib/transupp.h"; sourceTree = "SOURCE_ROOT"; };
+ CE9B22F2034E803714CB8433 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = info.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/info.c"; sourceTree = "SOURCE_ROOT"; };
+ CEB10C78DD0C1F9970029F25 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PropertyComponent.h"; path = "../../../../../modules/juce_gui_basics/properties/juce_PropertyComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ CEB18F1BEA68F075D50BD6CD = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_InputStream.cpp"; path = "../../../../../modules/juce_core/streams/juce_InputStream.cpp"; sourceTree = "SOURCE_ROOT"; };
+ CED32466B0978556B4914463 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OpenGLHelpers.cpp"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLHelpers.cpp"; sourceTree = "SOURCE_ROOT"; };
+ CEF6725F5E19BCCBFFE5EB68 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_JPEGLoader.cpp"; path = "../../../../../modules/juce_graphics/image_formats/juce_JPEGLoader.cpp"; sourceTree = "SOURCE_ROOT"; };
+ CF095321F298B5EBCC94F41C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcomapi.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jcomapi.c"; sourceTree = "SOURCE_ROOT"; };
+ CF0A728B82AEB2D5931DB6A3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = deflate.c; path = "../../../../../modules/juce_core/zip/zlib/deflate.c"; sourceTree = "SOURCE_ROOT"; };
+ CF632EB4950A71EC56190E3A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_OpenGLImage.cpp"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLImage.cpp"; sourceTree = "SOURCE_ROOT"; };
+ CF6716C0AD7BC8E630CEA8DD = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_WASAPI.cpp"; path = "../../../../../modules/juce_audio_devices/native/juce_win32_WASAPI.cpp"; sourceTree = "SOURCE_ROOT"; };
+ CFA6A67D8C7733249ED7FBC5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = all.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/protected/all.h"; sourceTree = "SOURCE_ROOT"; };
+ CFC449D448A0844857CA526D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioProcessor.h"; path = "../../../../../modules/juce_audio_processors/processors/juce_AudioProcessor.h"; sourceTree = "SOURCE_ROOT"; };
+ D02263425E49C20B4A8CD405 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_devices.h"; path = "../../../../../modules/juce_audio_devices/juce_audio_devices.h"; sourceTree = "SOURCE_ROOT"; };
+ D051EB3531C22746F7AF08E8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = crc32.h; path = "../../../../../modules/juce_core/zip/zlib/crc32.h"; sourceTree = "SOURCE_ROOT"; };
+ D07C119AB16FE4E41B441B71 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ActionListener.h"; path = "../../../../../modules/juce_events/broadcasters/juce_ActionListener.h"; sourceTree = "SOURCE_ROOT"; };
+ D0F5CD629E1D7C466E87A7E6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MouseCursor.h"; path = "../../../../../modules/juce_gui_basics/mouse/juce_MouseCursor.h"; sourceTree = "SOURCE_ROOT"; };
+ D1508B7542B04397ACF773B4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_Messaging.cpp"; path = "../../../../../modules/juce_events/native/juce_linux_Messaging.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D1831592A88B72CE43CB9130 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_NSViewComponent.h"; path = "../../../../../modules/juce_gui_extra/embedding/juce_NSViewComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ D18C4FDF34147BDD22C16EE2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BlocksProtocolDefinitions.h"; path = "../../../../../modules/juce_blocks_basics/protocol/juce_BlocksProtocolDefinitions.h"; sourceTree = "SOURCE_ROOT"; };
+ D1C39914B1CDF9FDCF40F03C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AnimatedAppComponent.h"; path = "../../../../../modules/juce_gui_extra/misc/juce_AnimatedAppComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ D1E81EF119824692C769695E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = float.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/float.h"; sourceTree = "SOURCE_ROOT"; };
+ D202B1DF5EEDD627489E729D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ComponentAnimator.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_ComponentAnimator.h"; sourceTree = "SOURCE_ROOT"; };
+ D2232FD5C2B1A361C7240C8D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLGraphicsContext.h"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLGraphicsContext.h"; sourceTree = "SOURCE_ROOT"; };
+ D2785AE695E6FDF8147EEA2B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = zlib.h; path = "../../../../../modules/juce_core/zip/zlib/zlib.h"; sourceTree = "SOURCE_ROOT"; };
+ D2A1AACEFAB1D922788314A6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AsyncUpdater.cpp"; path = "../../../../../modules/juce_events/broadcasters/juce_AsyncUpdater.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D2B02C379123F7D621B82B6D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = window.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/window.h"; sourceTree = "SOURCE_ROOT"; };
+ D2CEF899F0C7DBD82CF4E7C7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGL_osx.h"; path = "../../../../../modules/juce_opengl/native/juce_OpenGL_osx.h"; sourceTree = "SOURCE_ROOT"; };
+ D2F9B4B64C205F3461541930 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AnimatedPositionBehaviours.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_AnimatedPositionBehaviours.h"; sourceTree = "SOURCE_ROOT"; };
+ D3B2CF92BBBABE4AEEC691A3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TextLayout.h"; path = "../../../../../modules/juce_graphics/fonts/juce_TextLayout.h"; sourceTree = "SOURCE_ROOT"; };
+ D3BB46A0AFF947844690B42F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ResizableBorderComponent.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_ResizableBorderComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ D403908B6B803FA4EF5BDBBF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComboBox.cpp"; path = "../../../../../modules/juce_gui_basics/widgets/juce_ComboBox.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D49A5F16D99EF86770359BBD = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MP3AudioFormat.cpp"; path = "../../../../../modules/juce_audio_formats/codecs/juce_MP3AudioFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D4C6A262AAC6CD01030A56FC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_Windowing.mm"; path = "../../../../../modules/juce_gui_basics/native/juce_mac_Windowing.mm"; sourceTree = "SOURCE_ROOT"; };
+ D4DA6EE18C4F580FC8A220B8 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
+ D4F1502ACF6109D1AA059455 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = fixed.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/fixed.h"; sourceTree = "SOURCE_ROOT"; };
+ D58546D794E5BEBD2F10412A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_RuntimePermissions.cpp"; path = "../../../../../modules/juce_core/misc/juce_RuntimePermissions.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D5EAF5AB7E64FA98BFCCA1A7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FileInputSource.cpp"; path = "../../../../../modules/juce_core/streams/juce_FileInputSource.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D62EA842B44315CFBCB24BCF = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PropertyComponent.cpp"; path = "../../../../../modules/juce_gui_basics/properties/juce_PropertyComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D67495EC058C6FDEB8C0FA6A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_InterprocessConnectionServer.cpp"; path = "../../../../../modules/juce_events/interprocess/juce_InterprocessConnectionServer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D67E60A34C5191583B542922 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ImageFileFormat.cpp"; path = "../../../../../modules/juce_graphics/images/juce_ImageFileFormat.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D69A8DC089FEB04DDEE6E9AC = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = md5.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/md5.h"; sourceTree = "SOURCE_ROOT"; };
+ D6A0E899C3D79A7DF75035C2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Random.cpp"; path = "../../../../../modules/juce_core/maths/juce_Random.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D71710BA7E52689EBFD91588 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_WebBrowserComponent.cpp"; path = "../../../../../modules/juce_gui_extra/native/juce_android_WebBrowserComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D7303A04A2ED6BD0AB0D997D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_mac_ClangBugWorkaround.h"; path = "../../../../../modules/juce_core/native/juce_mac_ClangBugWorkaround.h"; sourceTree = "SOURCE_ROOT"; };
+ D73F9D1ECAA60F87E31F531C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MPEZone.cpp"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPEZone.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D7689628C83E6E2DB2341628 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioChannelSet.h"; path = "../../../../../modules/juce_audio_basics/buffers/juce_AudioChannelSet.h"; sourceTree = "SOURCE_ROOT"; };
+ D76F72244214BDDDB9C1D42A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_WebBrowserComponent.cpp"; path = "../../../../../modules/juce_gui_extra/native/juce_linux_WebBrowserComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D7AB3E868A90774E1FAFD51B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BasicNativeHeaders.h"; path = "../../../../../modules/juce_core/native/juce_BasicNativeHeaders.h"; sourceTree = "SOURCE_ROOT"; };
+ D7BEC4451FBA09761F065B12 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_LiveConstantEditor.cpp"; path = "../../../../../modules/juce_gui_extra/misc/juce_LiveConstantEditor.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D7C00C099F40E38AD415AD56 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = mdct.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/mdct.c"; sourceTree = "SOURCE_ROOT"; };
+ D81B4D2BFB753FFD2D6F3AF0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SliderPropertyComponent.h"; path = "../../../../../modules/juce_gui_basics/properties/juce_SliderPropertyComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ D81D661338436E213B25F8BF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MultiTouchMapper.h"; path = "../../../../../modules/juce_gui_basics/native/juce_MultiTouchMapper.h"; sourceTree = "SOURCE_ROOT"; };
+ D848C25C312A0D62457C3730 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_AudioCDReader.cpp"; path = "../../../../../modules/juce_audio_utils/native/juce_win32_AudioCDReader.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D87D6545B471F09EF677902C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_HighResolutionTimer.cpp"; path = "../../../../../modules/juce_core/threads/juce_HighResolutionTimer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D886F31628398C6418B6FBF1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioPluginFormatManager.cpp"; path = "../../../../../modules/juce_audio_processors/format/juce_AudioPluginFormatManager.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D8A1D9C7F7B42C75598A385F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_graphics.mm"; path = "../../../../../modules/juce_graphics/juce_graphics.mm"; sourceTree = "SOURCE_ROOT"; };
+ D8A792DD4E2CD58BDAC9BBFF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = bitwise.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/bitwise.c"; sourceTree = "SOURCE_ROOT"; };
+ D8D329C0D501906C8E581010 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PerformanceCounter.h"; path = "../../../../../modules/juce_core/time/juce_PerformanceCounter.h"; sourceTree = "SOURCE_ROOT"; };
+ D9158BF72A9410721CF32E92 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jquant2.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jquant2.c"; sourceTree = "SOURCE_ROOT"; };
+ D93AEDCD9AA6F35A008C6B10 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "setup_22.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_22.h"; sourceTree = "SOURCE_ROOT"; };
+ D96E2FC22E02FEC19FAC3F75 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = lookup.c; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lookup.c"; sourceTree = "SOURCE_ROOT"; };
+ D9BB56CF58E7421832148DEC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Path.cpp"; path = "../../../../../modules/juce_graphics/geometry/juce_Path.cpp"; sourceTree = "SOURCE_ROOT"; };
+ D9C96A95268D1705E5EFD77F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ordinals.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/ordinals.h"; sourceTree = "SOURCE_ROOT"; };
+ D9F59FD82ECF3FDA305537AA = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmaster.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdmaster.c"; sourceTree = "SOURCE_ROOT"; };
+ DA5417FE6CC33732AF61D3BA = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ConcertinaPanel.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_ConcertinaPanel.cpp"; sourceTree = "SOURCE_ROOT"; };
+ DA6680F2E017C1451B8B3E09 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = cpu.c; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c"; sourceTree = "SOURCE_ROOT"; };
+ DAFEB9CD6997FA5768A7DBA5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Line.h"; path = "../../../../../modules/juce_graphics/geometry/juce_Line.h"; sourceTree = "SOURCE_ROOT"; };
+ DB116314BC85AB60708C199F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLExtensions.h"; path = "../../../../../modules/juce_opengl/native/juce_OpenGLExtensions.h"; sourceTree = "SOURCE_ROOT"; };
+ DB9E8BE921489285C4B9ED99 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "psych_44.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/psych_44.h"; sourceTree = "SOURCE_ROOT"; };
+ DC20E4741780F1519099EA3C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ResamplingAudioSource.cpp"; path = "../../../../../modules/juce_audio_basics/sources/juce_ResamplingAudioSource.cpp"; sourceTree = "SOURCE_ROOT"; };
+ DC7062591F0E20788EDC379E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileLogger.h"; path = "../../../../../modules/juce_core/logging/juce_FileLogger.h"; sourceTree = "SOURCE_ROOT"; };
+ DD1DAA35FC2A68363DBCDE50 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioFormatWriter.h"; path = "../../../../../modules/juce_audio_formats/format/juce_AudioFormatWriter.h"; sourceTree = "SOURCE_ROOT"; };
+ DDA658B496D43C8BD1DF3410 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ToneGeneratorAudioSource.h"; path = "../../../../../modules/juce_audio_basics/sources/juce_ToneGeneratorAudioSource.h"; sourceTree = "SOURCE_ROOT"; };
+ DDB3B7DDB5B4F5D87CBA6C65 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "residue_44p51.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_44p51.h"; sourceTree = "SOURCE_ROOT"; };
+ DDE841F2D06B35620C95F7BD = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctfst.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jfdctfst.c"; sourceTree = "SOURCE_ROOT"; };
+ DDF5573CB40B2B3D2F1DB780 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_VSTInterface.h"; path = "../../../../../modules/juce_audio_processors/format_types/juce_VSTInterface.h"; sourceTree = "SOURCE_ROOT"; };
+ DE1AA6017CEF48540B7D5521 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = "SOURCE_ROOT"; };
+ DE2F36F94C5AF00C806A885D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "setup_X.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_X.h"; sourceTree = "SOURCE_ROOT"; };
+ DE56F99143A2BEF2EC4E15A0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Viewport.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_Viewport.h"; sourceTree = "SOURCE_ROOT"; };
+ DE703F44A06F45D75C122234 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_SoundPlayer.cpp"; path = "../../../../../modules/juce_audio_utils/players/juce_SoundPlayer.cpp"; sourceTree = "SOURCE_ROOT"; };
+ DE9704A65773501DE347230E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Base64.h"; path = "../../../../../modules/juce_core/text/juce_Base64.h"; sourceTree = "SOURCE_ROOT"; };
+ DEB1AA246A3B2804C43992C8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_SVGParser.cpp"; path = "../../../../../modules/juce_gui_basics/drawables/juce_SVGParser.cpp"; sourceTree = "SOURCE_ROOT"; };
+ DEBEFE952C92EE38B62CCBA0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwtran.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngwtran.c"; sourceTree = "SOURCE_ROOT"; };
+ DED4D4557567F40DCDA8340A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ApplicationCommandManager.h"; path = "../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandManager.h"; sourceTree = "SOURCE_ROOT"; };
+ DEE463950B10373AB5BF1415 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLHelpers.h"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLHelpers.h"; sourceTree = "SOURCE_ROOT"; };
+ DEE913D46DAAD878430264D6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = bitreader.c; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/bitreader.c"; sourceTree = "SOURCE_ROOT"; };
+ DF5C47F2732316263F27F35B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FilenameComponent.h"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_FilenameComponent.h"; sourceTree = "SOURCE_ROOT"; };
+ DFA0BD689C1C350DD66B8F10 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_InterprocessConnection.cpp"; path = "../../../../../modules/juce_events/interprocess/juce_InterprocessConnection.cpp"; sourceTree = "SOURCE_ROOT"; };
+ DFD83A7CDABE2CC9D9D29FEE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "stream_encoder.h"; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/protected/stream_encoder.h"; sourceTree = "SOURCE_ROOT"; };
+ E00E9055E0D461FBA65415F4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jmemsys.h; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jmemsys.h"; sourceTree = "SOURCE_ROOT"; };
+ E08C436C85606AA1432C5C24 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OutputStream.h"; path = "../../../../../modules/juce_core/streams/juce_OutputStream.h"; sourceTree = "SOURCE_ROOT"; };
+ E0A6645BF35A873306104E19 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Array.h"; path = "../../../../../modules/juce_core/containers/juce_Array.h"; sourceTree = "SOURCE_ROOT"; };
+ E0CD810D85D163FCA2E05D6B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_UndoableAction.h"; path = "../../../../../modules/juce_data_structures/undomanager/juce_UndoableAction.h"; sourceTree = "SOURCE_ROOT"; };
+ E1604416242DA5613762B851 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LADSPAPluginFormat.h"; path = "../../../../../modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ E1C8BA4CF79BCC3B0E758A9F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LowLevelGraphicsContext.h"; path = "../../../../../modules/juce_graphics/contexts/juce_LowLevelGraphicsContext.h"; sourceTree = "SOURCE_ROOT"; };
+ E20191F0BE305DA483AE955F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioFormat.h"; path = "../../../../../modules/juce_audio_formats/format/juce_AudioFormat.h"; sourceTree = "SOURCE_ROOT"; };
+ E222435250E8A57C88E441F8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ComponentDragger.h"; path = "../../../../../modules/juce_gui_basics/mouse/juce_ComponentDragger.h"; sourceTree = "SOURCE_ROOT"; };
+ E23D59AE5843A019D0B20D61 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MPESynthesiserBase.h"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPESynthesiserBase.h"; sourceTree = "SOURCE_ROOT"; };
+ E24521953703852377A32D70 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ToolbarItemComponent.cpp"; path = "../../../../../modules/juce_gui_basics/widgets/juce_ToolbarItemComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ E25FE62CDBD305515BE0E974 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioFormatReader.cpp"; path = "../../../../../modules/juce_audio_formats/format/juce_AudioFormatReader.cpp"; sourceTree = "SOURCE_ROOT"; };
+ E2760CFD55AAE533FAD166FD = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_WebBrowserComponent.mm"; path = "../../../../../modules/juce_gui_extra/native/juce_mac_WebBrowserComponent.mm"; sourceTree = "SOURCE_ROOT"; };
+ E2778AA90308DEB0DDB6C0DB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Socket.h"; path = "../../../../../modules/juce_core/network/juce_Socket.h"; sourceTree = "SOURCE_ROOT"; };
+ E280D05067385BEC1E3B4766 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CharPointer_UTF8.h"; path = "../../../../../modules/juce_core/text/juce_CharPointer_UTF8.h"; sourceTree = "SOURCE_ROOT"; };
+ E2CD239EB674A987631C1F95 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AnimatedPosition.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_AnimatedPosition.h"; sourceTree = "SOURCE_ROOT"; };
+ E2D85F080ACAE32DED909D5C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ResizableCornerComponent.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_ResizableCornerComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ E30A6EED52F978044DBCB34C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_BubbleMessageComponent.cpp"; path = "../../../../../modules/juce_gui_extra/misc/juce_BubbleMessageComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ E30FA02A405F056C289608F5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RelativeTime.h"; path = "../../../../../modules/juce_core/time/juce_RelativeTime.h"; sourceTree = "SOURCE_ROOT"; };
+ E3455619FB6BC525C9407A6D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LittleFootRemoteHeap.h"; path = "../../../../../modules/juce_blocks_basics/littlefoot/juce_LittleFootRemoteHeap.h"; sourceTree = "SOURCE_ROOT"; };
+ E39BFCA09C446A2AD541D66C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentListener.cpp"; path = "../../../../../modules/juce_gui_basics/components/juce_ComponentListener.cpp"; sourceTree = "SOURCE_ROOT"; };
+ E40C81964A35DCBA5C07A708 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdcolor.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdcolor.c"; sourceTree = "SOURCE_ROOT"; };
+ E4223D79CA646F0E046E43B1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioThumbnailCache.h"; path = "../../../../../modules/juce_audio_utils/gui/juce_AudioThumbnailCache.h"; sourceTree = "SOURCE_ROOT"; };
+ E48849E0B20A2D2B2391BD36 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_Threads.cpp"; path = "../../../../../modules/juce_core/native/juce_linux_Threads.cpp"; sourceTree = "SOURCE_ROOT"; };
+ E4A7590FF79E8EAE3286C76F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileFilter.h"; path = "../../../../../modules/juce_core/files/juce_FileFilter.h"; sourceTree = "SOURCE_ROOT"; };
+ E4E4B644F52739096EC9ED59 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_FileChooser.mm"; path = "../../../../../modules/juce_gui_basics/native/juce_mac_FileChooser.mm"; sourceTree = "SOURCE_ROOT"; };
+ E4FE73FA8F2ADD14B7E7812E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DrawableRectangle.h"; path = "../../../../../modules/juce_gui_basics/drawables/juce_DrawableRectangle.h"; sourceTree = "SOURCE_ROOT"; };
+ E51819C6E2E6881C993A9C16 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "lookup_data.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lookup_data.h"; sourceTree = "SOURCE_ROOT"; };
+ E5578FB0E512495116B71F3A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Time.h"; path = "../../../../../modules/juce_core/time/juce_Time.h"; sourceTree = "SOURCE_ROOT"; };
+ E55BD37DA91B20BB60D8BC5B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_android_JNIHelpers.h"; path = "../../../../../modules/juce_core/native/juce_android_JNIHelpers.h"; sourceTree = "SOURCE_ROOT"; };
+ E5B77FA0E883FC22ED9A07E0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = os.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/os.h"; sourceTree = "SOURCE_ROOT"; };
+ E5F14F3C17FA5BC721CF06CE = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_ios_Windowing.mm"; path = "../../../../../modules/juce_gui_basics/native/juce_ios_Windowing.mm"; sourceTree = "SOURCE_ROOT"; };
+ E5F243A42AFB91068026ADA4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BufferingAudioSource.h"; path = "../../../../../modules/juce_audio_basics/sources/juce_BufferingAudioSource.h"; sourceTree = "SOURCE_ROOT"; };
+ E61A0BF68D610DA6AB86F94D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jctrans.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jctrans.c"; sourceTree = "SOURCE_ROOT"; };
+ E61D74DA18777D3ED9B604B6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CriticalSection.h"; path = "../../../../../modules/juce_core/threads/juce_CriticalSection.h"; sourceTree = "SOURCE_ROOT"; };
+ E6335D36399077078BC78ECC = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_DragAndDropContainer.h"; path = "../../../../../modules/juce_gui_basics/mouse/juce_DragAndDropContainer.h"; sourceTree = "SOURCE_ROOT"; };
+ E6D09BB9A4D7592AA53FA63C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_basics.mm"; path = "../../JuceLibraryCode/juce_gui_basics.mm"; sourceTree = "SOURCE_ROOT"; };
+ E758FAA869708918584DA19D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_GIFLoader.cpp"; path = "../../../../../modules/juce_graphics/image_formats/juce_GIFLoader.cpp"; sourceTree = "SOURCE_ROOT"; };
+ E77ED2BF4E691CDA0BDF67E5 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jpegint.h; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jpegint.h"; sourceTree = "SOURCE_ROOT"; };
+ E799718167E8643572309303 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_HashMap.h"; path = "../../../../../modules/juce_core/containers/juce_HashMap.h"; sourceTree = "SOURCE_ROOT"; };
+ E7AAC5B8A3584327D2A77AE3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctint.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jidctint.c"; sourceTree = "SOURCE_ROOT"; };
+ E8345B1296211CB1845D88C6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcphuff.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jcphuff.c"; sourceTree = "SOURCE_ROOT"; };
+ E844B59EADE8FBB9804FCC9F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_PathIterator.cpp"; path = "../../../../../modules/juce_graphics/geometry/juce_PathIterator.cpp"; sourceTree = "SOURCE_ROOT"; };
+ E87BA58A31E5AF84D1819E1C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = compat.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/compat.h"; sourceTree = "SOURCE_ROOT"; };
+ E8A878C2CE1A7EB1EEF6B92E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_LookAndFeel_V3.cpp"; path = "../../../../../modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V3.cpp"; sourceTree = "SOURCE_ROOT"; };
+ E912FFD60443431073F49E05 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MultiDocumentPanel.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_MultiDocumentPanel.h"; sourceTree = "SOURCE_ROOT"; };
+ E92CA7282B750596908F685C = {isa = PBXFileReference; lastKnownFileType = text.txt; name = "libpng_readme.txt"; path = "../../../../../modules/juce_graphics/image_formats/pnglib/libpng_readme.txt"; sourceTree = "SOURCE_ROOT"; };
+ E93C91661F22E59660A807AE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RectangleList.h"; path = "../../../../../modules/juce_graphics/geometry/juce_RectangleList.h"; sourceTree = "SOURCE_ROOT"; };
+ E94CBCD3B3C4F726DDC7145E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "residue_8.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_8.h"; sourceTree = "SOURCE_ROOT"; };
+ E9AB8309552BD30792B23FCC = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_BufferedInputStream.h"; path = "../../../../../modules/juce_core/streams/juce_BufferedInputStream.h"; sourceTree = "SOURCE_ROOT"; };
+ E9DEFB9A762600C429F59B02 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_OpenGLRenderer.h"; path = "../../../../../modules/juce_opengl/opengl/juce_OpenGLRenderer.h"; sourceTree = "SOURCE_ROOT"; };
+ EA01768CDAAD4D13D769C371 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileOutputStream.h"; path = "../../../../../modules/juce_core/files/juce_FileOutputStream.h"; sourceTree = "SOURCE_ROOT"; };
+ EA1AA20402977B302BF5D363 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MouseInputSource.cpp"; path = "../../../../../modules/juce_gui_basics/mouse/juce_MouseInputSource.cpp"; sourceTree = "SOURCE_ROOT"; };
+ EA21A9139BBAE2238DBB6920 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdcoefct.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jdcoefct.c"; sourceTree = "SOURCE_ROOT"; };
+ EA2B74AE3EBD1A8CE6BBE889 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctred.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jidctred.c"; sourceTree = "SOURCE_ROOT"; };
+ EA5D4A0F009B78BF824D7226 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Time.cpp"; path = "../../../../../modules/juce_core/time/juce_Time.cpp"; sourceTree = "SOURCE_ROOT"; };
+ EA7F1EB1FFEFB4937039BFDB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = endswap.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/endswap.h"; sourceTree = "SOURCE_ROOT"; };
+ EAB8F9E9C69FDA9046914C57 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_GZIPDecompressorInputStream.h"; path = "../../../../../modules/juce_core/zip/juce_GZIPDecompressorInputStream.h"; sourceTree = "SOURCE_ROOT"; };
+ EACA2C832850D2A048AF852C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ThreadLocalValue.h"; path = "../../../../../modules/juce_core/threads/juce_ThreadLocalValue.h"; sourceTree = "SOURCE_ROOT"; };
+ EAEA770719580DF72D030505 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MouseListener.h"; path = "../../../../../modules/juce_gui_basics/mouse/juce_MouseListener.h"; sourceTree = "SOURCE_ROOT"; };
+ EB6CAC1FED2456D7379245AE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = format.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/format.h"; sourceTree = "SOURCE_ROOT"; };
+ EBB04C1A8397DA42E15EFB00 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MidiMessage.cpp"; path = "../../../../../modules/juce_audio_basics/midi/juce_MidiMessage.cpp"; sourceTree = "SOURCE_ROOT"; };
+ EBF51AE520FC44EE056995D9 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LEDGrid.h"; path = "../../../../../modules/juce_blocks_basics/blocks/juce_LEDGrid.h"; sourceTree = "SOURCE_ROOT"; };
+ EC7D9B630F5FB46258974133 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_android_FileChooser.cpp"; path = "../../../../../modules/juce_gui_basics/native/juce_android_FileChooser.cpp"; sourceTree = "SOURCE_ROOT"; };
+ EC98B82ADF1187D4060FC49F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_opengl.mm"; path = "../../../../../modules/juce_opengl/juce_opengl.mm"; sourceTree = "SOURCE_ROOT"; };
+ EC9D1EEB0DCF8551C0E70916 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioThumbnail.cpp"; path = "../../../../../modules/juce_audio_utils/gui/juce_AudioThumbnail.cpp"; sourceTree = "SOURCE_ROOT"; };
+ ECB315B1E096D167076B058A = {isa = PBXFileReference; lastKnownFileType = text.txt; name = "Flac Licence.txt"; path = "../../../../../modules/juce_audio_formats/codecs/flac/Flac Licence.txt"; sourceTree = "SOURCE_ROOT"; };
+ ED351CFC37C81F20B6D6B01E = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ZipFile.cpp"; path = "../../../../../modules/juce_core/zip/juce_ZipFile.cpp"; sourceTree = "SOURCE_ROOT"; };
+ EE0075DEF550FBC64F7D8B9E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ListenerList.h"; path = "../../../../../modules/juce_core/containers/juce_ListenerList.h"; sourceTree = "SOURCE_ROOT"; };
+ EE16A3FB712E9DFB3EE0A875 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CustomTypeface.h"; path = "../../../../../modules/juce_graphics/fonts/juce_CustomTypeface.h"; sourceTree = "SOURCE_ROOT"; };
+ EEC74F1DE224D270462503B0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_TooltipClient.h"; path = "../../../../../modules/juce_gui_basics/mouse/juce_TooltipClient.h"; sourceTree = "SOURCE_ROOT"; };
+ EECE5BDB038D0EBEAF36303E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Decibels.h"; path = "../../../../../modules/juce_audio_basics/effects/juce_Decibels.h"; sourceTree = "SOURCE_ROOT"; };
+ EEE8C92FC3679E29251522E3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LinearSmoothedValue.h"; path = "../../../../../modules/juce_audio_basics/effects/juce_LinearSmoothedValue.h"; sourceTree = "SOURCE_ROOT"; };
+ EEF550D385BC7AEA1172FE5A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Result.h"; path = "../../../../../modules/juce_core/misc/juce_Result.h"; sourceTree = "SOURCE_ROOT"; };
+ EF02685FDE72675F4B750650 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_gui_extra.mm"; path = "../../JuceLibraryCode/juce_gui_extra.mm"; sourceTree = "SOURCE_ROOT"; };
+ EF66F9A77305AAF55D3A8C7C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ByteOrder.h"; path = "../../../../../modules/juce_core/memory/juce_ByteOrder.h"; sourceTree = "SOURCE_ROOT"; };
+ EFD32E4A4A81815891CF54FC = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_URL.h"; path = "../../../../../modules/juce_core/network/juce_URL.h"; sourceTree = "SOURCE_ROOT"; };
+ F053B1F18F39980BB1E8F98A = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_BubbleComponent.cpp"; path = "../../../../../modules/juce_gui_basics/misc/juce_BubbleComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F075BDDDD4F7DBB900BB457B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Justification.h"; path = "../../../../../modules/juce_graphics/placement/juce_Justification.h"; sourceTree = "SOURCE_ROOT"; };
+ F0BA9CA48CC49E14CB65B10A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = bitmath.c; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/bitmath.c"; sourceTree = "SOURCE_ROOT"; };
+ F1444750AF2DEB43BE2E1658 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Topology.h"; path = "../../../../../modules/juce_blocks_basics/topology/juce_Topology.h"; sourceTree = "SOURCE_ROOT"; };
+ F18CEC0613E333793CE487D1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_RelativePoint.h"; path = "../../../../../modules/juce_gui_basics/positioning/juce_RelativePoint.h"; sourceTree = "SOURCE_ROOT"; };
+ F1CB294C66C69F817C9CDC1B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwrite.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngwrite.c"; sourceTree = "SOURCE_ROOT"; };
+ F2070BC848C05F66E134D7E4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_NSViewComponentPeer.mm"; path = "../../../../../modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm"; sourceTree = "SOURCE_ROOT"; };
+ F21AB2745631CDDDEEA35B1F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_Registry.cpp"; path = "../../../../../modules/juce_core/native/juce_win32_Registry.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F295C837D985F94DE7AB4A7E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MidiMessageSequence.h"; path = "../../../../../modules/juce_audio_basics/midi/juce_MidiMessageSequence.h"; sourceTree = "SOURCE_ROOT"; };
+ F2CFFDE197B95A56FD3D2794 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_audio_formats.h"; path = "../../../../../modules/juce_audio_formats/juce_audio_formats.h"; sourceTree = "SOURCE_ROOT"; };
+ F312C15C8FF357815A5D852D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FileBasedDocument.cpp"; path = "../../../../../modules/juce_gui_extra/documents/juce_FileBasedDocument.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F392A87E5AE1D4D390FCF488 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ProgressBar.h"; path = "../../../../../modules/juce_gui_basics/widgets/juce_ProgressBar.h"; sourceTree = "SOURCE_ROOT"; };
+ F3E5F7DB01292CFF33EE3971 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ElementComparator.h"; path = "../../../../../modules/juce_core/containers/juce_ElementComparator.h"; sourceTree = "SOURCE_ROOT"; };
+ F40688B881E38D0CEC413A0A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = float.c; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/float.c"; sourceTree = "SOURCE_ROOT"; };
+ F4259584E00B36526D5CFB0A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "stream_decoder.c"; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/stream_decoder.c"; sourceTree = "SOURCE_ROOT"; };
+ F49D80F0D4131FFEA98F85BC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ImagePreviewComponent.cpp"; path = "../../../../../modules/juce_gui_basics/filebrowser/juce_ImagePreviewComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F4E74A5B357BA4EA4CEC0F13 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jddctmgr.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jddctmgr.c"; sourceTree = "SOURCE_ROOT"; };
+ F5668D6CDFED46BDB46C2E75 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_KeyPressMappingSet.cpp"; path = "../../../../../modules/juce_gui_basics/commands/juce_KeyPressMappingSet.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F581127924048FE75A58A428 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_TabbedButtonBar.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_TabbedButtonBar.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F597712CD0CFE5D1F1145B83 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ChannelRemappingAudioSource.h"; path = "../../../../../modules/juce_audio_basics/sources/juce_ChannelRemappingAudioSource.h"; sourceTree = "SOURCE_ROOT"; };
+ F59BA79A83B6BAD01FDA01DE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_CatmullRomInterpolator.h"; path = "../../../../../modules/juce_audio_basics/effects/juce_CatmullRomInterpolator.h"; sourceTree = "SOURCE_ROOT"; };
+ F5AA13686E3E014FA127B57E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jmorecfg.h; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jmorecfg.h"; sourceTree = "SOURCE_ROOT"; };
+ F5B9A3BC6E33C98DFD9C9246 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ChannelRemappingAudioSource.cpp"; path = "../../../../../modules/juce_audio_basics/sources/juce_ChannelRemappingAudioSource.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F5CCD78E2928A6021051AEE3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcdctmgr.c; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jcdctmgr.c"; sourceTree = "SOURCE_ROOT"; };
+ F6EB5AF7554635EB441568FE = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FillType.h"; path = "../../../../../modules/juce_graphics/colour/juce_FillType.h"; sourceTree = "SOURCE_ROOT"; };
+ F6F326524DED75455C217520 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LinkedListPointer.h"; path = "../../../../../modules/juce_core/containers/juce_LinkedListPointer.h"; sourceTree = "SOURCE_ROOT"; };
+ F72B09FDE33658D77B49C7A6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ImageComponent.cpp"; path = "../../../../../modules/juce_gui_basics/widgets/juce_ImageComponent.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F75524422C20C513FC73502B = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MixerAudioSource.cpp"; path = "../../../../../modules/juce_audio_basics/sources/juce_MixerAudioSource.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F75CCB348B732B0AFEE4B4FC = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_Midi.cpp"; path = "../../../../../modules/juce_audio_devices/native/juce_linux_Midi.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F77E277347DD30D380C5A3C8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioCDBurner.h"; path = "../../../../../modules/juce_audio_utils/audio_cd/juce_AudioCDBurner.h"; sourceTree = "SOURCE_ROOT"; };
+ F78A0ACB1EADC8578B82664C = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioIODevice.h"; path = "../../../../../modules/juce_audio_devices/audio_io/juce_AudioIODevice.h"; sourceTree = "SOURCE_ROOT"; };
+ F7E2CB260B70E401BF91E236 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_LittleFootRunner.h"; path = "../../../../../modules/juce_blocks_basics/littlefoot/juce_LittleFootRunner.h"; sourceTree = "SOURCE_ROOT"; };
+ F80A4EA6BE0D985876B9D4F4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_SystemTrayIcon.cpp"; path = "../../../../../modules/juce_gui_extra/native/juce_win32_SystemTrayIcon.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F83D0DB57AB2C58AA5FFCE39 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ComponentBuilder.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_ComponentBuilder.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F8612CE49A62B80AD1612B78 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MemoryBlock.cpp"; path = "../../../../../modules/juce_core/memory/juce_MemoryBlock.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F86729C1E690C3B06646ECAE = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_AudioTransportSource.cpp"; path = "../../../../../modules/juce_audio_devices/sources/juce_AudioTransportSource.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F879359E8211BD2E1CFE5FE4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_SystemAudioVolume.h"; path = "../../../../../modules/juce_audio_devices/audio_io/juce_SystemAudioVolume.h"; sourceTree = "SOURCE_ROOT"; };
+ F8B25FD2FE72F0862EDA70AC = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jchuff.h; path = "../../../../../modules/juce_graphics/image_formats/jpglib/jchuff.h"; sourceTree = "SOURCE_ROOT"; };
+ F8B3AB36958E31EB6BDD2ED3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppConfig.h; path = ../../JuceLibraryCode/AppConfig.h; sourceTree = "SOURCE_ROOT"; };
+ F9AB49CA88C89C26093CB1B6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "stream_encoder_framing.h"; path = "../../../../../modules/juce_audio_formats/codecs/flac/libFLAC/include/private/stream_encoder_framing.h"; sourceTree = "SOURCE_ROOT"; };
+ F9AF151A90E61714965D67D6 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ChildProcess.cpp"; path = "../../../../../modules/juce_core/threads/juce_ChildProcess.cpp"; sourceTree = "SOURCE_ROOT"; };
+ F9D767E4012A0A1ADD83A533 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngpread.c; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pngpread.c"; sourceTree = "SOURCE_ROOT"; };
+ FA06D31009B123A360853CCB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ComponentMovementWatcher.h"; path = "../../../../../modules/juce_gui_basics/layout/juce_ComponentMovementWatcher.h"; sourceTree = "SOURCE_ROOT"; };
+ FA1ADE34C41760B0FBCCDE64 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MPEZoneLayout.cpp"; path = "../../../../../modules/juce_audio_basics/mpe/juce_MPEZoneLayout.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FA489194866ACCE37578D4E8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_VST3Headers.h"; path = "../../../../../modules/juce_audio_processors/format_types/juce_VST3Headers.h"; sourceTree = "SOURCE_ROOT"; };
+ FA66CC9414AAEA72869BE969 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Synthesiser.h"; path = "../../../../../modules/juce_audio_basics/synthesisers/juce_Synthesiser.h"; sourceTree = "SOURCE_ROOT"; };
+ FA67F7DC71898AC7AD4F0284 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_win32_HiddenMessageWindow.h"; path = "../../../../../modules/juce_events/native/juce_win32_HiddenMessageWindow.h"; sourceTree = "SOURCE_ROOT"; };
+ FAB83E6CF91D59901CD87D9F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Component.cpp"; path = "../../../../../modules/juce_gui_basics/components/juce_Component.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FAF382A2237B019DC61920B4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DeletedAtShutdown.cpp"; path = "../../../../../modules/juce_events/messages/juce_DeletedAtShutdown.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FAF5B61706BC2CD2EB68B550 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_Drawable.h"; path = "../../../../../modules/juce_gui_basics/drawables/juce_Drawable.h"; sourceTree = "SOURCE_ROOT"; };
+ FB6917E81414FA81F7442188 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_FlexBox.cpp"; path = "../../../../../modules/juce_gui_basics/layout/juce_FlexBox.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FB87C64D7D673B76E4B5209D = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_ApplicationCommandTarget.cpp"; path = "../../../../../modules/juce_gui_basics/commands/juce_ApplicationCommandTarget.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FBA7E37B32790A96A06D3D71 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_EdgeTable.cpp"; path = "../../../../../modules/juce_graphics/geometry/juce_EdgeTable.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FBB15A363BAC741113987D32 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_NamedValueSet.cpp"; path = "../../../../../modules/juce_core/containers/juce_NamedValueSet.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FBEB137F69B8A261A4B64760 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_UnitTest.h"; path = "../../../../../modules/juce_core/unit_tests/juce_UnitTest.h"; sourceTree = "SOURCE_ROOT"; };
+ FBEF609D497831012E3D8829 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_IIRFilterAudioSource.cpp"; path = "../../../../../modules/juce_audio_basics/sources/juce_IIRFilterAudioSource.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FC25CF1063C88216E3462839 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "juce_mac_MainMenu.mm"; path = "../../../../../modules/juce_gui_basics/native/juce_mac_MainMenu.mm"; sourceTree = "SOURCE_ROOT"; };
+ FC70FA0EABE4EDF87260618B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_ShapeButton.h"; path = "../../../../../modules/juce_gui_basics/buttons/juce_ShapeButton.h"; sourceTree = "SOURCE_ROOT"; };
+ FC7AD77D53883AA7C906A6A3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_Font.cpp"; path = "../../../../../modules/juce_graphics/fonts/juce_Font.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FCC43FCAF92C64F580AA70C7 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_linux_Files.cpp"; path = "../../../../../modules/juce_core/native/juce_linux_Files.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FCEA59DF5F16B5921093D94E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_gui_extra.h"; path = "../../../../../modules/juce_gui_extra/juce_gui_extra.h"; sourceTree = "SOURCE_ROOT"; };
+ FD227C7F5CE97D9F54705672 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = lookup.h; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lookup.h"; sourceTree = "SOURCE_ROOT"; };
+ FD2C8067AE30B6CEE4CE988F = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DrawableShape.cpp"; path = "../../../../../modules/juce_gui_basics/drawables/juce_DrawableShape.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FD456DC8A0AA86BA70897D1A = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_FileDragAndDropTarget.h"; path = "../../../../../modules/juce_gui_basics/mouse/juce_FileDragAndDropTarget.h"; sourceTree = "SOURCE_ROOT"; };
+ FDB3638BA6DA63B26AB72151 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_AudioDataConverters.h"; path = "../../../../../modules/juce_audio_basics/buffers/juce_AudioDataConverters.h"; sourceTree = "SOURCE_ROOT"; };
+ FE6B0496C0CC7E25BCB6A277 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pnginfo.h; path = "../../../../../modules/juce_graphics/image_formats/pnglib/pnginfo.h"; sourceTree = "SOURCE_ROOT"; };
+ FE9F36798B9C61600626D1F4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_WaitableEvent.h"; path = "../../../../../modules/juce_core/threads/juce_WaitableEvent.h"; sourceTree = "SOURCE_ROOT"; };
+ FEB6A996354866F8AE7221C3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_win32_ASIO.cpp"; path = "../../../../../modules/juce_audio_devices/native/juce_win32_ASIO.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FEF8D1DEC14F53F54985AB63 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = metadata.h; path = "../../../../../modules/juce_audio_formats/codecs/flac/metadata.h"; sourceTree = "SOURCE_ROOT"; };
+ FF00E084ABFC561A9CDFF2CB = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_MidiFile.h"; path = "../../../../../modules/juce_audio_basics/midi/juce_MidiFile.h"; sourceTree = "SOURCE_ROOT"; };
+ FF4021F0CFBE14A6FD29CCC1 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_PathIterator.h"; path = "../../../../../modules/juce_graphics/geometry/juce_PathIterator.h"; sourceTree = "SOURCE_ROOT"; };
+ FF748D1941B41C1794A241EA = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_DrawableComposite.cpp"; path = "../../../../../modules/juce_gui_basics/drawables/juce_DrawableComposite.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FFB390B0993D0BDD8DD46932 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "os_types.h"; path = "../../../../../modules/juce_audio_formats/codecs/oggvorbis/os_types.h"; sourceTree = "SOURCE_ROOT"; };
+ FFC7EE5AC5B2F327351AE86C = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = "juce_MidiRPN.cpp"; path = "../../../../../modules/juce_audio_basics/midi/juce_MidiRPN.cpp"; sourceTree = "SOURCE_ROOT"; };
+ FFE735418137221B6EABF1A0 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "juce_GenericAudioProcessorEditor.h"; path = "../../../../../modules/juce_audio_processors/processors/juce_GenericAudioProcessorEditor.h"; sourceTree = "SOURCE_ROOT"; };
+ 545FE4C9D51A36132F172336 = {isa = PBXGroup; children = (
+ DE1AA6017CEF48540B7D5521,
+ 222A183111DEA8A63599510A,
+ ADD9F9EB5E0EFC63E2992ED7, ); name = Source; sourceTree = ""; };
+ C09481DD2BAC5454AB6D8772 = {isa = PBXGroup; children = (
+ 545FE4C9D51A36132F172336, ); name = BlocksMonitor; sourceTree = ""; };
+ 6A7EBAAF199594E266A2AABC = {isa = PBXGroup; children = (
+ 1719057E5D9514D7DD88DEB9,
+ D7689628C83E6E2DB2341628,
+ BD290FDCC12F4ADF00DAD43B,
+ FDB3638BA6DA63B26AB72151,
+ 0E18DB38D8B88859C5D16D11,
+ 9C75C797BAEC7A8B9693A06B,
+ 340CD5C7C9744CCCBE3AC335, ); name = buffers; sourceTree = ""; };
+ 6174AAEB049EF89001A54845 = {isa = PBXGroup; children = (
+ BAFE0AA564EEF3F790410FDB,
+ F59BA79A83B6BAD01FDA01DE,
+ EECE5BDB038D0EBEAF36303E,
+ C315E5EE86688FF6DEA57CE7,
+ AE4AAFB284B168518E366EBD,
+ 4986E10C464822F15B91C7ED,
+ B1657D09D3DF467A04A87E6A,
+ C79F1FCCE8950900DAE6BB50,
+ A92093FCCEED7408744E3706,
+ EEE8C92FC3679E29251522E3,
+ 2ACDC9BC9FB57E955B8D2811, ); name = effects; sourceTree = ""; };
+ 517D48DA3D86D147A2174768 = {isa = PBXGroup; children = (
+ 4D2D9C398522FA01A9FFFCBB,
+ 4231BEF0941784C4F2CDF362,
+ 48037047F1CC53BDB2CBF2E9,
+ FF00E084ABFC561A9CDFF2CB,
+ 5FB96EBC6B8E73E76F2C2D7A,
+ B7EDEB203D0BB0EAE5EE555B,
+ EBB04C1A8397DA42E15EFB00,
+ C50386097FEBEBECC9E84866,
+ AA6CA28DA51A2BAAD979771B,
+ F295C837D985F94DE7AB4A7E,
+ FFC7EE5AC5B2F327351AE86C,
+ 5E11C3AEEEBFB5D3ACE79B2E, ); name = midi; sourceTree = ""; };
+ DC93E1DF7BCD2B46DCC1F158 = {isa = PBXGroup; children = (
+ A50045AA484A93660F5D0DEC,
+ 22ED7F3091B15731766D82C9,
+ 1E614A63C2C2AA7B858DF4C1,
+ 8B4505D4C9EBC3014C27D6D9,
+ 26FC7D9E7E5BB2D4535FB0CE,
+ 228CF6C968876BDA6ABC9242,
+ BE0489F4AA110E7A4BE6880E,
+ 3E8E3CBF730E14A6EC9BEF89,
+ 847F33928C5A70863F673938,
+ E23D59AE5843A019D0B20D61,
+ 99ACE9D856A4E22A5BACF1F9,
+ C37E5834DB1CC5410BF93D8F,
+ BB6321248114A79859B8468B,
+ CBAB521E6B494AABD42A4B90,
+ D73F9D1ECAA60F87E31F531C,
+ A409C91727751590682E3237,
+ FA1ADE34C41760B0FBCCDE64,
+ 0589A9A25D0130ABC2840F23, ); name = mpe; sourceTree = ""; };
+ C47AFB64084B93622220C070 = {isa = PBXGroup; children = (
+ AED53153DA5BEE178C227DDF,
+ 488FA6954BBFB6694C21AEB4,
+ E5F243A42AFB91068026ADA4,
+ F5B9A3BC6E33C98DFD9C9246,
+ F597712CD0CFE5D1F1145B83,
+ FBEF609D497831012E3D8829,
+ 72F093BD43569F666B148B27,
+ F75524422C20C513FC73502B,
+ 9B83893AFBF95FF07B65E433,
+ 6C783023901E82078E0F2435,
+ DC20E4741780F1519099EA3C,
+ 21E9D0E35F84BCF5897B262C,
+ 88EE9BAF87CBE950013CD3AB,
+ 68F432AE5DFBDF416D381D69,
+ B0A159D25E2692435B03ACC0,
+ DDA658B496D43C8BD1DF3410, ); name = sources; sourceTree = ""; };
+ 2C7D50068311979A293C7896 = {isa = PBXGroup; children = (
+ 5D55891DEDD0EEFA6F294941,
+ FA66CC9414AAEA72869BE969, ); name = synthesisers; sourceTree = ""; };
+ D50B2337B08D012224137BB2 = {isa = PBXGroup; children = (
+ 6A7EBAAF199594E266A2AABC,
+ 6174AAEB049EF89001A54845,
+ 517D48DA3D86D147A2174768,
+ DC93E1DF7BCD2B46DCC1F158,
+ C47AFB64084B93622220C070,
+ 2C7D50068311979A293C7896,
+ 70DB5546A7436EC8159F7825,
+ 8B1B3FA81F246E78CB5F2D99,
+ 7BC44A73343EBF0012783283,
+ 8B1B3FA81F246E78CB5F2D99, ); name = "juce_audio_basics"; sourceTree = ""; };
+ D65E79E69A55F01F0AC7917D = {isa = PBXGroup; children = (
+ 1D9A7BEB060662FBA38DF385,
+ 3E85FF93FDA0C5C93F8EE3FA,
+ 1E78B98A70BD5E14381302DC,
+ F78A0ACB1EADC8578B82664C,
+ 9966516477648BBFCF5B0B94,
+ 67C85156717AC5DD60AD4279,
+ F879359E8211BD2E1CFE5FE4, ); name = "audio_io"; sourceTree = ""; };
+ C80A9F785F2081A97227C18E = {isa = PBXGroup; children = (
+ 54EDF505CD9D19D1FD59D612,
+ 70A3109F4B0C80AA941F513C,
+ B67DEB7456F7A7FE9E99F5AC,
+ 86C050562945072E55B2304F,
+ 22A1487B587036337AC48F11, ); name = "midi_io"; sourceTree = ""; };
+ F6BD837B724D3DDF240ABC40 = {isa = PBXGroup; children = (
+ 831C32DB068A571A3E99E55B,
+ A1596463A5167EF7B3B9E3F3,
+ AAC7E9D875D6B6AA83E571AB,
+ C1EA59968F46E68D75AABDCE,
+ CA7EE521D0323E69E581633A,
+ C9D366816AA16012A9FD56D0,
+ F75CCB348B732B0AFEE4B4FC,
+ 9BD70EEF4FCF2A636DAA3C48,
+ 5B3703950FC13A76F07CC0B0,
+ C917343C99E5B7DD04F04FE3,
+ FEB6A996354866F8AE7221C3,
+ 39D9DEE8F862C43CF6F4DA7F,
+ 9FF3D6166AF80343ACC2DF7A,
+ CF6716C0AD7BC8E630CEA8DD, ); name = native; sourceTree = ""; };
+ 0226D256277F3CB1491B9CFB = {isa = PBXGroup; children = (
+ C29107288DAD3ABB3719015D,
+ B6345846B766F695A8CAD09E,
+ F86729C1E690C3B06646ECAE,
+ 0460787CA1702E4A267536CD, ); name = sources; sourceTree = ""; };
+ 6D10CDFC1618B6213AFBE599 = {isa = PBXGroup; children = (
+ D65E79E69A55F01F0AC7917D,
+ C80A9F785F2081A97227C18E,
+ F6BD837B724D3DDF240ABC40,
+ 0226D256277F3CB1491B9CFB,
+ CAC8EEB08140F6C3189606EC,
+ D02263425E49C20B4A8CD405,
+ 3FFE8EE77F46A343C6D7464E,
+ D02263425E49C20B4A8CD405, ); name = "juce_audio_devices"; sourceTree = ""; };
+ 9757775CBE25913D73CC0497 = {isa = PBXGroup; children = (
+ 05F4C8ED36A49DC106309AB3,
+ 76F731D0553785FDCEC0CCC4,
+ A9819750A6C5E908DBE3A309,
+ 865CC068EAD0A9E54C77BBB1,
+ B9C392935DD8F5D8D0ABCF2D,
+ 4A46906896AD28D34B0218F3,
+ D4F1502ACF6109D1AA059455,
+ D1E81EF119824692C769695E,
+ 8DAD27599B4D76AA741E2F94,
+ B2015E328522144C463397DC,
+ D69A8DC089FEB04DDEE6E9AC,
+ 9F0CD34B5E00755ED32C633A,
+ 7352B3C338D6C18D80BA03B6,
+ 8A974C1E78DF69BEDF4760D0,
+ F9AB49CA88C89C26093CB1B6,
+ D2B02C379123F7D621B82B6D, ); name = private; sourceTree = ""; };
+ F5D5BB6522B49CA562F51654 = {isa = PBXGroup; children = (
+ CFA6A67D8C7733249ED7FBC5,
+ 7533170247A4B5A10D70246B,
+ DFD83A7CDABE2CC9D9D29FEE, ); name = protected; sourceTree = ""; };
+ E9CFBBD9D25BB5B176CDF2C1 = {isa = PBXGroup; children = (
+ 9757775CBE25913D73CC0497,
+ F5D5BB6522B49CA562F51654, ); name = include; sourceTree = ""; };
+ EB3E75FE4B4092D4E0F0DAEE = {isa = PBXGroup; children = (
+ E9CFBBD9D25BB5B176CDF2C1,
+ F0BA9CA48CC49E14CB65B10A,
+ DEE913D46DAAD878430264D6,
+ 3067E2B75D1E66CAC8DD65C0,
+ DA6680F2E017C1451B8B3E09,
+ 8E841F589CA7AAD4294FD631,
+ 1C024E345C38DCAB8D0BE6F9,
+ F40688B881E38D0CEC413A0A,
+ 9415AEBC23728926E143CA87,
+ 1520C6D07978AEAC58F684F8,
+ A4D97A4003659632818C71FF,
+ C09EE24431A651C996153ACA,
+ F4259584E00B36526D5CFB0A,
+ 7C164C4F47469F58BA6DCDD5,
+ 352E7E01ACE857617C20A3E1,
+ 04185482CCC0316BF46B2DC7, ); name = libFLAC; sourceTree = ""; };
+ 0805213889487A2742210837 = {isa = PBXGroup; children = (
+ EB3E75FE4B4092D4E0F0DAEE,
+ BF1E8D386E1C71322F7B6321,
+ 20E50B7CC91B87CFA1CC8C17,
+ 44ECB2E8A37E35CED1BDEB44,
+ 505900B3A9C3E0EB350784F1,
+ E87BA58A31E5AF84D1819E1C,
+ EA7F1EB1FFEFB4937039BFDB,
+ 5C843AB1BC6467611517390A,
+ ECB315B1E096D167076B058A,
+ EB6CAC1FED2456D7379245AE,
+ FEF8D1DEC14F53F54985AB63,
+ D9C96A95268D1705E5EFD77F,
+ 609A9DCD9B58779BFE402BBF,
+ 580B644027718870A081DC4E,
+ 96F7798575656A87A58107DB, ); name = flac; sourceTree = ""; };
+ 03B2AB59731F1D4B023E947F = {isa = PBXGroup; children = (
+ A5824D06228D6B5120269F73,
+ 287298405BC363E9C2492200, ); name = coupled; sourceTree = ""; };
+ 248818D57818EC2B730C97C6 = {isa = PBXGroup; children = (
+ 23063052109C21CA6277AA4F, ); name = floor; sourceTree = ""; };
+ 3F92E50B3ECB054A3591BBFD = {isa = PBXGroup; children = (
+ 5FDD76A98FDD6FAD2CB88606, ); name = uncoupled; sourceTree = ""; };
+ 432F46B575D3DCDC58365CD0 = {isa = PBXGroup; children = (
+ 03B2AB59731F1D4B023E947F,
+ 248818D57818EC2B730C97C6,
+ 3F92E50B3ECB054A3591BBFD, ); name = books; sourceTree = ""; };
+ 124299323D71100AA977C9D1 = {isa = PBXGroup; children = (
+ 04874C168F8DB8B3661AE099,
+ 8818BE9F1A26A6F0393DF753,
+ 2E667E8E327AB96B7E56BEE3,
+ 7F615DFC87CDB7F78660077C,
+ DB9E8BE921489285C4B9ED99,
+ E94CBCD3B3C4F726DDC7145E,
+ 9BEF8EED62BFF46A514824A2,
+ A0DDE4018BE50F9FF0F6D4DB,
+ DDB3B7DDB5B4F5D87CBA6C65,
+ C91DD17FBE7A7541E7787987,
+ 8C99020753B8736AEF7D04D0,
+ 661EF1C85FF1D2B6070163EE,
+ 18319D005DF6998885AC677F,
+ D93AEDCD9AA6F35A008C6B10,
+ 28EA90843E65FB432CDF2329,
+ 346470CBB2B9F42E9CB6E7C0,
+ 948A5AC343109E364FF586C0,
+ 378D773196595D931B25B784,
+ DE2F36F94C5AF00C806A885D, ); name = modes; sourceTree = ""; };
+ 59143ADBA1E2AF2EF808FD85 = {isa = PBXGroup; children = (
+ 432F46B575D3DCDC58365CD0,
+ 124299323D71100AA977C9D1,
+ 8056F5AAE245F445D1F5FA26,
+ 7B844571D08EC929B21A5ACF,
+ 43AF9A4E676708B5C9B936DE,
+ 22B33EA86FAB7366A914C948,
+ 096474E2642303EBBE13AD4B,
+ 69AC4DA97DAF6291FB4831EE,
+ 7E4D7F844737CE5D8C9BD1CD,
+ 3C03483C05460B67987EA712,
+ 322BA1353F7CA1DDDE9CAA4D,
+ 3C43BD70ACCE68D03688BBBF,
+ 6F4AE6971D02991BCC1B7F1A,
+ 70C841CF701E3FB91C81E547,
+ CDCF7C7420D481D45CDDBE85,
+ CE9B22F2034E803714CB8433,
+ D96E2FC22E02FEC19FAC3F75,
+ FD227C7F5CE97D9F54705672,
+ E51819C6E2E6881C993A9C16,
+ 3C5760CD990742E382358250,
+ 5CF0F5458B69B697F084D1CB,
+ B41BF21771B358856B2C44C8,
+ 5901AE44435BBEA1841F2028,
+ 8D9598B7B36DB4A8DC7F257A,
+ A7E2C39A7FF81AC0C2B0BB29,
+ D7C00C099F40E38AD415AD56,
+ BAE69D4E9ABF50B36C2844C9,
+ 084F07B2269A72130EDC450D,
+ E5B77FA0E883FC22ED9A07E0,
+ 813AE492EA6457096991918B,
+ C42467520EB918DFA024D0AF,
+ 83B3F4B22F3603CFF3199C33,
+ 1A9FEB70EB440AE3B3BE52D2,
+ 1ED66F4F7C1B6FA4369A8E95,
+ 5BD41E05243398FB26BC8041,
+ 62D3CBF544E4AB48E11D77E3,
+ 76DB19422D33EF95B030AF4F,
+ 76374244710CA4A53830D7E6,
+ BE1493D37BFED1206A196B23,
+ 424E6E480FA0C70D02DF349A,
+ 6C2B97454AB4AD2B7BFE0776,
+ 135A4D01694084A7B641D217,
+ BCF2751331F61000AA2E6D8C, ); name = lib; sourceTree = ""; };
+ 2F4C445DF466E73DAA904172 = {isa = PBXGroup; children = (
+ 59143ADBA1E2AF2EF808FD85, ); name = "libvorbis-1.3.2"; sourceTree = ""; };
+ 1D007C9159A56613F908E67B = {isa = PBXGroup; children = (
+ 2F4C445DF466E73DAA904172,
+ D8A792DD4E2CD58BDAC9BBFF,
+ 9FBEC2F41AEF630320F831AB,
+ 2EA29D7871008E52A033BE16,
+ CAF65D1EFDDC93B47321327C,
+ 4490CBDB4F5B394BC4C8E22E,
+ 0496A10293C6532DB2889643,
+ FFB390B0993D0BDD8DD46932,
+ 122B74F324719CFD9425A135,
+ 6C3BD063682D8A97CE28ED2C, ); name = oggvorbis; sourceTree = ""; };
+ 76167C852117860212C07E43 = {isa = PBXGroup; children = (
+ 0805213889487A2742210837,
+ 1D007C9159A56613F908E67B,
+ 1311A028E6551920CCB23899,
+ 2799B7075032596236A1A6C4,
+ 457AE3EFAEB98FE93CEB0ACF,
+ 0798ABC473768B7DA59020BB,
+ 434FD5F26F8F5052AA287287,
+ 64045131E5C2BA8A8DE951BB,
+ 7736BA69BFD6B79E44DCF9D6,
+ 41EA8B9F834209FF197ECE40,
+ D49A5F16D99EF86770359BBD,
+ 23C4B5A7859ACA959F99FDE9,
+ 8079D10F25DE8A660DFD7F97,
+ 6D105609475B730F812FE7BB,
+ 49D0C33F5968B4B16D73521F,
+ 46EA57BC815C91944C720D59,
+ 04B6090AAC1B334B1F121BE0,
+ 98536B7D7BF6DCCC121EF75F,
+ 0697A131C2572A76CBC3A2D4,
+ C0DD1473C48AEF7B3AB0087D, ); name = codecs; sourceTree = ""; };
+ 4955606C713F09999B822ED4 = {isa = PBXGroup; children = (
+ 84A04C8B8DE6E1C4FDC3F4A1,
+ E20191F0BE305DA483AE955F,
+ 810D7E7AC4E48A67AB84B75D,
+ 5AC1394BDDA0F1C11051F763,
+ E25FE62CDBD305515BE0E974,
+ ACB9D9A21F63B364C3E431DD,
+ 621C85154E8537D98DD550D3,
+ BAE124F36EE934FEC863965A,
+ ADD75823E8C98A3F7F299385,
+ DD1DAA35FC2A68363DBCDE50,
+ 6A88B631279A877CBF1EE8FC,
+ 914600CCFA720261FC69CCD9,
+ 64DFFD927FB3D86B97E36EF9,
+ 5289927ABB985AA0C17AFF50,
+ 200E7992C80ECC1AE74C9468, ); name = format; sourceTree = ""; };
+ 75D68641653904AEADEE04DB = {isa = PBXGroup; children = (
+ 441A0BB8FD08721B0768A41C,
+ 2B6844B8253422926CF12456, ); name = sampler; sourceTree = ""; };
+ 2789350038E8D9166DFD8868 = {isa = PBXGroup; children = (
+ 76167C852117860212C07E43,
+ 4955606C713F09999B822ED4,
+ 75D68641653904AEADEE04DB,
+ BCD101DB744482011FB7EA98,
+ F2CFFDE197B95A56FD3D2794,
+ 41B259559A84E4D37B411E9E,
+ F2CFFDE197B95A56FD3D2794, ); name = "juce_audio_formats"; sourceTree = ""; };
+ 78E92DC518143D98EB5F9ADA = {isa = PBXGroup; children = (
+ 3B27E4A68284DA2C27655D59,
+ 8ABBC420D650176FC816CA90,
+ D886F31628398C6418B6FBF1,
+ B4B445D0B8FF9D563C2F7F46, ); name = format; sourceTree = ""; };
+ 9EA2AF2B5A0CE721D5150106 = {isa = PBXGroup; children = (
+ C2F642C860D5E78D3E750E90,
+ C498F38B2EE41174DCA27032,
+ BDC3A2443CA7C4A197AA7FD8,
+ 898A95E0423C95670F8E00D9,
+ E1604416242DA5613762B851,
+ 281F71278F1CE0C02ECB2EC4,
+ FA489194866ACCE37578D4E8,
+ 8F577D253454A9B7795B976D,
+ 242A96C7860436DE347CD432,
+ 2D40263014314146060C284D,
+ DDF5573CB40B2B3D2F1DB780,
+ 38791AEE23AA4968433982F6,
+ 516684CBCB8ACBA9E44E4BFD,
+ A705E85372EBA8B0351E477E, ); name = "format_types"; sourceTree = ""; };
+ E63B8ABCE65C4254D9987CD9 = {isa = PBXGroup; children = (
+ 2BF8C1C0452AA518578E2262,
+ 8AF2D36988A56CB9C6068F5B,
+ 4A7C8B1D23E9B6B7CCC02741,
+ CFC449D448A0844857CA526D,
+ 74FB9B1CB018E5342E7AABFA,
+ 5E5B5455D01D68404DA760D3,
+ 242F542B9738479E885167E6,
+ 72E0C00FE7CAB47242F2B815,
+ 13C55E3F2AA2B95275CB050B,
+ 6602C5EBB2ADC3158B37B907,
+ 6820E5E02FBE26EDA1E814E6,
+ FFE735418137221B6EABF1A0,
+ 60DE112B177F465AF7ECD44C,
+ 83BA095FCF4E84B0AB0CF903, ); name = processors; sourceTree = ""; };
+ 7B92471FB5C0051679A2E95C = {isa = PBXGroup; children = (
+ 63690D22628914EA9BE61A6B,
+ BA06C53C74A8510DD172D631,
+ 70D730CB666E9D486B44A2AF,
+ C596B16782A9C4D0C6EB0BCA,
+ 4CCFA4612BCBD5FCEB6E02E0,
+ B3E818A7CFAFA880F238BCC8, ); name = scanning; sourceTree = ""; };
+ 4C967811E674D62EEA59D7E0 = {isa = PBXGroup; children = (
+ 337DBCFC0A462376DAFA8C3F,
+ 1EA1A059799CA880FA6E2ADB,
+ 2B83CA343CAE71BE4F5A8F8E,
+ 0B30452CA065C138233F99E7,
+ 12DF2FA1DB7312F834B0721E,
+ C35A0F1C5323F130D4A1108F,
+ 803335D3EDDD75FED2EA7864,
+ 27DF9F9857FE41EC6A51B601, ); name = utilities; sourceTree = ""; };
+ 15645B0CE83271714833C3A1 = {isa = PBXGroup; children = (
+ 78E92DC518143D98EB5F9ADA,
+ 9EA2AF2B5A0CE721D5150106,
+ E63B8ABCE65C4254D9987CD9,
+ 7B92471FB5C0051679A2E95C,
+ 4C967811E674D62EEA59D7E0,
+ 16DD43E629D9E32F1FE86143,
+ 0DBCD27DE42DAF64EF974F1D,
+ 6EBBA65276F7311BE0074812,
+ 0DBCD27DE42DAF64EF974F1D, ); name = "juce_audio_processors"; sourceTree = ""; };
+ F747D2293FF285B72185547E = {isa = PBXGroup; children = (
+ F77E277347DD30D380C5A3C8,
+ ABD0576F2543A863F5DB40E7,
+ 34A745BB4A935998D25D1E86, ); name = "audio_cd"; sourceTree = ""; };
+ 54CDB1F233E80FD4B106D216 = {isa = PBXGroup; children = (
+ 1737459117017D5BBEE069D2,
+ 0D6E37748850EAE66F9CA70B,
+ 184F543273935A63366BCA51,
+ 2A8F3A1F1C343D6EB025FDD1,
+ EC9D1EEB0DCF8551C0E70916,
+ 8DD3CBC5EFBC79EE967D57B6,
+ 80D2A754CA228BCA22EAFC8E,
+ 106C8F431770C832B77BFFD9,
+ E4223D79CA646F0E046E43B1,
+ 72FEC6F5671BA939439E0CF0,
+ B4679BF8D1848CC2C7698764,
+ 26B9B07C8F5E7214A9D5EA8B,
+ C2C938AA02C97A425ECF7926,
+ 4E55A9C84ABE776CCA556594, ); name = gui; sourceTree = ""; };
+ 8BA02E9DB3A1D973203FAE5A = {isa = PBXGroup; children = (
+ A4B659039C636AA90C05767F,
+ 7498ED1709143C20C79DB1E2,
+ 8A279F88C2047651F58628D1,
+ 1BD83CC88D6EA454CE3CC746,
+ 639AEE67CBD131D3D160C094,
+ 5D065FB649082368A82A4D7E,
+ CD4633C9F9DA366C76E4B92A,
+ 6D8CBDEA7BD024FC9E2875F3,
+ 75D8AD14EB3D9985A3770C83,
+ D848C25C312A0D62457C3730, ); name = native; sourceTree = ""; };
+ B52FBC4342C378AD64834F80 = {isa = PBXGroup; children = (
+ B60BDAD15C5339F96D367450,
+ 4A4FAB8C91193D662A4ACFEF,
+ DE703F44A06F45D75C122234,
+ 425B547B9020991C73D4D65E, ); name = players; sourceTree = ""; };
+ 1D9FE5BF60A6EF6602D24565 = {isa = PBXGroup; children = (
+ F747D2293FF285B72185547E,
+ 54CDB1F233E80FD4B106D216,
+ 8BA02E9DB3A1D973203FAE5A,
+ B52FBC4342C378AD64834F80,
+ 3665F1F2237ABB55D7614221,
+ 5F849E06BD0AEC3F3CA3803E,
+ C3E64B47D41D5364FA0CFDC3,
+ 5F849E06BD0AEC3F3CA3803E, ); name = "juce_audio_utils"; sourceTree = ""; };
+ 0ECB8B30B286A7116B5A863A = {isa = PBXGroup; children = (
+ 2D0232CD6B55510B10D2D04D,
+ 23E0BB729907E348A33E996F,
+ A285CB0E88EA469C72C4C086,
+ EBF51AE520FC44EE056995D9,
+ 012B74A5BAF1F975F4A0C648,
+ AEE9960FEFED454FB6DB18A7,
+ C237671BF283E95CF9F93936,
+ 35A297789A17E01FBE82827F, ); name = blocks; sourceTree = ""; };
+ CE23EF4195D4D47D4D94B87F = {isa = PBXGroup; children = (
+ 95DAFF093BC64C4E8AFFAD39,
+ E3455619FB6BC525C9407A6D,
+ F7E2CB260B70E401BF91E236,
+ 3E18E1893DB1F592952F6E8F, ); name = littlefoot; sourceTree = ""; };
+ 0DCCA6B5EEEAFC1D78D43812 = {isa = PBXGroup; children = (
+ 9118ECA920DB03C9623ACABB,
+ 4BE7254995C059C494538C70,
+ D18C4FDF34147BDD22C16EE2,
+ C4E4C2AD07EA064EB32326F5,
+ C3E4493CE69B1B931CB96EA9,
+ BB8D9E34C22532DC6AFDA9DD, ); name = protocol; sourceTree = ""; };
+ 500D3DB07F6230755D8939A5 = {isa = PBXGroup; children = (
+ 7C3158B229AE5B18BAD208FC,
+ 034E4F3996519B2624117798,
+ 8941D9AFE6BE0F15F8391874,
+ 78B2E56220F1F3D0E9C06FBD,
+ F1444750AF2DEB43BE2E1658,
+ 06EC101285EA08EEDDB65F87, ); name = topology; sourceTree = ""; };
+ 84EC8ECF8486B94F4750630F = {isa = PBXGroup; children = (
+ B3CD18208A4368D7AE29D706,
+ 1EAF33874D8D4F13676C412C,
+ C6A122F6B606753C30C30BD2,
+ AD7225D561558BAFDF65BBC7, ); name = visualisers; sourceTree = ""; };
+ 48B6293FB2A5EC097988691B = {isa = PBXGroup; children = (
+ 0ECB8B30B286A7116B5A863A,
+ CE23EF4195D4D47D4D94B87F,
+ 0DCCA6B5EEEAFC1D78D43812,
+ 500D3DB07F6230755D8939A5,
+ 84EC8ECF8486B94F4750630F,
+ CC7A625D7B7F517BC85C5578,
+ 193EE3A9C056FB7BFD83667C,
+ 243F5C11D97748ED03B760C6,
+ 193EE3A9C056FB7BFD83667C, ); name = "juce_blocks_basics"; sourceTree = ""; };
+ AAD6D4686EC957A745989577 = {isa = PBXGroup; children = (
+ 3B9D6C4308A396C6953A2B19,
+ CCA01BB46B276DA072718679,
+ E0A6645BF35A873306104E19,
+ 2E3883BEB89636D207BB88B5,
+ 02CE3CA00AB6A0E0C6EA7C45,
+ 3851E8BB5BD4F284C8489033,
+ F3E5F7DB01292CFF33EE3971,
+ E799718167E8643572309303,
+ F6F326524DED75455C217520,
+ 5660E3A821F2F566AAA0DCC3,
+ EE0075DEF550FBC64F7D8B9E,
+ FBB15A363BAC741113987D32,
+ 1655D2F156B917E893A29FEA,
+ 09BB66CFEE9A832CFCF2CCD2,
+ 53C70300D106400F1AF2C123,
+ 9ED1E59E0EDEB57492B8B339,
+ 47787A636075A669F8FFA434,
+ 0A268ACBB1D36A862A755465,
+ 255D982E8E88EC37AF5D58CB,
+ C7EE187163451061AE2A3153,
+ 2AAF0E53F74A1B4AD7B0684A,
+ 259D44F4C84C586F476BBA0C, ); name = containers; sourceTree = ""; };
+ CEBC87FED7860FF4F8EAFBBC = {isa = PBXGroup; children = (
+ 1A58C7E03F2C3D22E356E817,
+ 50FB808D07149E5872D146C8,
+ 08C26B85297999984DECB587,
+ 1896F7A05A4372B4247C34A4,
+ 4A78F089AF9BAFC1586AF196,
+ E4A7590FF79E8EAE3286C76F,
+ B945AE13CE5FA99C9B48D98B,
+ 9BAE8416CA03B3EE29D0DB0D,
+ 2E735512175F5ADD2853D83D,
+ EA01768CDAAD4D13D769C371,
+ 1DFD35C6D473DCAEE12C18DF,
+ 34B3D0B92C86C84AB27BBE90,
+ BE472B6711E509DE55C83D38,
+ 932D69952B622B2BCFB904AC,
+ 012EF1197FF04E76BD620071,
+ 97AD1E50A2BA5069A53B385F,
+ 3A648036804F8E2D52E5B60E, ); name = files; sourceTree = ""; };
+ 0FD30CF6F6B0DC38E6CBED82 = {isa = PBXGroup; children = (
+ B3C5E4089AD8803D08F9067E,
+ 6C3D05CB8D915E9E8C1286EF,
+ 78329D02001CA45058DCF1AB,
+ 54C8D084F87C2B0A407CB3A0, ); name = javascript; sourceTree = ""; };
+ CDDFF74DF54842375F1A11B1 = {isa = PBXGroup; children = (
+ 95521385B606A5AF9DC25621,
+ DC7062591F0E20788EDC379E,
+ 99670416B9C5B1427EFDC235,
+ 4D69C440B571531C56B12E10, ); name = logging; sourceTree = ""; };
+ 395D3401AF8861AE32D6B053 = {isa = PBXGroup; children = (
+ 3284EB2D81A682511A78D1AC,
+ A3913125232A72EF480476F2,
+ 6C0699AE325D1A41FB8CC560,
+ 6DE2EDC2238B94B55FA5167C,
+ 63B8C5F0192F2C0767C38B59,
+ 6D665D953ABA975CDB21318F,
+ D6A0E899C3D79A7DF75035C2,
+ CAF5049EC08F7E410AEDD901,
+ 8F7A2483AB8A87ED367B8276,
+ 07E12DE4ACDC0607DB48477A, ); name = maths; sourceTree = ""; };
+ 0BEC7E45CA53EEC113EC85D5 = {isa = PBXGroup; children = (
+ 56E56C2AB629F7288EFFDF99,
+ EF66F9A77305AAF55D3A8C7C,
+ B35985BF65A5735648F332DB,
+ A06FEA5708DBBF89F31BC095,
+ 296E767F3EC21EEDF71AACD9,
+ 3A5708787015E10D959ED324,
+ F8612CE49A62B80AD1612B78,
+ 6E77E7974D18C2A3889C94D7,
+ 818FAF2D047AE69BA11091D7,
+ C3104BD68827E3B23FE7BF51,
+ 4765710DC062B04830654235,
+ 18828011791118DF6440C6A4,
+ 72CC4E382F4DD97DE7D2265B,
+ C720BCE4770D82EE19B5E304, ); name = memory; sourceTree = ""; };
+ AAC33A3115E54835F98F0BF5 = {isa = PBXGroup; children = (
+ 9E742F2C0DCF21E717C69EC2,
+ EEF550D385BC7AEA1172FE5A,
+ D58546D794E5BEBD2F10412A,
+ 9A61D74797BF0F66E4942D15,
+ 448196AC5604B89ED7BC2086,
+ 518466F491B5DC8B80063C73,
+ 1B3FB995CF83C1B588F8F9BF, ); name = misc; sourceTree = ""; };
+ 162AA8750F236D0A456810BB = {isa = PBXGroup; children = (
+ 259877493D9B71079446749E,
+ E55BD37DA91B20BB60D8BC5B,
+ B50D99789F7F83360780022E,
+ 1DC75AA5AD6118F35371BDB0,
+ B5FE94B9AE535C0F0FA1D88B,
+ AE19C39D6B958349413E5F76,
+ 7ADB824594D23926754D9ABD,
+ D7AB3E868A90774E1FAFD51B,
+ 1758DCBCE1766DA3968BEC1F,
+ 0A7A9EA59E25C13CB9C14A7D,
+ FCC43FCAF92C64F580AA70C7,
+ 40096AE757FEA9F663BF88B9,
+ 2972426DAB18DB5F584BC1E9,
+ E48849E0B20A2D2B2391BD36,
+ D7303A04A2ED6BD0AB0D997D,
+ AD7FCDD3AC5EF4057B4E669B,
+ B37091252E2FC04C254016C9,
+ 177856ECCAE5F779DB31EBCF,
+ A4D2F92AAE55340EB431CF8B,
+ 3B63BB4D108A10D0C5FECBEF,
+ 6FC3B994387E6EDAF2BDEE75,
+ C1884E8D2D10F0AFEB1D87F3,
+ 228C128F3835E988917C908E,
+ A572695065599E9D922B476A,
+ 34A1D01D8C72A0B39C0CF6D5,
+ 0DA6CC35E4AFC202C7D5298F,
+ F21AB2745631CDDDEEA35B1F,
+ 02148EBC074DA2992CC96E88,
+ 85A0ABA6D4313DEAF9C7FBEB, ); name = native; sourceTree = ""; };
+ CCAEF77ED7D83EF2AC36927E = {isa = PBXGroup; children = (
+ B3A97D5DC77DB3FD2FC5FCEB,
+ 31F899D8732CEAF956AA7A72,
+ AF11A0E66EA77FF9F426CBDD,
+ 671BC724698C6A4A159738A6,
+ C5AC27F3564EF36AAFFAD703,
+ 190BFEB9E9811F1D73306F79,
+ 9EC497EFAB1C323884D011FA,
+ E2778AA90308DEB0DDB6C0DB,
+ 36D79F468C67AF3D0B800E85,
+ EFD32E4A4A81815891CF54FC,
+ B83449AB719AFDE057B9245B,
+ 170F6D425FF66C0388540225, ); name = network; sourceTree = ""; };
+ A465EBBDDD9E1BC6010869AD = {isa = PBXGroup; children = (
+ 601F5CB6345EC149C773CAEA,
+ E9AB8309552BD30792B23FCC,
+ D5EAF5AB7E64FA98BFCCA1A7,
+ 911142143AB852FE25C27BEA,
+ 785C1C92060466C4968202D0,
+ CEB18F1BEA68F075D50BD6CD,
+ 920EC1092F93EC048706028A,
+ 5247BE9855469B053C368F24,
+ 60200D25748FFB8436112D85,
+ 66AE29E32EB365E37B34FDD2,
+ BE27A021A21278415868C466,
+ C0DE626D028AA9B00127F9BD,
+ E08C436C85606AA1432C5C24,
+ 5329122490F95D7339752A4E,
+ 6509144104CFCCC2661C84AD, ); name = streams; sourceTree = ""; };
+ 0B417D1083D3F2FE398636BA = {isa = PBXGroup; children = (
+ 63B20B7D5AB4BA7C645F10AE,
+ 96B0988BE177AFFCCB353FC1,
+ 7C955BABA03F3EF1E19E178E,
+ 197D3D704A44AA39F3F92F1F,
+ 1E5474F79E3971C77F173C21,
+ 5AEA510A742A1D7BAF22EC41, ); name = system; sourceTree = ""; };
+ 38AEAA833C644AE23B5C335E = {isa = PBXGroup; children = (
+ 5122839D8D39723AA8BFBC70,
+ DE9704A65773501DE347230E,
+ 2440CDB6EEC69DDB25DABA04,
+ CCE2ADA7EF8B417B5D5EC92C,
+ 0138E84BEADF91E11BF423E8,
+ E280D05067385BEC1E3B4766,
+ AAABD4AE1DD0BB0519C4863F,
+ BC6DCFE13B8042F59C065CC6,
+ 4860027F79C430D081214B03,
+ 19482F63E164192F9C0CC655,
+ A427924174225CB14EA8B615,
+ 1BE918CC1F7F26F93A4B8EC1,
+ 4AC6C62FB545839E566D0FE9,
+ 1673C95BCCE19C8F4664703E,
+ 22B991F37C9D185AD22048F9,
+ AC8A8FB37E03EAD593C68BB2,
+ B92C211B36B75E20B97D094E,
+ C3891745EE7DBD352727B9B2,
+ 707DD628F538166D4733876E,
+ 78977B6BAB87C72BE8A6825A,
+ A9711C6C2B654B0B95C93ACB,
+ 6F6F12174D4A4E4D1266894F,
+ 5B9750AEC9BF60E5C75D6F27,
+ 8DE0F4ADDA1C7FD72763835F, ); name = text; sourceTree = ""; };
+ 5A7DCF104E61A11077F7F8B0 = {isa = PBXGroup; children = (
+ F9AF151A90E61714965D67D6,
+ C62BDB035997E471AE3096E7,
+ E61D74DA18777D3ED9B604B6,
+ 80A162921EA7B00DF95B9D1C,
+ D87D6545B471F09EF677902C,
+ 909C06CF037053D160E1D911,
+ BFB75579514FA95EADD75AC5,
+ 01F94B27ADD4198E3CC15C0B,
+ 2ED4E37632885A949CCB9BE9,
+ 63A0B0B37AAB0387A610F6AE,
+ 11A1987734275CA22120DD49,
+ B70BB65A467220F7972C4FB0,
+ 06BB9F1EBA1172275FE5413D,
+ 036AB53DA1FCBDB74F591CC3,
+ 5FFD4BC1A7EB346271391205,
+ 2F407D57D8476238C54F8112,
+ EACA2C832850D2A048AF852C,
+ 56A2B221F07582C3693CFABC,
+ 478C6A7FDD7B257654B67B59,
+ 044402CF33BF673FD4FE541E,
+ 418464056E84CF38CAE498FE,
+ FE9F36798B9C61600626D1F4, ); name = threads; sourceTree = ""; };
+ D3512F785BA120E54E63C04A = {isa = PBXGroup; children = (
+ 925360F7E3AA48D3AC8FC71B,
+ D8D329C0D501906C8E581010,
+ 7C22E5FD3C91AB34CB539E2E,
+ E30FA02A405F056C289608F5,
+ EA5D4A0F009B78BF824D7226,
+ E5578FB0E512495116B71F3A, ); name = time; sourceTree = ""; };
+ EC1FFFA5993CDB034E258369 = {isa = PBXGroup; children = (
+ C3CD93C748F880042436180B,
+ FBEB137F69B8A261A4B64760, ); name = "unit_tests"; sourceTree = ""; };
+ 53217A64F101B06C4D0167DD = {isa = PBXGroup; children = (
+ 684A7466DDEA4CA1F785AAAF,
+ 9AAD723B4A3EF1165901402F,
+ 8EE36E6294B0521F7F8FA4AB,
+ A36BCC5ED3A26F2E5592EE32, ); name = xml; sourceTree = ""; };
+ B5FF8EBFDC0215A766098119 = {isa = PBXGroup; children = (
+ 13B537AE02190300E0DA5322,
+ 857C1BA3AF5C0210A8711464,
+ 734EDE0CB353BEB637FB28DF,
+ D051EB3531C22746F7AF08E8,
+ CF0A728B82AEB2D5931DB6A3,
+ B213182B13BE510B8B96939D,
+ 303AA74F7D9B6F2E8804A2C1,
+ 4A7D2BA623D3A1DE6B99DF1B,
+ 0063493D90122A5E9F9000A5,
+ 0CC5574662C83E89FB9A4F6A,
+ 9F8A9B400F29F93177C13068,
+ 99D1B54C81E3B11E5A515449,
+ 81F5049B4903492A6902FAE3,
+ BD2ACF51D2EDBB8D946C168B,
+ 6C75E5D335754A26EDB64C0E,
+ 321F587832C3C6C024BDD0E0,
+ 62D3C5C70DDBEEE7E16DD1F3,
+ 9621212C05067BDBB1EDC4B0,
+ 699EFC7DCE06711BB6C07F36,
+ D2785AE695E6FDF8147EEA2B,
+ BEE43FF11F7D88506B3B6E90,
+ C1474E839569EDA193F71BBC, ); name = zlib; sourceTree = ""; };
+ 95659821E46C968DB6384EB1 = {isa = PBXGroup; children = (
+ B5FF8EBFDC0215A766098119,
+ 132DA30E80054A4CB1682F5C,
+ A66CEA1922F1866BA9A10592,
+ 3228E413B22DEEBDBA7ABF83,
+ EAB8F9E9C69FDA9046914C57,
+ ED351CFC37C81F20B6D6B01E,
+ 7433092862D26C58AF93AE62, ); name = zip; sourceTree = ""; };
+ 5CC42EF0177D6F44F26F0570 = {isa = PBXGroup; children = (
+ AAD6D4686EC957A745989577,
+ CEBC87FED7860FF4F8EAFBBC,
+ 0FD30CF6F6B0DC38E6CBED82,
+ CDDFF74DF54842375F1A11B1,
+ 395D3401AF8861AE32D6B053,
+ 0BEC7E45CA53EEC113EC85D5,
+ AAC33A3115E54835F98F0BF5,
+ 162AA8750F236D0A456810BB,
+ CCAEF77ED7D83EF2AC36927E,
+ A465EBBDDD9E1BC6010869AD,
+ 0B417D1083D3F2FE398636BA,
+ 38AEAA833C644AE23B5C335E,
+ 5A7DCF104E61A11077F7F8B0,
+ D3512F785BA120E54E63C04A,
+ EC1FFFA5993CDB034E258369,
+ 53217A64F101B06C4D0167DD,
+ 95659821E46C968DB6384EB1,
+ 15494D9F18EC8265BBB4BA44,
+ 078D0122C02815C45F14E220,
+ 4EFDE9EEDF6DA6E5A066F2DF,
+ 078D0122C02815C45F14E220, ); name = "juce_core"; sourceTree = ""; };
+ 9D7B25358BD5C5AA07B5EC21 = {isa = PBXGroup; children = (
+ 5D55C700506847B0C3E7992A,
+ AB86D69CE5472E765749D5E2,
+ 8195E5CA20B1E6DE88148B41,
+ 82CD7AB6C8788920318BFFF7, ); name = "app_properties"; sourceTree = ""; };
+ 93858860095307EE90AF2FCD = {isa = PBXGroup; children = (
+ E0CD810D85D163FCA2E05D6B,
+ 69571EA44314BEC40565D70D,
+ 0C59026808740853C23AE185, ); name = undomanager; sourceTree = ""; };
+ C91FF17401D512FD0BC96A03 = {isa = PBXGroup; children = (
+ 1CC0B58D7AEA47DADB041C96,
+ 9EA3A564C2056CABF6F64F19,
+ A3B3FBDBB67F69256BA6A290,
+ 3E7005B5E5C7E2B1EE1FEA55,
+ A31630141AF03CAE86F4228C,
+ 735B02968773FD74934EC9B9,
+ 9BEA281CBD5878DF1330C6E8,
+ 5236F7786FD9BFC43D9ABD94, ); name = values; sourceTree = ""; };
+ EE7F58530DF1E8A70FBA260B = {isa = PBXGroup; children = (
+ 9D7B25358BD5C5AA07B5EC21,
+ 93858860095307EE90AF2FCD,
+ C91FF17401D512FD0BC96A03,
+ 36AB1E409836F7CDCD24CE58,
+ 60D50FA5390DEADA129CBD25,
+ BA5EBAC0C16D620D37B80143,
+ 60D50FA5390DEADA129CBD25, ); name = "juce_data_structures"; sourceTree = ""; };
+ 6C45D7ACBD9C3F8D5B5527AD = {isa = PBXGroup; children = (
+ 1FF09BE12A8EE7359DEB6A11,
+ 72D97C35265816BF84B17A64,
+ D07C119AB16FE4E41B441B71,
+ D2A1AACEFAB1D922788314A6,
+ 4E93F48CAB3C538054B0D9B6,
+ 67EE78D1C669F6DDED31CB39,
+ 8646E594783C3E937A259EEE,
+ 10AAEECABC6BA65A3D2C4933, ); name = broadcasters; sourceTree = ""; };
+ D70DFE1F0FB32A198928B375 = {isa = PBXGroup; children = (
+ 77E856C4EDFB5608F03EBC99,
+ C6144891191A6E1C95E21A25,
+ DFA0BD689C1C350DD66B8F10,
+ AB90BC12E5EAC2E1A7FDF691,
+ D67495EC058C6FDEB8C0FA6A,
+ 148AC48B82DFEC98FECBF5AC, ); name = interprocess; sourceTree = ""; };
+ 80EEFAF487889674F6EF1583 = {isa = PBXGroup; children = (
+ 2317A757B8847CE1AE30010F,
+ 8221F414FAE8FBF996CBF033,
+ 676856EAC9E9FFB013E6B910,
+ FAF382A2237B019DC61920B4,
+ 66FEE3D850AB3A3D9FACAAE5,
+ 42D58F7C9468DB8F354B353F,
+ 85D8D664D73759C455C4E8DC,
+ 0A986A71F3920D38E7D88F58,
+ 2AC4F829CD8C78F19827A695,
+ 41AB492EEF462863E50AF460,
+ 8559A01D9B969E13A40980C6,
+ 9AB6CB5AF2F228CAC1AE63D6,
+ 184CE8BA435703F28975DC5D, ); name = messages; sourceTree = ""; };
+ DB244ED32E405D91AA96D9C7 = {isa = PBXGroup; children = (
+ 5BC395EBD64E8CAD3F608735,
+ 41641B5371BDC760981FDF9C,
+ D1508B7542B04397ACF773B4,
+ 9B6A0011D68BE05B0848FD8A,
+ A212A98178DA800BC7104EED,
+ 104FFDFF6CC57A7630FB7EAC,
+ FA67F7DC71898AC7AD4F0284,
+ 86C53DA3976331FD98DF115F, ); name = native; sourceTree = ""; };
+ D2EB26DAED839AE88CAB724A = {isa = PBXGroup; children = (
+ B46FA7622255695A963FCEA5,
+ 3E176A88BA217ABC03C93CD0,
+ 4F2671111CAD35AA9A14E50A,
+ AFE49D942B97B2FE5BF6345F, ); name = timers; sourceTree = ""; };
+ 8B7CDF2D950588E762525811 = {isa = PBXGroup; children = (
+ 6C45D7ACBD9C3F8D5B5527AD,
+ D70DFE1F0FB32A198928B375,
+ 80EEFAF487889674F6EF1583,
+ DB244ED32E405D91AA96D9C7,
+ D2EB26DAED839AE88CAB724A,
+ 193954F9CF9005014377F9FF,
+ BEA1459932A75A2D6AAD4B43,
+ 55EFBD6183E831FBD8826325,
+ BEA1459932A75A2D6AAD4B43, ); name = "juce_events"; sourceTree = ""; };
+ C6780B6FBC8E601F934FC158 = {isa = PBXGroup; children = (
+ B2EA904753A758EA2A653D82,
+ 39B450967D7D7D4B1E1ECED3,
+ 7C137769611C5A269332467B,
+ 4DCF8D8075DD05492643A922,
+ 3B2A1B51E2C33786098AAE49,
+ 9209F549B676E740E0B83FF7,
+ 6A95798F17AF7D10D2677BD7,
+ F6EB5AF7554635EB441568FE,
+ C9EEE195FD4C2C90915219FE, ); name = colour; sourceTree = ""; };
+ BC17C7FEA1883ECACA434368 = {isa = PBXGroup; children = (
+ CE2F5008560ED985C0B8B5EA,
+ 43573D003FDD2FEA313A8B2F,
+ E1C8BA4CF79BCC3B0E758A9F,
+ 0EE7D572D91B088532018993,
+ 9FF679F47F9901DBEE96E2F4,
+ 703BF13C50FBAA0690EB819D,
+ 752759743BA54E6A4E34EBC4, ); name = contexts; sourceTree = ""; };
+ 1A35F54335F030EB7CED69E1 = {isa = PBXGroup; children = (
+ B087CFCD5381A67E8ABE789D,
+ BD7737BC6B7B6EE4AE3DD687,
+ 30845B589D24B592C853C93E,
+ 779FC2189E09A0B4A15C45F7,
+ A378497FA09036F13FA411C1, ); name = effects; sourceTree = ""; };
+ E3D96D5BBF636EF28DE616A4 = {isa = PBXGroup; children = (
+ 3BD3060E486C89B438B21F43,
+ 68C49A6E9109C5F448289C25,
+ 335219963DCBA3F85AC6C232,
+ EE16A3FB712E9DFB3EE0A875,
+ FC7AD77D53883AA7C906A6A3,
+ 80E4BC98EF30B463FCBF95C0,
+ 04C07E0DE8225D8E6F791D96,
+ 6E6A0A28D29F9CE5A97D9603,
+ 38034209A283D7F8D56B5E53,
+ D3B2CF92BBBABE4AEEC691A3,
+ C2585C4A959C4CBA76BCEE6C,
+ 9D45A965F9A8184B64460680, ); name = fonts; sourceTree = ""; };
+ CC3BF308E1C5E427BE3CF882 = {isa = PBXGroup; children = (
+ 21479ABF74938D58A8859E57,
+ B0276417E1FCAC6415FEC24C,
+ 16118DB20238C2B904A3FDA7,
+ FBA7E37B32790A96A06D3D71,
+ C4F45122F361CE23DDB32596,
+ DAFEB9CD6997FA5768A7DBA5,
+ D9BB56CF58E7421832148DEC,
+ C52BA5CFAC5D4DE4CEF2A51D,
+ E844B59EADE8FBB9804FCC9F,
+ FF4021F0CFBE14A6FD29CCC1,
+ 64E3E6EDAFEA1CE0C515588A,
+ 17B2AAE117564DA4933B70AA,
+ 2D2C6DAA3B50438E63266771,
+ 9B8C599BB498481CB64141B0,
+ E93C91661F22E59660A807AE, ); name = geometry; sourceTree = ""; };
+ E0D35A029E21EB7BA9064153 = {isa = PBXGroup; children = (
+ 40BCCE9C782DBAF6459C3EDB,
+ 9E8FB4DD69AA02041D70B749,
+ 38A03045629DB69AE42D4206,
+ 72300583DCD807FB8965116E,
+ 2282324E575678E8837470EF,
+ 770D1A48C625E77273E34C64,
+ F5CCD78E2928A6021051AEE3,
+ 11D3E71143E92D6D541C2E68,
+ F8B25FD2FE72F0862EDA70AC,
+ 0721D51684D1E4BEAF849793,
+ 271866450733C15873B1E46D,
+ C33F5E40671D8969529DC1F3,
+ 0A9B3441E4C766603206171A,
+ CF095321F298B5EBCC94F41C,
+ 2116BBCD560828B835577E82,
+ C91C155CE2FBFB917E03E114,
+ E8345B1296211CB1845D88C6,
+ 1BB1E8928FBEB3F72621F2F6,
+ 104CA8597373932F80F25354,
+ E61A0BF68D610DA6AB86F94D,
+ 906854E5A523A5B01E5B5E63,
+ CB01B5AD5F8CC26814C1FAE8,
+ 986D508D78EA59268FADE965,
+ EA21A9139BBAE2238DBB6920,
+ E40C81964A35DCBA5C07A708,
+ 69B3DA0D93EFA18D005D4BBA,
+ F4E74A5B357BA4EA4CEC0F13,
+ 4B28F11FE91DFD5341610403,
+ 5B9F3AC6C97B813BB96F9C07,
+ B2D8F96F3F4463D678951CD6,
+ 1B6684D65B3AF31CAB4D7B8E,
+ 3568F7E50F7858A1B6279DDE,
+ D9F59FD82ECF3FDA305537AA,
+ 4EDEDEAB7029C5B5C2A63A15,
+ 919C366862EB3C10E5850D70,
+ 8D5DB6220A070CA7C6EF649B,
+ 27957B112247D501D6B6FB8C,
+ A61B0324CAD4DE2A04ECAF2D,
+ 769FABFC14A17F7AC2BBC65D,
+ 9915EA36F2BC695AD5DA1FB0,
+ 22866A3227D44A6B5CF577F6,
+ DDE841F2D06B35620C95F7BD,
+ 3E17AE4B984D9E4083124600,
+ 3B4E0B86B77DC40F15FB3F94,
+ B6F1AD93847540736A7C3B96,
+ E7AAC5B8A3584327D2A77AE3,
+ EA2B74AE3EBD1A8CE6BBE889,
+ 0FBF55B74F1BFBAF8F670E2C,
+ 30E6F8EE669C2F151A9F2956,
+ 58880E117B1FCE6771ED958A,
+ E00E9055E0D461FBA65415F4,
+ F5AA13686E3E014FA127B57E,
+ E77ED2BF4E691CDA0BDF67E5,
+ 6A194777720E39F99CEBDE68,
+ 23E572AAE21BB03B019F07EA,
+ D9158BF72A9410721CF32E92,
+ 8853EE56290506D1C5B1A324,
+ 2D583C31EE6E9A5D8ACD988F,
+ C49F54FB785A0B5D4D41B6BF,
+ CE38F82B1484802D0AD0E8BB, ); name = jpglib; sourceTree = ""; };
+ E252C4CC79CD0D4A50359EF8 = {isa = PBXGroup; children = (
+ E92CA7282B750596908F685C,
+ C468BC4730E745AD31CA903D,
+ 3DFE53F6F99C7D51A8032CB1,
+ 9EB8EAADA992AB7525B04C57,
+ 6EB3442488752F0077F61CFA,
+ 20AFC08D3825F8F1EA4C4352,
+ FE6B0496C0CC7E25BCB6A277,
+ 80D52462F8B49C3D1FBB6349,
+ F9D767E4012A0A1ADD83A533,
+ 90EB80CDB45A0909C2ABDCCF,
+ 22A423BB04E0A3F1C2C3CA63,
+ A0B76982E47F6552E076C115,
+ 2F85284E588516584213B5F1,
+ C75E0D3ABA4599B591806B6F,
+ 593FDB1011C838F5CB25E6A9,
+ A8ABBA51A3DEB23F46A5EAE6,
+ 650E5906E5CAAEABABFEEE1C,
+ 3CCEB87B02CFD73B01FE5E3C,
+ F1CB294C66C69F817C9CDC1B,
+ DEBEFE952C92EE38B62CCBA0,
+ 2524470C265DC4C41D0F12FD, ); name = pnglib; sourceTree = ""; };
+ 16B6DDD69A3C6342C3ED929F = {isa = PBXGroup; children = (
+ E0D35A029E21EB7BA9064153,
+ E252C4CC79CD0D4A50359EF8,
+ E758FAA869708918584DA19D,
+ CEF6725F5E19BCCBFFE5EB68,
+ 0DA6F88B400D1BA27A9EF72B, ); name = "image_formats"; sourceTree = ""; };
+ 540901B179BD14810F98D941 = {isa = PBXGroup; children = (
+ AEFAF28C900A0DFFC5F6FD40,
+ 2FB361FFB25BD8EFB6160374,
+ 4D4461D4DE302DC06DE22D68,
+ 73EF2B898A07179D14B9EE08,
+ 215273F35854D93D4684F590,
+ 3AE6DEF29143AA3E59CEB1DA,
+ D67E60A34C5191583B542922,
+ 269A9F80899756D1F87AA82D, ); name = images; sourceTree = ""; };
+ 3C7EE0C47E42BE0F161EFB77 = {isa = PBXGroup; children = (
+ 2F03461E6CBD4354FE073460,
+ 45DD050BF036D8362025CC86,
+ 7AB01CF3ABEAA9948DC8E0F8,
+ 72D5B90B3F201DE61EFF5904,
+ 5C67296AC2E94992F244B1A8,
+ 5779480339AAA112A12315A1,
+ 59DBC804E4110F9FCDDAB23F,
+ 759D310E427CAB584332F916,
+ A7F8A897765E91543FF21D5F,
+ 6F4E9231B5C05BC368C3450E,
+ 490E933166E75FBF2163CAE0,
+ 84568194A9D160AD5459F013,
+ C19A71E5C01BB38E1EEA2110, ); name = native; sourceTree = ""; };
+ 8E26D163EE3DCAE501FEC883 = {isa = PBXGroup; children = (
+ F075BDDDD4F7DBB900BB457B,
+ 13F0C5C5B5775E09051D19D0,
+ 2B64FDC069A6D6C03128F3C3, ); name = placement; sourceTree = ""; };
+ FB0B308B3B55C9CE28D2A00A = {isa = PBXGroup; children = (
+ C6780B6FBC8E601F934FC158,
+ BC17C7FEA1883ECACA434368,
+ 1A35F54335F030EB7CED69E1,
+ E3D96D5BBF636EF28DE616A4,
+ CC3BF308E1C5E427BE3CF882,
+ 16B6DDD69A3C6342C3ED929F,
+ 540901B179BD14810F98D941,
+ 3C7EE0C47E42BE0F161EFB77,
+ 8E26D163EE3DCAE501FEC883,
+ 06497F2BEB751B1840F27F62,
+ 1F58F7262450884A7E6BEF4F,
+ D8A1D9C7F7B42C75598A385F,
+ 1F58F7262450884A7E6BEF4F, ); name = "juce_graphics"; sourceTree = ""; };
+ 1D45C78337A8A45497AF24D2 = {isa = PBXGroup; children = (
+ 93286547177CBA88A45187FB,
+ 0377FDB5BDD3EC08C3F83FBD, ); name = application; sourceTree = ""; };
+ CAD01FA6B80395085918D809 = {isa = PBXGroup; children = (
+ CBDAC7F54358B29D622C7659,
+ 398873B7F0980B7D27356464,
+ 3BEC5630096C646AACD87205,
+ C4DDAA034449093B3E5A60ED,
+ 02B1467586FBA8F5C471CDCE,
+ 215A5B82922A9A95F68FE7BA,
+ 7597CCE58D1B95FB4342EA91,
+ B327326ADE69CAEA4410249D,
+ 2736B4003A6B1E2AFB5B0F60,
+ 9AB80400C174A565798B4DC7,
+ C2B755C206D3AE7B0B4463ED,
+ FC70FA0EABE4EDF87260618B,
+ 7D272E58C41C4B21A689C487,
+ 54FF63024B2057CB82A3009C,
+ 0EC222E14CC7DADB74BE6E80,
+ 0C338FC94EF538E20E3BD3CB,
+ 7E4D2E09A56241058D485070,
+ 737EA145B8366E0A55A8D6A0, ); name = buttons; sourceTree = ""; };
+ DCF8B732A58C87567166A89F = {isa = PBXGroup; children = (
+ 26D37FF39DEC1AAD1AC03A53,
+ 2A28AB08780C76D52CA8D732,
+ 34A09EB72E861BC2E41CF66E,
+ 2C7B8BA92ACDE7200C096AD9,
+ DED4D4557567F40DCDA8340A,
+ FB87C64D7D673B76E4B5209D,
+ 4E8EA77D5F1F16096D60F3CF,
+ F5668D6CDFED46BDB46C2E75,
+ 6A84B8A22E5DA1A769CCC18C, ); name = commands; sourceTree = ""; };
+ FEA821AB5BDC38FC45CCFB0E = {isa = PBXGroup; children = (
+ 4840F2FDA6C6A3E0CA41FA3D,
+ FAB83E6CF91D59901CD87D9F,
+ 0E204D9C847CEC5AE4391ED5,
+ E39BFCA09C446A2AD541D66C,
+ 3AB83A04D08F2F329AB81AE1,
+ C5EDD0AB18A362054E8FE283,
+ 5AD9E3796F5E585A81810A09,
+ 3A795BC053BEA2428052FEBE,
+ CC485BE41CFF25257214B6EA, ); name = components; sourceTree = ""; };
+ BCCE53D07CFE5BBCF58B00F5 = {isa = PBXGroup; children = (
+ 31AA33CB3A5577B36EE0017D,
+ FAF5B61706BC2CD2EB68B550,
+ FF748D1941B41C1794A241EA,
+ C08E2831019572E220A71669,
+ 23C9352D9EEFA048506947EE,
+ 272EA32D51A8C8AD73A45D9D,
+ 76597C68627FE0AF43DEC454,
+ 1CF24016C5884A75DE865988,
+ 02633833709D15831BB6A4B8,
+ E4FE73FA8F2ADD14B7E7812E,
+ FD2C8067AE30B6CEE4CE988F,
+ 57BFD80A8E5673123D9004B8,
+ 5687068AA9A10610CCCAE92C,
+ A6722561E959322FC2D3F8D7,
+ DEB1AA246A3B2804C43992C8, ); name = drawables; sourceTree = ""; };
+ 306F1A4F0336750F6B01B5DE = {isa = PBXGroup; children = (
+ BFE7003BFA12C79A7E70E2F8,
+ A34E3CFE305D1CC76C0046C1,
+ A288992FC193721FE3DB4BD9,
+ 961B5BA203F6A096FC1D5221,
+ A02B644EE002D5CDFDBEB472,
+ A59CDBDDAAB25C0621DE2C22,
+ 5F2ABD15045B9C2D45BBB281,
+ 49294AB2D8C5CCBBE763EA04,
+ 98BD14DB6D84583B0A2138AD,
+ 599F21A262B43F26B31A0137,
+ 1A54156E7F0715AA90652992,
+ 75AA9C6E3FC6AAE881B93CA3,
+ 38448998E8030347F182B334,
+ 7BF8065AC65F92C392CDB058,
+ DF5C47F2732316263F27F35B,
+ 340EA1B2263C37EC8A7B6014,
+ 43BB607E9D1BC08AAF03B711,
+ 71E11286C74E10382B85CAF6,
+ 6E0317C6D582381E18F6FC28,
+ 5467983B508645F3246CADF1,
+ F49D80F0D4131FFEA98F85BC,
+ 3986436BB1332AA00187E0BC, ); name = filebrowser; sourceTree = ""; };
+ C4EB51DE075E129C945DD29E = {isa = PBXGroup; children = (
+ 3DE8B0B99FE443C92EE32CCF,
+ AD2E097A960F2A4A946CF177,
+ 687551D7CBDC73E3D249A30E,
+ 60001B432129FD5855629F3E,
+ 19CDD6C2AE371BE31174D5F1,
+ 78D3A157D1DCAB72DC7D4FF2,
+ 332586DA099D853A0202054A,
+ C8F3A77AFEF173C097EB08CD,
+ AB7710558CEE0A3C649AD2AA,
+ 0AA6BBC6867F7EEA5C10722A,
+ 1DCD9527835FD4771E959818,
+ 948ACEC6E5E7FB3963593D14,
+ 7EC2BB0FBA7BEC433B901162, ); name = keyboard; sourceTree = ""; };
+ 33C4DEF9DFBC1B0AC46194DB = {isa = PBXGroup; children = (
+ E2CD239EB674A987631C1F95,
+ D2F9B4B64C205F3461541930,
+ 8E607B1E70CF61A3B3F8B230,
+ D202B1DF5EEDD627489E729D,
+ 65E03D29E9BA76F1CF344B75,
+ 7B121FD3C6971459B5EC4DE0,
+ F83D0DB57AB2C58AA5FFCE39,
+ A9717066C7343E734BBA14A7,
+ 6259E41DD05DF414BFAEFF1F,
+ FA06D31009B123A360853CCB,
+ DA5417FE6CC33732AF61D3BA,
+ B29BA78743A8C82A8575D41C,
+ FB6917E81414FA81F7442188,
+ 2A1D123CDD681C79A4830CD9,
+ 5321E4A1DB897A2B7CF23AC0,
+ A02D981AD55D9C837497D9DF,
+ ABA533A5D4493250568E3659,
+ 1C14BD4230F9672D9AE44BFF,
+ E912FFD60443431073F49E05,
+ 97C4CF34A7B666E1076D8643,
+ D3BB46A0AFF947844690B42F,
+ E2D85F080ACAE32DED909D5C,
+ 2926E85AC4A3BDBC357DADA8,
+ 0DEF8B7D54BF56ED8569D690,
+ 3DA85B078D53F40F9AE66620,
+ 4581D33463D9A6F637E8CDD8,
+ 46AF0A703258AEE24688FE5B,
+ 5CD9180E4223F79C65313EF8,
+ B9C32654F4F4FBDD5B8D8371,
+ 134A859AAAD880C6CA78BA16,
+ 7890A2750EB787AEBCA75F19,
+ 7F5A0B43EA4CE0599C30637B,
+ 03AF279CB4C8AA1B917C9E6E,
+ F581127924048FE75A58A428,
+ 0BB1F767785BA329DAE91DBD,
+ 680095499A49102EF1B7F3C0,
+ 930DC0F3CD592DE7B6A6945E,
+ 5634188A865D1AED86FC1030,
+ DE56F99143A2BEF2EC4E15A0, ); name = layout; sourceTree = ""; };
+ C7F69DEF5735EE1DE8040CFE = {isa = PBXGroup; children = (
+ 49E68BE55F02C76D1A39B8E9,
+ 1072ED1E4C961324C65D3305,
+ 9D08A5F790FC71D1BE770D20,
+ 23543D16B95632B1C14B943E,
+ 0DE80059716B40D2D9BBEFC9,
+ 77F678CCA2C005969380CA48,
+ E8A878C2CE1A7EB1EEF6B92E,
+ 19BF72ABEB3B9D8D776744EE, ); name = lookandfeel; sourceTree = ""; };
+ 56D11FD66F31AAC989E14651 = {isa = PBXGroup; children = (
+ B435295F7A3969E6EBD4E9B1,
+ 1FEB7C2AD69F03FD21C04CD8,
+ 226BD1CCCAD60DBD0167568E,
+ 16E132B11E1648815CEFF729,
+ 716E7225D1FAE92136DDE91A,
+ 6ABDB6B3BC707D5EA4E754E5, ); name = menus; sourceTree = ""; };
+ 321D3D0E76FDD485F0E19A91 = {isa = PBXGroup; children = (
+ F053B1F18F39980BB1E8F98A,
+ 492DC3C535B73B14A707133A,
+ 276FEE4DBCB6806D06E959BB,
+ 1D0E04EA23573F4C5199DFF3, ); name = misc; sourceTree = ""; };
+ C746B6625833C2CEA0E19D07 = {isa = PBXGroup; children = (
+ 77847C660F3D9562BD1469FB,
+ E222435250E8A57C88E441F8,
+ 721BC1EF4670F969B327BCFE,
+ E6335D36399077078BC78ECC,
+ 060D039A8903F16757040051,
+ FD456DC8A0AA86BA70897D1A,
+ 4A65ADBD6816BF0C9FE56E0F,
+ 57436F09E9FE1CB619681DE1,
+ D0F5CD629E1D7C466E87A7E6,
+ 15BEE6B9299B0E97F16C07D8,
+ 7BD3D12701E20AD0509702C5,
+ 31531D45E19AEC8E3EC90C90,
+ 13ECF6CF71CA92E4E1F845C6,
+ EA1AA20402977B302BF5D363,
+ C9F2ECCBC4868DE614C90303,
+ B3A5905404A72FDE0888DF46,
+ EAEA770719580DF72D030505,
+ 66AF1158C662CB915EE1F216,
+ 0E4C2A01524E87834E2FB4B2,
+ EEC74F1DE224D270462503B0, ); name = mouse; sourceTree = ""; };
+ 34C8BBB7ADCBF087368A0BBD = {isa = PBXGroup; children = (
+ EC7D9B630F5FB46258974133,
+ AA1F66345AFB2EFA32855F27,
+ 46A6F1936584ED15D40366DE,
+ E5F14F3C17FA5BC721CF06CE,
+ 5ECB1585CB10B6336F35039E,
+ 06B84EC6276C82A50AA87A78,
+ 137382482B888F9A1245CB52,
+ E4E4B644F52739096EC9ED59,
+ FC25CF1063C88216E3462839,
+ 2973E5E96EE07B12B06E4901,
+ F2070BC848C05F66E134D7E4,
+ D4C6A262AAC6CD01030A56FC,
+ D81D661338436E213B25F8BF,
+ 0D5C830BBE28DBA8795B10DE,
+ A07531AA213977EA9B7ABFC3,
+ 12B073CF9C72D46B540CB899, ); name = native; sourceTree = ""; };
+ 699393ECB7C57E463E608EEE = {isa = PBXGroup; children = (
+ 7E5C701836EE0E311AE805B7,
+ 1CDA4FD4B1B51222AEE6DCA2,
+ 04E0627AC999CE642D9009F5,
+ 01B2BABD6C54666254257CF9,
+ BE531AFED218010571C90AAD,
+ 2F6F34739BCD0348BAC4D5BE,
+ 35656731DCD6703896CEE2E8,
+ BC2B18695DB1F8287E5CD7A4,
+ 2C126377CD039D5D20DF0090,
+ F18CEC0613E333793CE487D1,
+ 6B130B8EFF75E1ECF0E20F21,
+ 731A4FE5C9250FE1D83D2008,
+ A79EA78DB02B7098DE470DC2,
+ ACBA16D63E4470083B7CE29D, ); name = positioning; sourceTree = ""; };
+ E0ED8FECDD5ECEB822B913E5 = {isa = PBXGroup; children = (
+ 7F0EFEADDCDF0B8C3BD1278B,
+ 263C2C63172A2793CE67D3D4,
+ 9F8621A060D21CD4F8E52082,
+ 04D3FE9C1AC2AB770BFFE0EF,
+ 5FEDA06DD9D390733743ED0F,
+ A0A4D1CCCA84F1D6EC92D442,
+ D62EA842B44315CFBCB24BCF,
+ CEB10C78DD0C1F9970029F25,
+ 40C17131B384BEEB66A4FAB1,
+ 28DC9D131B0DAEB78CEA016A,
+ CD768752C091A375ADC708A7,
+ D81B4D2BFB753FFD2D6F3AF0,
+ B62F00B50AC42FC2DC1ADEEE,
+ 2FAF11C9F6C314A36C879445, ); name = properties; sourceTree = ""; };
+ EFB162A49E91B2A648212C14 = {isa = PBXGroup; children = (
+ D403908B6B803FA4EF5BDBBF,
+ 67606EF1CD1DDF9D69C93DFB,
+ F72B09FDE33658D77B49C7A6,
+ 392CEE74B1D96166F05D02D9,
+ B22A37C8077912A763F8FAEE,
+ 34A1DB27664840651D853100,
+ 093309B3FE42407C9C80EB2F,
+ B979BF385FBD2717200311E7,
+ 9851670A2A94D090ABDCD8EC,
+ F392A87E5AE1D4D390FCF488,
+ 4C9BD4A188792CD1AA04D76E,
+ 976DD9AF4615787148AD3141,
+ 86A4BD370ED34FF4CC252A18,
+ 2F7EBCA1222D6D2E4B89FC2E,
+ B000E9B383585F14D4106B33,
+ 199FB84B17D7610C48A08C12,
+ 451702B185B088648F14A833,
+ 25616CCE492D37070C5FCBFF,
+ 2EA0BA49F0FEBB8B4BBEE3E0,
+ 0F40FDDE37B6B63FEA333F05,
+ E24521953703852377A32D70,
+ 4846DC8E7DFB0B17B0FCFF60,
+ 4307B791E5DC631C9447D24C,
+ 641322D5C3949AED6682C101,
+ 814F764F531DA3B45B982764,
+ 9EBFDCA556AB40E02BC2D3D9,
+ 6FC15D6A4868FBA38C374110, ); name = widgets; sourceTree = ""; };
+ EFFEDEC35E4A38750F7CB582 = {isa = PBXGroup; children = (
+ 4EECFA337A245BA2F32FDE9C,
+ 90168C92385FFFE93633DD25,
+ 2E7B68565DA034DDCF34573C,
+ 6FACB6671DF178C374D288C3,
+ 531078615D14BDA90A50AA53,
+ B4E737B45F3090ECA81D34CE,
+ 9A798AA0771301D879ACA0E6,
+ 6A5C7073E616E3C027C7298C,
+ B58ED38442F322226E81E930,
+ 8E25DB9F4F02D1EB553DD954,
+ 9D86489534874805E5005BEF,
+ 7C145A4C116A743CB8D0624F,
+ 031D1BC4C76359BA17663E17,
+ A49C327EA3CD090C4768925D,
+ AF000B66A6C3683AA30FFA85,
+ CB6596103EE0B3579B8D2C3C,
+ 8033E71C6724106F16F7FC35,
+ 678100D85EB6578B7390BE6F,
+ 33FED0E86133FA3439FCA42B, ); name = windows; sourceTree = ""; };
+ 54AC93CB6D9A615C39CB06B5 = {isa = PBXGroup; children = (
+ 1D45C78337A8A45497AF24D2,
+ CAD01FA6B80395085918D809,
+ DCF8B732A58C87567166A89F,
+ FEA821AB5BDC38FC45CCFB0E,
+ BCCE53D07CFE5BBCF58B00F5,
+ 306F1A4F0336750F6B01B5DE,
+ C4EB51DE075E129C945DD29E,
+ 33C4DEF9DFBC1B0AC46194DB,
+ C7F69DEF5735EE1DE8040CFE,
+ 56D11FD66F31AAC989E14651,
+ 321D3D0E76FDD485F0E19A91,
+ C746B6625833C2CEA0E19D07,
+ 34C8BBB7ADCBF087368A0BBD,
+ 699393ECB7C57E463E608EEE,
+ E0ED8FECDD5ECEB822B913E5,
+ EFB162A49E91B2A648212C14,
+ EFFEDEC35E4A38750F7CB582,
+ 20352597FF0FD0A4B487CCFC,
+ 7CA69469B3AFC9137FB98243,
+ CD9017D48D6C56C7D57426E8,
+ 7CA69469B3AFC9137FB98243, ); name = "juce_gui_basics"; sourceTree = ""; };
+ C30D3AF040D73E55B642D612 = {isa = PBXGroup; children = (
+ 7F81AFE4D54AA74B17E81899,
+ C6438C01636AC02F3ACEF42D,
+ 00D6F7A03576F399711D5ABC,
+ B86B55CF411F403FBE6EDD8B,
+ 26083ECFA60A676C6365DA3D,
+ 4D84F3F6235C49D0ABAF4885,
+ 8A9F1BF21DEC92A64F468E9C,
+ 9DCF20D6DD5D63567ED73A68,
+ 5E0AA1FA0367D0B8D32A5FDB,
+ 52C4BC3D28F8184BC2F6B022,
+ 6F303FBDC38398256ADA7BA7,
+ 4A7DB9A482CFE6B1FCCA6174, ); name = "code_editor"; sourceTree = ""; };
+ 6C8E42821ED5F48D5E1162DF = {isa = PBXGroup; children = (
+ F312C15C8FF357815A5D852D,
+ 6897A03FBCF6F3E3FE02DD69, ); name = documents; sourceTree = ""; };
+ 175807F9D449A924A35D7995 = {isa = PBXGroup; children = (
+ C438A00F7FAE0D151BC99D0B,
+ D1831592A88B72CE43CB9130,
+ B6C06A491AB738501ACC77AE, ); name = embedding; sourceTree = ""; };
+ D77358461927DD290D45860D = {isa = PBXGroup; children = (
+ C6FFBF028815A3D4D197C1ED,
+ D1C39914B1CDF9FDCF40F03C,
+ 7991C45FB3CCD45D46A7EBDE,
+ E30A6EED52F978044DBCB34C,
+ 9CD5DB53DE796873DC2EE4E0,
+ 9DB368AB3A1712F5E741DF8E,
+ AF4D1F728B7B429CBDEDC468,
+ 541BEA0E11518594C696094F,
+ 27609A10FE09083D4C31AC75,
+ D7BEC4451FBA09761F065B12,
+ 515145EF420E45BB7E0402C5,
+ 9C2237E651B7A187DCBB75B9,
+ 78655006F91EC8E5C99A6991,
+ CD875963C6F9C05BA11A4AC9,
+ B19D61C3D2D7BF60030FD1E2,
+ 48FC93C2649A6B6B478AB4B8,
+ 77D91228977E55D6C4D6C97A,
+ A6EA6620D7460A9405F56693,
+ 54EB9618ADF1901432C2345F,
+ 40B2DF2617C73C0928FF7D93, ); name = misc; sourceTree = ""; };
+ 181AFE89615BD447AC837B49 = {isa = PBXGroup; children = (
+ D71710BA7E52689EBFD91588,
+ 7A5FADFA9A6CF71D5D2B9FC6,
+ 36CA5FBB8A3CE191E952D894,
+ D76F72244214BDDDB9C1D42A,
+ C19D89C56696F5747C298985,
+ 816E973AAA295DE63DEBC95D,
+ 4C512E6E088C4B973E866756,
+ 529810AFE34B3B173DF7E89B,
+ E2760CFD55AAE533FAD166FD,
+ 58C7100720C49C23EA841B13,
+ F80A4EA6BE0D985876B9D4F4,
+ B107BF03016269AF7369630B, ); name = native; sourceTree = ""; };
+ 62BBDE7395E0E3796E989B57 = {isa = PBXGroup; children = (
+ C30D3AF040D73E55B642D612,
+ 6C8E42821ED5F48D5E1162DF,
+ 175807F9D449A924A35D7995,
+ D77358461927DD290D45860D,
+ 181AFE89615BD447AC837B49,
+ 416061525348EB462B1603AB,
+ FCEA59DF5F16B5921093D94E,
+ BAF64118ACD931F4A899D18E,
+ FCEA59DF5F16B5921093D94E, ); name = "juce_gui_extra"; sourceTree = ""; };
+ 564E35379D5589270D4653A0 = {isa = PBXGroup; children = (
+ C29CB9EBB689083DD7D99F54,
+ 64E5B84F1FA947FA88171033,
+ 2BAB647B7DA103003A8A11AE,
+ 656121CD59DA8E95455ABC28, ); name = geometry; sourceTree = ""; };
+ CDC14C396BA572BB165A74EE = {isa = PBXGroup; children = (
+ AFDDCF42011A661D8A965550,
+ 604CC1744C3DFD07E43F6A82,
+ 4227DAE98212844575D0D944,
+ 2BC6A9CE84273433047F4C50,
+ D2CEF899F0C7DBD82CF4E7C7,
+ 007566E450CC50CB63D1C11C,
+ DB116314BC85AB60708C199F, ); name = native; sourceTree = ""; };
+ 3A941A5B0BD465C28238ECA9 = {isa = PBXGroup; children = (
+ 3E2249E2AB8DC6FDCC87F9BF,
+ BCBB30471154DD69D59BEBE8,
+ 23DAF49B90FB33BB97015CCA,
+ CDA6D006DEE688324E2540AE,
+ 0B3FBA4C1CFF6D65E98AEFE1,
+ D2232FD5C2B1A361C7240C8D,
+ CED32466B0978556B4914463,
+ DEE463950B10373AB5BF1415,
+ CF632EB4950A71EC56190E3A,
+ 0717F6008681C056FF92AE41,
+ 3A56A49F2C3025A4E7E74C35,
+ 75F17FFBBC74680724103F2C,
+ E9DEFB9A762600C429F59B02,
+ 108582FEE483C0EAE1FF767D,
+ 30B2BDB16DA4D564F64D5CC7,
+ 289FA55DC2B007BF300AA35E,
+ 713A0BDC7ACC4F399C378A0D, ); name = opengl; sourceTree = ""; };
+ 8FF38470A066ACA3CCA5DDE8 = {isa = PBXGroup; children = (
+ BEB701ADA012A1394ACCDD18,
+ 64F35E547771BD3A4ABFDB0D, ); name = utils; sourceTree = ""; };
+ 202A764FF05218C5841E9086 = {isa = PBXGroup; children = (
+ 564E35379D5589270D4653A0,
+ CDC14C396BA572BB165A74EE,
+ 3A941A5B0BD465C28238ECA9,
+ 8FF38470A066ACA3CCA5DDE8,
+ A6C807BA364341686874B1BB,
+ 60EEA5E3658D36513E1A25FD,
+ EC98B82ADF1187D4060FC49F,
+ 60EEA5E3658D36513E1A25FD, ); name = "juce_opengl"; sourceTree = ""; };
+ C46BAD19056C6AFCB61C8747 = {isa = PBXGroup; children = (
+ D50B2337B08D012224137BB2,
+ 6D10CDFC1618B6213AFBE599,
+ 2789350038E8D9166DFD8868,
+ 15645B0CE83271714833C3A1,
+ 1D9FE5BF60A6EF6602D24565,
+ 48B6293FB2A5EC097988691B,
+ 5CC42EF0177D6F44F26F0570,
+ EE7F58530DF1E8A70FBA260B,
+ 8B7CDF2D950588E762525811,
+ FB0B308B3B55C9CE28D2A00A,
+ 54AC93CB6D9A615C39CB06B5,
+ 62BBDE7395E0E3796E989B57,
+ 202A764FF05218C5841E9086, ); name = "Juce Modules"; sourceTree = ""; };
+ 570059654CA1868864255660 = {isa = PBXGroup; children = (
+ F8B3AB36958E31EB6BDD2ED3,
+ C0CE2DBD3E07E03623F29618,
+ 5D4BEFEC0E129949C58876DD,
+ 1559C4DCC579423B1A05CF89,
+ C8FBA54671860CB3636D7A76,
+ 460CE4619594A71E9BCE42A3,
+ 830F7516AA78496143854C16,
+ 7BAF11556203D550CE5E1560,
+ 9B6EFF388E31F7E480380796,
+ 993004BB53091A0FBEB0E418,
+ 787FCE42F8EFF4F62B69363D,
+ E6D09BB9A4D7592AA53FA63C,
+ EF02685FDE72675F4B750650,
+ 5D456364DF7A1A1C1CBCA1F0,
+ 0BB1CC68B7BB505B480D6174, ); name = "Juce Library Code"; sourceTree = ""; };
+ 1E12EFB6B9C7E4C3C84DDD09 = {isa = PBXGroup; children = (
+ 2FB1B8992C3497C5EFE0EB53,
+ 850772CD6A8E69EACB89CB02, ); name = Resources; sourceTree = ""; };
+ D42221B44DA511070878FD61 = {isa = PBXGroup; children = (
+ 3ABF91F41A610658F5B17523,
+ 230ECC5997D02F79080DD55D,
+ 0726638325182847094ED297,
+ D4DA6EE18C4F580FC8A220B8,
+ 88A4EE2311F2D063677B1822,
+ 8F72A06310DEB2A6E6A0DA18,
+ B5A57064DFB2BD47270A42E6,
+ C48524BD8330E2A4710D99FF,
+ 71386FCE19C79DC74F1623FF,
+ BF4AF0A830706A80B2D1ADC5,
+ 6D2AA08C51674AC355C3C4B9,
+ 849DD96FF7656F52F1972F38, ); name = Frameworks; sourceTree = ""; };
+ 601DB48110F08969733B9EF6 = {isa = PBXGroup; children = (
+ 00558AF4AA37DD00B15B21A8, ); name = Products; sourceTree = ""; };
+ 5D6DAC6A0A862ED325F1DB34 = {isa = PBXGroup; children = (
+ C09481DD2BAC5454AB6D8772,
+ C46BAD19056C6AFCB61C8747,
+ 570059654CA1868864255660,
+ 1E12EFB6B9C7E4C3C84DDD09,
+ D42221B44DA511070878FD61,
+ 601DB48110F08969733B9EF6, ); name = Source; sourceTree = ""; };
+ 393AB3EA96DA8E7AEC86AD00 = {isa = XCBuildConfiguration; buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
+ CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
+ CLANG_LINK_OBJC_RUNTIME = NO;
+ COMBINE_HIDPI_IMAGES = YES;
+ CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/build/$(CONFIGURATION)";
+ COPY_PHASE_STRIP = NO;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "_DEBUG=1",
+ "DEBUG=1",
+ "JUCER_XCODE_IPHONE_5BC26AE3=1",
+ "JUCE_APP_VERSION=1.0.0",
+ "JUCE_APP_VERSION_HEX=0x10000", );
+ GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
+ HEADER_SEARCH_PATHS = ("../../JuceLibraryCode", "../../../../../modules", "$(inherited)");
+ INFOPLIST_FILE = Info-App.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ PRODUCT_BUNDLE_IDENTIFIER = com.yourcompany.BlocksInfo; }; name = Debug; };
+ 0B575022E52611F3CF802F93 = {isa = XCBuildConfiguration; buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
@@ -3554,7 +2721,6 @@
COMBINE_HIDPI_IMAGES = YES;
CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/build/$(CONFIGURATION)";
DEAD_CODE_STRIPPING = YES;
- DEVELOPMENT_TEAM = S5LKE7JNDX;
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
GCC_OPTIMIZATION_LEVEL = 3;
GCC_PREPROCESSOR_DEFINITIONS = (
@@ -3562,27 +2728,18 @@
"NDEBUG=1",
"JUCER_XCODE_IPHONE_5BC26AE3=1",
"JUCE_APP_VERSION=1.0.0",
- "JUCE_APP_VERSION_HEX=0x10000",
- );
+ "JUCE_APP_VERSION_HEX=0x10000", );
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
- HEADER_SEARCH_PATHS = (
- ../../JuceLibraryCode,
- ../../../../../modules,
- "$(inherited)",
- );
- INFOPLIST_FILE = "Info-App.plist";
+ HEADER_SEARCH_PATHS = ("../../JuceLibraryCode", "../../../../../modules", "$(inherited)");
+ INFOPLIST_FILE = Info-App.plist;
INSTALL_PATH = "$(HOME)/Applications";
- PRODUCT_BUNDLE_IDENTIFIER = com.yourcompany.BlocksInfo;
- };
- name = Release;
- };
- 2BBD53B147BD1DADF7CD0BFA /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
+ PRODUCT_BUNDLE_IDENTIFIER = com.yourcompany.BlocksInfo; }; name = Release; };
+ A88A0CA8AD66B56AA8A51727 = {isa = XCBuildConfiguration; buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- DEBUG_INFORMATION_FORMAT = dwarf;
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf";
+ ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = c99;
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
GCC_MODEL_TUNING = G5;
@@ -3593,53 +2750,16 @@
GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
- PRODUCT_NAME = BlocksMonitor;
+ ONLY_ACTIVE_ARCH = YES;
+ PRODUCT_NAME = "BlocksMonitor";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
- WARNING_CFLAGS = "-Wreorder";
- ZERO_LINK = NO;
- };
- name = Release;
- };
- 393AB3EA96DA8E7AEC86AD00 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
- CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
- CLANG_LINK_OBJC_RUNTIME = NO;
- COMBINE_HIDPI_IMAGES = YES;
- CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/build/$(CONFIGURATION)";
- COPY_PHASE_STRIP = NO;
- DEVELOPMENT_TEAM = S5LKE7JNDX;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "_DEBUG=1",
- "DEBUG=1",
- "JUCER_XCODE_IPHONE_5BC26AE3=1",
- "JUCE_APP_VERSION=1.0.0",
- "JUCE_APP_VERSION_HEX=0x10000",
- );
- GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
- HEADER_SEARCH_PATHS = (
- ../../JuceLibraryCode,
- ../../../../../modules,
- "$(inherited)",
- );
- INFOPLIST_FILE = "Info-App.plist";
- INSTALL_PATH = "$(HOME)/Applications";
- PRODUCT_BUNDLE_IDENTIFIER = com.yourcompany.BlocksInfo;
- };
- name = Debug;
- };
- A88A0CA8AD66B56AA8A51727 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
+ WARNING_CFLAGS = -Wreorder;
+ ZERO_LINK = NO; }; name = Debug; };
+ 2BBD53B147BD1DADF7CD0BFA = {isa = XCBuildConfiguration; buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_TESTABILITY = YES;
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf";
GCC_C_LANGUAGE_STANDARD = c99;
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
GCC_MODEL_TUNING = G5;
@@ -3650,37 +2770,53 @@
GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
- ONLY_ACTIVE_ARCH = YES;
- PRODUCT_NAME = BlocksMonitor;
+ PRODUCT_NAME = "BlocksMonitor";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
- WARNING_CFLAGS = "-Wreorder";
- ZERO_LINK = NO;
- };
- name = Debug;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 61CDB68D74329CF066EA57D6 /* Build configuration list for PBXProject "BlocksMonitor" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- A88A0CA8AD66B56AA8A51727 /* Debug */,
- 2BBD53B147BD1DADF7CD0BFA /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- F2ABB4C4775A3BD1B6DEBD6A /* Build configuration list for PBXNativeTarget "BlocksMonitor (App)" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 393AB3EA96DA8E7AEC86AD00 /* Debug */,
- 0B575022E52611F3CF802F93 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
-/* End XCConfigurationList section */
+ WARNING_CFLAGS = -Wreorder;
+ ZERO_LINK = NO; }; name = Release; };
+ E8EE955C952218247BF6E77A = {isa = PBXTargetDependency; target = 9C6BA11D1261B15A2F52EB60; };
+ 61CDB68D74329CF066EA57D6 = {isa = XCConfigurationList; buildConfigurations = (
+ A88A0CA8AD66B56AA8A51727,
+ 2BBD53B147BD1DADF7CD0BFA, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
+ F2ABB4C4775A3BD1B6DEBD6A = {isa = XCConfigurationList; buildConfigurations = (
+ 393AB3EA96DA8E7AEC86AD00,
+ 0B575022E52611F3CF802F93, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; };
+ D08BB290D5F778E1450AD3F3 = {isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = (
+ 8865BAB56BA7C344961B8C78, ); runOnlyForDeploymentPostprocessing = 0; };
+ 9C2AF708958E95C688544D95 = {isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = (
+ D2EAAF12976946EE8C45FB0B,
+ 1AED1945B3F869251C0AE961,
+ E17C689ADF6944C5DBFB87FC,
+ 09AD8FE14AB25476E5B895F0,
+ 0D2A7C0067BE86F2CFDF180E,
+ C3771B5653D9760164E40FBB,
+ 8DCEF084990118E5E8781096,
+ 3A0447CE74DA2F6F547581E2,
+ 7D8C07117F2E674F24031D72,
+ C8DA641BA677BA04FD298869,
+ D650FA605147B0260A8A94C7,
+ C38A78F09BFE9B4378FF23C0,
+ 86C00C6333D9F12FED7C221A,
+ 3FB72C8D23D5F6CB77C88C63, ); runOnlyForDeploymentPostprocessing = 0; };
+ 2410311707C8C7B9E6CFE23D = {isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = (
+ 732F2CFE7C7968D6638BC5D1,
+ 76FF951CD8921AFDC24648FB,
+ F88FFF629E47F8CB257B7157,
+ 924BC7B8C552402D22C30959,
+ B92223437105FB45C1973FF5,
+ A458DA809D44DCCB921620D2,
+ 1D0987A356ABA1C3B4A785BD,
+ B4F2D8F80F24A3A8B90D2519,
+ 918E1AB94993954386975092,
+ F0C1938D68C0994E2338379C,
+ 3601C134F7B5A1AB67E814D7,
+ FBF94D0D4A73E69D79614536, ); runOnlyForDeploymentPostprocessing = 0; };
+ 9C6BA11D1261B15A2F52EB60 = {isa = PBXNativeTarget; buildConfigurationList = F2ABB4C4775A3BD1B6DEBD6A; buildPhases = (
+ D08BB290D5F778E1450AD3F3,
+ 9C2AF708958E95C688544D95,
+ 2410311707C8C7B9E6CFE23D, ); buildRules = ( ); dependencies = ( ); name = "BlocksMonitor (App)"; productName = BlocksMonitor; productReference = 00558AF4AA37DD00B15B21A8; productType = "com.apple.product-type.application"; };
+ B42B7651E1352BD7921E5754 = {isa = PBXProject; buildConfigurationList = 61CDB68D74329CF066EA57D6; attributes = { LastUpgradeCheck = 0440; TargetAttributes = { 9C6BA11D1261B15A2F52EB60 = { SystemCapabilities = {com.apple.InAppPurchase = { enabled = 0; }; com.apple.Sandbox = { enabled = 0; }; }; }; }; }; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 0; mainGroup = 5D6DAC6A0A862ED325F1DB34; projectDirPath = ""; projectRoot = ""; targets = (9C6BA11D1261B15A2F52EB60); };
};
- rootObject = B42B7651E1352BD7921E5754 /* Project object */;
+ rootObject = B42B7651E1352BD7921E5754;
}
diff --git a/examples/BLOCKS/BlocksSynth/Builds/LinuxMakefile/Makefile b/examples/BLOCKS/BlocksSynth/Builds/LinuxMakefile/Makefile
index cc486bbdbd..d164909f29 100644
--- a/examples/BLOCKS/BlocksSynth/Builds/LinuxMakefile/Makefile
+++ b/examples/BLOCKS/BlocksSynth/Builds/LinuxMakefile/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := BlocksSynth
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := BlocksSynth
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -79,7 +86,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -87,7 +94,7 @@ check-pkg-config:
clean:
@echo Cleaning BlocksSynth
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping BlocksSynth
@@ -96,71 +103,71 @@ strip:
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_devices.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_formats.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_processors.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_utils_c7eb679f.o: ../../JuceLibraryCode/juce_audio_utils.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_utils.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_blocks_basics_d4b203f5.o: ../../JuceLibraryCode/juce_blocks_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_blocks_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_opengl_cd70b4c2.o: ../../JuceLibraryCode/juce_opengl.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_opengl.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/BLOCKS/BlocksSynth/Builds/VisualStudio2013/BlocksSynth.vcxproj b/examples/BLOCKS/BlocksSynth/Builds/VisualStudio2013/BlocksSynth.vcxproj
index 47daffdacb..638305809a 100644
--- a/examples/BLOCKS/BlocksSynth/Builds/VisualStudio2013/BlocksSynth.vcxproj
+++ b/examples/BLOCKS/BlocksSynth/Builds/VisualStudio2013/BlocksSynth.vcxproj
@@ -39,8 +39,10 @@
<_ProjectFileVersion>10.0.30319.1
BlocksSynth
+ .exe
true
BlocksSynth
+ .exe
true
v120
diff --git a/examples/BLOCKS/BlocksSynth/Builds/VisualStudio2015/BlocksSynth.vcxproj b/examples/BLOCKS/BlocksSynth/Builds/VisualStudio2015/BlocksSynth.vcxproj
index 6c29507958..84835c4d48 100644
--- a/examples/BLOCKS/BlocksSynth/Builds/VisualStudio2015/BlocksSynth.vcxproj
+++ b/examples/BLOCKS/BlocksSynth/Builds/VisualStudio2015/BlocksSynth.vcxproj
@@ -39,8 +39,10 @@
<_ProjectFileVersion>10.0.30319.1
BlocksSynth
+ .exe
true
BlocksSynth
+ .exe
true
v140
diff --git a/examples/BouncingBallWavetableDemo/Builds/Linux/Makefile b/examples/BouncingBallWavetableDemo/Builds/Linux/Makefile
index 5a4a7c51ff..7fe7e2be44 100644
--- a/examples/BouncingBallWavetableDemo/Builds/Linux/Makefile
+++ b/examples/BouncingBallWavetableDemo/Builds/Linux/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := WavetableBouncingEditor
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := WavetableBouncingEditor
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -80,7 +87,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -88,7 +95,7 @@ check-pkg-config:
clean:
@echo Cleaning BouncingBallWavetableDemo
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping BouncingBallWavetableDemo
@@ -97,76 +104,76 @@ strip:
$(JUCE_OBJDIR)/MainComponent_a6ffb4a5.o: ../../Source/MainComponent.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling MainComponent.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_devices.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_formats.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_processors.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_utils_c7eb679f.o: ../../JuceLibraryCode/juce_audio_utils.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_utils.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_cryptography_6de2ebff.o: ../../JuceLibraryCode/juce_cryptography.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_cryptography.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_video_f128c512.o: ../../JuceLibraryCode/juce_video.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_video.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/Demo/Builds/Android/src/com/juce/jucedemo/JuceDemo.java b/examples/Demo/Builds/Android/src/com/juce/jucedemo/JuceDemo.java
index 28be2a8516..8ddccc1eb9 100644
--- a/examples/Demo/Builds/Android/src/com/juce/jucedemo/JuceDemo.java
+++ b/examples/Demo/Builds/Android/src/com/juce/jucedemo/JuceDemo.java
@@ -2,22 +2,28 @@
==============================================================================
This file is part of the JUCE library.
- Copyright (c) 2015 - ROLI Ltd.
+ Copyright (c) 2016 - ROLI Ltd.
- Permission is granted to use this software under the terms of either:
- a) the GPL v2 (or any later version)
- b) the Affero GPL v3
+ Permission is granted to use this software under the terms of the ISC license
+ http://www.isc.org/downloads/software-support-policy/isc-license/
- Details of these licenses can be found at: www.gnu.org/licenses
+ Permission to use, copy, modify, and/or distribute this software for any
+ purpose with or without fee is hereby granted, provided that the above
+ copyright notice and this permission notice appear in all copies.
- JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+ THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD
+ TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
+ OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
+ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
+ OF THIS SOFTWARE.
- ------------------------------------------------------------------------------
+ -----------------------------------------------------------------------------
- To release a closed-source product which uses JUCE, commercial licenses are
- available: visit www.juce.com for more information.
+ To release a closed-source product which uses other parts of JUCE not
+ licensed under the ISC terms, commercial licenses are available: visit
+ www.juce.com for more information.
==============================================================================
*/
diff --git a/examples/Demo/Builds/Linux/Makefile b/examples/Demo/Builds/Linux/Makefile
index efbe171d23..71d2b254f4 100644
--- a/examples/Demo/Builds/Linux/Makefile
+++ b/examples/Demo/Builds/Linux/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCE_UNIT_TESTS=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=3.0.0 -DJUCE_APP_VERSION_HEX=0x30000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCE_UNIT_TESTS=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=3.0.0 -DJUCE_APP_VERSION_HEX=0x30000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := JuceDemo
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCE_UNIT_TESTS=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=3.0.0 -DJUCE_APP_VERSION_HEX=0x30000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCE_UNIT_TESTS=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=3.0.0 -DJUCE_APP_VERSION_HEX=0x30000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := JuceDemo
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -122,7 +129,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -130,7 +137,7 @@ check-pkg-config:
clean:
@echo Cleaning JuceDemo
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping JuceDemo
@@ -139,286 +146,286 @@ strip:
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/MainWindow_499ac812.o: ../../Source/MainWindow.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling MainWindow.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/IntroScreen_73347059.o: ../../Source/IntroScreen.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling IntroScreen.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/AnimationDemo_9fc7e4e9.o: ../../Source/Demos/AnimationDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling AnimationDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/AudioLatencyDemo_78d49233.o: ../../Source/Demos/AudioLatencyDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling AudioLatencyDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/AudioPlaybackDemo_ea12adf6.o: ../../Source/Demos/AudioPlaybackDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling AudioPlaybackDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/AudioRecordingDemo_435914e6.o: ../../Source/Demos/AudioRecordingDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling AudioRecordingDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/AudioSettingsDemo_6d710bfe.o: ../../Source/Demos/AudioSettingsDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling AudioSettingsDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/AudioSynthesiserDemo_1b3666f6.o: ../../Source/Demos/AudioSynthesiserDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling AudioSynthesiserDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/Box2DDemo_51053c42.o: ../../Source/Demos/Box2DDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Box2DDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/CameraDemo_a10f7e50.o: ../../Source/Demos/CameraDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling CameraDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/ChildProcessDemo_2c2b949e.o: ../../Source/Demos/ChildProcessDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling ChildProcessDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/CodeEditorDemo_d5c17a65.o: ../../Source/Demos/CodeEditorDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling CodeEditorDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/ComponentTransformsDemo_377f7889.o: ../../Source/Demos/ComponentTransformsDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling ComponentTransformsDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/CryptographyDemo_232d46d7.o: ../../Source/Demos/CryptographyDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling CryptographyDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/DialogsDemo_19d585d0.o: ../../Source/Demos/DialogsDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling DialogsDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/FlexBoxDemo_e4f3d9b7.o: ../../Source/Demos/FlexBoxDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling FlexBoxDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/FontsDemo_6da1e5e9.o: ../../Source/Demos/FontsDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling FontsDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/GraphicsDemo_85142ef6.o: ../../Source/Demos/GraphicsDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling GraphicsDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/ImagesDemo_ecf13aa3.o: ../../Source/Demos/ImagesDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling ImagesDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/JavaScript_d6e42eb5.o: ../../Source/Demos/JavaScript.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling JavaScript.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/KeyMappingsDemo_cf05c709.o: ../../Source/Demos/KeyMappingsDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling KeyMappingsDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/LiveConstantDemo_e3b18a9b.o: ../../Source/Demos/LiveConstantDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling LiveConstantDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/LookAndFeelDemo_25c558a3.o: ../../Source/Demos/LookAndFeelDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling LookAndFeelDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/MDIDemo_c476c2d7.o: ../../Source/Demos/MDIDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling MDIDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/MidiDemo_75ebc30c.o: ../../Source/Demos/MidiDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling MidiDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/MultithreadingDemo_ff566eaa.o: ../../Source/Demos/MultithreadingDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling MultithreadingDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/MultiTouch_595f3a2e.o: ../../Source/Demos/MultiTouch.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling MultiTouch.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/NetworkingDemo_fbd1b19f.o: ../../Source/Demos/NetworkingDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling NetworkingDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/OpenGLDemo_fdac55da.o: ../../Source/Demos/OpenGLDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling OpenGLDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/OpenGLDemo2D_48eeadec.o: ../../Source/Demos/OpenGLDemo2D.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling OpenGLDemo2D.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/PropertiesDemo_8ff1a8de.o: ../../Source/Demos/PropertiesDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling PropertiesDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/SystemInfoDemo_984acd28.o: ../../Source/Demos/SystemInfoDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling SystemInfoDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/TimersAndEventsDemo_f2656547.o: ../../Source/Demos/TimersAndEventsDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling TimersAndEventsDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/UnitTestsDemo_5c21762.o: ../../Source/Demos/UnitTestsDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling UnitTestsDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/ValueTreesDemo_9657d84f.o: ../../Source/Demos/ValueTreesDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling ValueTreesDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/VideoDemo_b55a1560.o: ../../Source/Demos/VideoDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling VideoDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/WebBrowserDemo_3df2dbdf.o: ../../Source/Demos/WebBrowserDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling WebBrowserDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/WidgetsDemo_fb0454.o: ../../Source/Demos/WidgetsDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling WidgetsDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/WindowsDemo_e8cfa428.o: ../../Source/Demos/WindowsDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling WindowsDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/XMLandJSONDemo_5bc88df3.o: ../../Source/Demos/XMLandJSONDemo.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling XMLandJSONDemo.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/BinaryData_ce4232d4.o: ../../JuceLibraryCode/BinaryData.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling BinaryData.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_devices.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_formats.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_processors.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_utils_c7eb679f.o: ../../JuceLibraryCode/juce_audio_utils.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_utils.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_box2d_95719d14.o: ../../JuceLibraryCode/juce_box2d.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_box2d.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_cryptography_6de2ebff.o: ../../JuceLibraryCode/juce_cryptography.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_cryptography.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_opengl_cd70b4c2.o: ../../JuceLibraryCode/juce_opengl.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_opengl.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_video_f128c512.o: ../../JuceLibraryCode/juce_video.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_video.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/HelloWorld/Builds/Linux/Makefile b/examples/HelloWorld/Builds/Linux/Makefile
index 9c09d22d56..049b505e8d 100644
--- a/examples/HelloWorld/Builds/Linux/Makefile
+++ b/examples/HelloWorld/Builds/Linux/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := HelloWorld
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := HelloWorld
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -73,7 +80,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -81,7 +88,7 @@ check-pkg-config:
clean:
@echo Cleaning HelloWorld
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping HelloWorld
@@ -90,41 +97,41 @@ strip:
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/MainComponent_a6ffb4a5.o: ../../Source/MainComponent.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling MainComponent.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/MPETest/Builds/LinuxMakefile/Makefile b/examples/MPETest/Builds/LinuxMakefile/Makefile
index 31ead7e6de..3e00c8f04f 100644
--- a/examples/MPETest/Builds/LinuxMakefile/Makefile
+++ b/examples/MPETest/Builds/LinuxMakefile/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := MPETest
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := MPETest
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -80,7 +87,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -88,7 +95,7 @@ check-pkg-config:
clean:
@echo Cleaning MPETest
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping MPETest
@@ -97,76 +104,76 @@ strip:
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_devices.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_formats.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_processors.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_utils_c7eb679f.o: ../../JuceLibraryCode/juce_audio_utils.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_utils.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_cryptography_6de2ebff.o: ../../JuceLibraryCode/juce_cryptography.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_cryptography.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_opengl_cd70b4c2.o: ../../JuceLibraryCode/juce_opengl.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_opengl.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_video_f128c512.o: ../../JuceLibraryCode/juce_video.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_video.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/MidiTest/Builds/LinuxMakefile/Makefile b/examples/MidiTest/Builds/LinuxMakefile/Makefile
index 7e88d199f3..72ed27db1c 100644
--- a/examples/MidiTest/Builds/LinuxMakefile/Makefile
+++ b/examples/MidiTest/Builds/LinuxMakefile/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := MidiTest
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := MidiTest
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -78,7 +85,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -86,7 +93,7 @@ check-pkg-config:
clean:
@echo Cleaning MidiTest
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping MidiTest
@@ -95,66 +102,66 @@ strip:
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/MainComponent_a6ffb4a5.o: ../../Source/MainComponent.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling MainComponent.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_devices.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_formats.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_processors.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_utils_c7eb679f.o: ../../JuceLibraryCode/juce_audio_utils.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_utils.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/NetworkGraphicsDemo/Builds/LinuxMakefile/Makefile b/examples/NetworkGraphicsDemo/Builds/LinuxMakefile/Makefile
index b113dbc324..cd508dab83 100644
--- a/examples/NetworkGraphicsDemo/Builds/LinuxMakefile/Makefile
+++ b/examples/NetworkGraphicsDemo/Builds/LinuxMakefile/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := JUCE\ Network\ Graphics\ Demo
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := JUCE\ Network\ Graphics\ Demo
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -81,7 +88,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -89,7 +96,7 @@ check-pkg-config:
clean:
@echo Cleaning JUCE Network Graphics Demo
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping JUCE Network Graphics Demo
@@ -98,81 +105,81 @@ strip:
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/BinaryData_ce4232d4.o: ../../JuceLibraryCode/BinaryData.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling BinaryData.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_devices.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_formats.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_processors.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_utils_c7eb679f.o: ../../JuceLibraryCode/juce_audio_utils.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_utils.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_cryptography_6de2ebff.o: ../../JuceLibraryCode/juce_cryptography.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_cryptography.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_opengl_cd70b4c2.o: ../../JuceLibraryCode/juce_opengl.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_opengl.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_osc_be4cee16.o: ../../JuceLibraryCode/juce_osc.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_osc.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/OSCMonitor/Builds/LinuxMakefile/Makefile b/examples/OSCMonitor/Builds/LinuxMakefile/Makefile
index dbca80add3..07744d49d9 100644
--- a/examples/OSCMonitor/Builds/LinuxMakefile/Makefile
+++ b/examples/OSCMonitor/Builds/LinuxMakefile/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := OSCMonitor
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := OSCMonitor
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -80,7 +87,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -88,7 +95,7 @@ check-pkg-config:
clean:
@echo Cleaning OSCMonitor
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping OSCMonitor
@@ -97,76 +104,76 @@ strip:
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_devices.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_formats.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_processors.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_cryptography_6de2ebff.o: ../../JuceLibraryCode/juce_cryptography.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_cryptography.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_opengl_cd70b4c2.o: ../../JuceLibraryCode/juce_opengl.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_opengl.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_osc_be4cee16.o: ../../JuceLibraryCode/juce_osc.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_osc.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_video_f128c512.o: ../../JuceLibraryCode/juce_video.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_video.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/OSCReceiver/Builds/LinuxMakefile/Makefile b/examples/OSCReceiver/Builds/LinuxMakefile/Makefile
index 2c0117832e..66eedab377 100644
--- a/examples/OSCReceiver/Builds/LinuxMakefile/Makefile
+++ b/examples/OSCReceiver/Builds/LinuxMakefile/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := OSCReceiver
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := OSCReceiver
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -74,7 +81,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -82,7 +89,7 @@ check-pkg-config:
clean:
@echo Cleaning OSCReceiver
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping OSCReceiver
@@ -91,46 +98,46 @@ strip:
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_cryptography_6de2ebff.o: ../../JuceLibraryCode/juce_cryptography.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_cryptography.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_osc_be4cee16.o: ../../JuceLibraryCode/juce_osc.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_osc.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/OSCSender/Builds/LinuxMakefile/Makefile b/examples/OSCSender/Builds/LinuxMakefile/Makefile
index 1600076d3d..52f249d84e 100644
--- a/examples/OSCSender/Builds/LinuxMakefile/Makefile
+++ b/examples/OSCSender/Builds/LinuxMakefile/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := OSCSender
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := OSCSender
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -72,7 +79,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -80,7 +87,7 @@ check-pkg-config:
clean:
@echo Cleaning OSCSender
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping OSCSender
@@ -89,36 +96,36 @@ strip:
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_osc_be4cee16.o: ../../JuceLibraryCode/juce_osc.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_osc.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/PlugInSamples/MultiOutSynth/Builds/VisualStudio2015/MultiOutSynth.vcxproj b/examples/PlugInSamples/MultiOutSynth/Builds/VisualStudio2015/MultiOutSynth.vcxproj
index 87d951f0d3..5b997a4f31 100644
--- a/examples/PlugInSamples/MultiOutSynth/Builds/VisualStudio2015/MultiOutSynth.vcxproj
+++ b/examples/PlugInSamples/MultiOutSynth/Builds/VisualStudio2015/MultiOutSynth.vcxproj
@@ -93,7 +93,7 @@ if not exist "$(OutDir)$(TargetName).aaxplugin" mkdir "$(OutDir)$
if not exist "$(OutDir)$(TargetName).aaxplugin\Contents" mkdir "$(OutDir)$(TargetName).aaxplugin\Contents"
if not exist "$(OutDir)$(TargetName).aaxplugin\Contents\Win32" mkdir "$(OutDir)$(TargetName).aaxplugin\Contents\Win32"
copy /Y "$(OutDir)$(TargetFileName)" "$(OutDir)$(TargetName).aaxplugin\Contents\Win32\$(TargetName).aaxplugin"
-"..\..\c:\SDKs\AAX\Utilities\CreatePackage.bat" "$(OutDir)$(TargetName).aaxplugin\Contents\Win32" "..\..\c:\SDKs\AAX\Utilities\PlugIn.ico"
+""c:\\SDKs\\AAX\\Utilities\\CreatePackage.bat"" "$(OutDir)$(TargetName).aaxplugin\Contents\Win32" ""c:\\SDKs\\AAX\\Utilities\\PlugIn.ico""
@@ -143,7 +143,7 @@ if not exist "$(OutDir)$(TargetName).aaxplugin" mkdir "$(OutDir)$
if not exist "$(OutDir)$(TargetName).aaxplugin\Contents" mkdir "$(OutDir)$(TargetName).aaxplugin\Contents"
if not exist "$(OutDir)$(TargetName).aaxplugin\Contents\Win32" mkdir "$(OutDir)$(TargetName).aaxplugin\Contents\Win32"
copy /Y "$(OutDir)$(TargetFileName)" "$(OutDir)$(TargetName).aaxplugin\Contents\Win32\$(TargetName).aaxplugin"
-"..\..\c:\SDKs\AAX\Utilities\CreatePackage.bat" "$(OutDir)$(TargetName).aaxplugin\Contents\Win32" "..\..\c:\SDKs\AAX\Utilities\PlugIn.ico"
+""c:\\SDKs\\AAX\\Utilities\\CreatePackage.bat"" "$(OutDir)$(TargetName).aaxplugin\Contents\Win32" ""c:\\SDKs\\AAX\\Utilities\\PlugIn.ico""
diff --git a/examples/PlugInSamples/NoiseGate/Builds/VisualStudio2015/NoiseGate.vcxproj b/examples/PlugInSamples/NoiseGate/Builds/VisualStudio2015/NoiseGate.vcxproj
index d808545811..e181077daa 100644
--- a/examples/PlugInSamples/NoiseGate/Builds/VisualStudio2015/NoiseGate.vcxproj
+++ b/examples/PlugInSamples/NoiseGate/Builds/VisualStudio2015/NoiseGate.vcxproj
@@ -93,7 +93,7 @@ if not exist "$(OutDir)$(TargetName).aaxplugin" mkdir "$(OutDir)$
if not exist "$(OutDir)$(TargetName).aaxplugin\Contents" mkdir "$(OutDir)$(TargetName).aaxplugin\Contents"
if not exist "$(OutDir)$(TargetName).aaxplugin\Contents\Win32" mkdir "$(OutDir)$(TargetName).aaxplugin\Contents\Win32"
copy /Y "$(OutDir)$(TargetFileName)" "$(OutDir)$(TargetName).aaxplugin\Contents\Win32\$(TargetName).aaxplugin"
-"..\..\c:\SDKs\AAX\Utilities\CreatePackage.bat" "$(OutDir)$(TargetName).aaxplugin\Contents\Win32" "..\..\c:\SDKs\AAX\Utilities\PlugIn.ico"
+""c:\\SDKs\\AAX\\Utilities\\CreatePackage.bat"" "$(OutDir)$(TargetName).aaxplugin\Contents\Win32" ""c:\\SDKs\\AAX\\Utilities\\PlugIn.ico""
@@ -143,7 +143,7 @@ if not exist "$(OutDir)$(TargetName).aaxplugin" mkdir "$(OutDir)$
if not exist "$(OutDir)$(TargetName).aaxplugin\Contents" mkdir "$(OutDir)$(TargetName).aaxplugin\Contents"
if not exist "$(OutDir)$(TargetName).aaxplugin\Contents\Win32" mkdir "$(OutDir)$(TargetName).aaxplugin\Contents\Win32"
copy /Y "$(OutDir)$(TargetFileName)" "$(OutDir)$(TargetName).aaxplugin\Contents\Win32\$(TargetName).aaxplugin"
-"..\..\c:\SDKs\AAX\Utilities\CreatePackage.bat" "$(OutDir)$(TargetName).aaxplugin\Contents\Win32" "..\..\c:\SDKs\AAX\Utilities\PlugIn.ico"
+""c:\\SDKs\\AAX\\Utilities\\CreatePackage.bat"" "$(OutDir)$(TargetName).aaxplugin\Contents\Win32" ""c:\\SDKs\\AAX\\Utilities\\PlugIn.ico""
diff --git a/examples/PlugInSamples/Surround/Builds/LinuxMakefile/Makefile b/examples/PlugInSamples/Surround/Builds/LinuxMakefile/Makefile
index 43974e5496..a615666944 100644
--- a/examples/PlugInSamples/Surround/Builds/LinuxMakefile/Makefile
+++ b/examples/PlugInSamples/Surround/Builds/LinuxMakefile/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -fPIC -O0 -Wall -Wshadow -Wno-missing-field-initializers -Wshadow -Wshorten-64-to-32 -Wstrict-aliasing -Wuninitialized -Wunused-parameter -Wconversion -Wsign-compare -Wint-conversion -Woverloaded-virtual -Wreorder -Wconstant-conversion -Wsign-conversion
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -Wl,--no-undefined -shared -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -fPIC -O0 -Wall -Wshadow -Wno-missing-field-initializers -Wshadow -Wshorten-64-to-32 -Wstrict-aliasing -Wuninitialized -Wunused-parameter -Wconversion -Wsign-compare -Wint-conversion -Woverloaded-virtual -Wreorder -Wconstant-conversion -Wsign-conversion $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -Wl,--no-undefined -shared -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := Surround.so
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -fPIC -O3 -Wall -Wshadow -Wno-missing-field-initializers -Wshadow -Wshorten-64-to-32 -Wstrict-aliasing -Wuninitialized -Wunused-parameter -Wconversion -Wsign-compare -Wint-conversion -Woverloaded-virtual -Wreorder -Wconstant-conversion -Wsign-conversion
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -Wl,--no-undefined -shared -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -fPIC -O3 -Wall -Wshadow -Wno-missing-field-initializers -Wshadow -Wshorten-64-to-32 -Wstrict-aliasing -Wuninitialized -Wunused-parameter -Wconversion -Wsign-compare -Wint-conversion -Woverloaded-virtual -Wreorder -Wconstant-conversion -Wsign-conversion $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -Wl,--no-undefined -shared -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := Surround.so
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -81,7 +88,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -89,7 +96,7 @@ check-pkg-config:
clean:
@echo Cleaning Surround
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping Surround
@@ -98,81 +105,81 @@ strip:
$(JUCE_OBJDIR)/SurroundProcessor_c7ed9c55.o: ../../Source/SurroundProcessor.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling SurroundProcessor.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_devices.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_formats.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_plugin_client_utils_35fbf7.o: ../../JuceLibraryCode/juce_audio_plugin_client_utils.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_plugin_client_utils.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_plugin_client_VST2_fd137df.o: ../../JuceLibraryCode/juce_audio_plugin_client_VST2.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_plugin_client_VST2.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_processors.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_cryptography_6de2ebff.o: ../../JuceLibraryCode/juce_cryptography.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_cryptography.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_opengl_cd70b4c2.o: ../../JuceLibraryCode/juce_opengl.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_opengl.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_video_f128c512.o: ../../JuceLibraryCode/juce_video.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_video.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/PlugInSamples/Surround/Builds/VisualStudio2015/Surround.vcxproj b/examples/PlugInSamples/Surround/Builds/VisualStudio2015/Surround.vcxproj
index ed36de9cc3..e732f757d5 100644
--- a/examples/PlugInSamples/Surround/Builds/VisualStudio2015/Surround.vcxproj
+++ b/examples/PlugInSamples/Surround/Builds/VisualStudio2015/Surround.vcxproj
@@ -93,7 +93,7 @@ if not exist "$(OutDir)$(TargetName).aaxplugin" mkdir "$(OutDir)$
if not exist "$(OutDir)$(TargetName).aaxplugin\Contents" mkdir "$(OutDir)$(TargetName).aaxplugin\Contents"
if not exist "$(OutDir)$(TargetName).aaxplugin\Contents\x64" mkdir "$(OutDir)$(TargetName).aaxplugin\Contents\x64"
copy /Y "$(OutDir)$(TargetFileName)" "$(OutDir)$(TargetName).aaxplugin\Contents\x64\$(TargetName).aaxplugin"
-"..\..\c:\SDKs\AAX\Utilities\CreatePackage.bat" "$(OutDir)$(TargetName).aaxplugin\Contents\x64" "..\..\c:\SDKs\AAX\Utilities\PlugIn.ico"
+""c:\\SDKs\\AAX\\Utilities\\CreatePackage.bat"" "$(OutDir)$(TargetName).aaxplugin\Contents\x64" ""c:\\SDKs\\AAX\\Utilities\\PlugIn.ico""
@@ -142,7 +142,7 @@ if not exist "$(OutDir)$(TargetName).aaxplugin" mkdir "$(OutDir)$
if not exist "$(OutDir)$(TargetName).aaxplugin\Contents" mkdir "$(OutDir)$(TargetName).aaxplugin\Contents"
if not exist "$(OutDir)$(TargetName).aaxplugin\Contents\x64" mkdir "$(OutDir)$(TargetName).aaxplugin\Contents\x64"
copy /Y "$(OutDir)$(TargetFileName)" "$(OutDir)$(TargetName).aaxplugin\Contents\x64\$(TargetName).aaxplugin"
-"..\..\c:\SDKs\AAX\Utilities\CreatePackage.bat" "$(OutDir)$(TargetName).aaxplugin\Contents\x64" "..\..\c:\SDKs\AAX\Utilities\PlugIn.ico"
+""c:\\SDKs\\AAX\\Utilities\\CreatePackage.bat"" "$(OutDir)$(TargetName).aaxplugin\Contents\x64" ""c:\\SDKs\\AAX\\Utilities\\PlugIn.ico""
diff --git a/examples/audio plugin demo/Builds/Linux/Makefile b/examples/audio plugin demo/Builds/Linux/Makefile
index 6096e87a8d..4e7ab287df 100644
--- a/examples/audio plugin demo/Builds/Linux/Makefile
+++ b/examples/audio plugin demo/Builds/Linux/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -fPIC -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -Wl,--no-undefined -shared -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -fPIC -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -Wl,--no-undefined -shared -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := JuceDemoPlugin.so
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -fPIC -O3
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -Wl,--no-undefined -shared -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -fPIC -O3 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -Wl,--no-undefined -shared -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := JuceDemoPlugin.so
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -80,7 +87,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -88,7 +95,7 @@ check-pkg-config:
clean:
@echo Cleaning JuceDemoPlugin
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping JuceDemoPlugin
@@ -97,76 +104,76 @@ strip:
$(JUCE_OBJDIR)/PluginEditor_94d4fb09.o: ../../Source/PluginEditor.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling PluginEditor.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/PluginProcessor_a059e380.o: ../../Source/PluginProcessor.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling PluginProcessor.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_devices.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_formats.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_plugin_client_utils_35fbf7.o: ../../JuceLibraryCode/juce_audio_plugin_client_utils.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_plugin_client_utils.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_plugin_client_VST2_fd137df.o: ../../JuceLibraryCode/juce_audio_plugin_client_VST2.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_plugin_client_VST2.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_processors.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_utils_c7eb679f.o: ../../JuceLibraryCode/juce_audio_utils.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_utils.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/examples/audio plugin host/Builds/Linux/Makefile b/examples/audio plugin host/Builds/Linux/Makefile
index 8b373f410b..055e3b26a7 100644
--- a/examples/audio plugin host/Builds/Linux/Makefile
+++ b/examples/audio plugin host/Builds/Linux/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := Plugin\ Host
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -lGL -ldl -lpthread -lrt $(LDFLAGS)
TARGET := Plugin\ Host
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -85,7 +92,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -93,7 +100,7 @@ check-pkg-config:
clean:
@echo Cleaning Plugin Host
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping Plugin Host
@@ -102,101 +109,101 @@ strip:
$(JUCE_OBJDIR)/FilterGraph_62e9c017.o: ../../Source/FilterGraph.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling FilterGraph.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/FilterIOConfiguration_1cc9b659.o: ../../Source/FilterIOConfiguration.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling FilterIOConfiguration.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/GraphEditorPanel_3dbd4872.o: ../../Source/GraphEditorPanel.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling GraphEditorPanel.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/HostStartup_5ce96f96.o: ../../Source/HostStartup.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling HostStartup.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/InternalFilters_beb54bdf.o: ../../Source/InternalFilters.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling InternalFilters.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/MainHostWindow_e920295a.o: ../../Source/MainHostWindow.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling MainHostWindow.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_devices.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_formats.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_processors.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_utils_c7eb679f.o: ../../JuceLibraryCode/juce_audio_utils.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_utils.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_cryptography_6de2ebff.o: ../../JuceLibraryCode/juce_cryptography.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_cryptography.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_opengl_cd70b4c2.o: ../../JuceLibraryCode/juce_opengl.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_opengl.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_video_f128c512.o: ../../JuceLibraryCode/juce_video.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_video.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/extras/AudioPerformanceTest/Builds/LinuxMakefile/Makefile b/extras/AudioPerformanceTest/Builds/LinuxMakefile/Makefile
index 86ac13bd2a..0bd719b89f 100644
--- a/extras/AudioPerformanceTest/Builds/LinuxMakefile/Makefile
+++ b/extras/AudioPerformanceTest/Builds/LinuxMakefile/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := AudioPerformanceTest
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs alsa freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := AudioPerformanceTest
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -77,7 +84,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -85,7 +92,7 @@ check-pkg-config:
clean:
@echo Cleaning AudioPerformanceTest
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping AudioPerformanceTest
@@ -94,61 +101,61 @@ strip:
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_devices.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_formats.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_processors.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_audio_utils_c7eb679f.o: ../../JuceLibraryCode/juce_audio_utils.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_audio_utils.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/extras/Projucer/Builds/LinuxMakefile/Makefile b/extras/Projucer/Builds/LinuxMakefile/Makefile
index b5b3cb8833..38ad87108e 100644
--- a/extras/Projucer/Builds/LinuxMakefile/Makefile
+++ b/extras/Projucer/Builds/LinuxMakefile/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=4.3.0 -DJUCE_APP_VERSION_HEX=0x40300 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 -std=c++11
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=4.3.0 -DJUCE_APP_VERSION_HEX=0x40300 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 -std=c++11 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := Projucer
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=4.3.0 -DJUCE_APP_VERSION_HEX=0x40300 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 -std=c++11
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=4.3.0 -DJUCE_APP_VERSION_HEX=0x40300 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 -std=c++11 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden $(shell pkg-config --libs freetype2 libcurl x11 xext xinerama) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := Projucer
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -121,7 +128,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -129,7 +136,7 @@ check-pkg-config:
clean:
@echo Cleaning Projucer
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping Projucer
@@ -138,281 +145,281 @@ strip:
$(JUCE_OBJDIR)/jucer_AppearanceSettings_788d9889.o: ../../Source/Application/jucer_AppearanceSettings.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_AppearanceSettings.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_AutoUpdater_ca658dc2.o: ../../Source/Application/jucer_AutoUpdater.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_AutoUpdater.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_CommandLine_f35de107.o: ../../Source/Application/jucer_CommandLine.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_CommandLine.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_DocumentEditorComponent_695dff1d.o: ../../Source/Application/jucer_DocumentEditorComponent.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_DocumentEditorComponent.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_DownloadCompileEngineThread_8a38703f.o: ../../Source/Application/jucer_DownloadCompileEngineThread.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_DownloadCompileEngineThread.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_GlobalPreferences_b0f1bd3d.o: ../../Source/Application/jucer_GlobalPreferences.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_GlobalPreferences.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_Main_f8488f5b.o: ../../Source/Application/jucer_Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_MainWindow_1e163aeb.o: ../../Source/Application/jucer_MainWindow.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_MainWindow.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_OpenDocumentManager_4c72d210.o: ../../Source/Application/jucer_OpenDocumentManager.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_OpenDocumentManager.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/projucer_CompileEngineClient_542e6b2d.o: ../../Source/LiveBuildEngine/projucer_CompileEngineClient.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling projucer_CompileEngineClient.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/projucer_CompileEngineServer_a5a32aa5.o: ../../Source/LiveBuildEngine/projucer_CompileEngineServer.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling projucer_CompileEngineServer.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_SourceCodeEditor_461f5487.o: ../../Source/Code\ Editor/jucer_SourceCodeEditor.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_SourceCodeEditor.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_ComponentTypeHandler_6bec6262.o: ../../Source/ComponentEditor/components/jucer_ComponentTypeHandler.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_ComponentTypeHandler.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_ButtonDocument_56c341cc.o: ../../Source/ComponentEditor/documents/jucer_ButtonDocument.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_ButtonDocument.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_ComponentDocument_92868083.o: ../../Source/ComponentEditor/documents/jucer_ComponentDocument.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_ComponentDocument.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_ColouredElement_70cbc839.o: ../../Source/ComponentEditor/paintelements/jucer_ColouredElement.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_ColouredElement.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_PaintElement_653460.o: ../../Source/ComponentEditor/paintelements/jucer_PaintElement.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_PaintElement.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_PaintElementPath_908894a5.o: ../../Source/ComponentEditor/paintelements/jucer_PaintElementPath.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_PaintElementPath.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_ComponentLayoutEditor_aeb44f8d.o: ../../Source/ComponentEditor/ui/jucer_ComponentLayoutEditor.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_ComponentLayoutEditor.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_ComponentOverlayComponent_fd508d63.o: ../../Source/ComponentEditor/ui/jucer_ComponentOverlayComponent.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_ComponentOverlayComponent.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_EditingPanelBase_6c2ed9ee.o: ../../Source/ComponentEditor/ui/jucer_EditingPanelBase.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_EditingPanelBase.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_JucerDocumentEditor_2c581e26.o: ../../Source/ComponentEditor/ui/jucer_JucerDocumentEditor.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_JucerDocumentEditor.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_PaintRoutineEditor_f6ac0344.o: ../../Source/ComponentEditor/ui/jucer_PaintRoutineEditor.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_PaintRoutineEditor.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_PaintRoutinePanel_c309a0d7.o: ../../Source/ComponentEditor/ui/jucer_PaintRoutinePanel.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_PaintRoutinePanel.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_ResourceEditorPanel_a558f2e2.o: ../../Source/ComponentEditor/ui/jucer_ResourceEditorPanel.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_ResourceEditorPanel.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_TestComponent_db757dc4.o: ../../Source/ComponentEditor/ui/jucer_TestComponent.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_TestComponent.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_BinaryResources_e0f99b46.o: ../../Source/ComponentEditor/jucer_BinaryResources.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_BinaryResources.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_ComponentLayout_6ea00129.o: ../../Source/ComponentEditor/jucer_ComponentLayout.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_ComponentLayout.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_GeneratedCode_9ca4ef7e.o: ../../Source/ComponentEditor/jucer_GeneratedCode.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_GeneratedCode.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_JucerDocument_ff8afcc2.o: ../../Source/ComponentEditor/jucer_JucerDocument.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_JucerDocument.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_ObjectTypes_4406f01c.o: ../../Source/ComponentEditor/jucer_ObjectTypes.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_ObjectTypes.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_PaintRoutine_e1e891ee.o: ../../Source/ComponentEditor/jucer_PaintRoutine.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_PaintRoutine.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_DependencyPathPropertyComponent_4d137229.o: ../../Source/Project/jucer_DependencyPathPropertyComponent.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_DependencyPathPropertyComponent.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_Module_3f7666a5.o: ../../Source/Project/jucer_Module.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_Module.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_Project_c131864a.o: ../../Source/Project/jucer_Project.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_Project.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_ProjectExporter_eefe2e5b.o: ../../Source/Project\ Saving/jucer_ProjectExporter.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_ProjectExporter.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_ProjectSaver_38b16c25.o: ../../Source/Project\ Saving/jucer_ProjectSaver.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_ProjectSaver.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_ResourceFile_6af120d3.o: ../../Source/Project\ Saving/jucer_ResourceFile.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_ResourceFile.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_CodeHelpers_c317179c.o: ../../Source/Utility/jucer_CodeHelpers.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_CodeHelpers.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_FileHelpers_f98ed0ad.o: ../../Source/Utility/jucer_FileHelpers.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_FileHelpers.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_Icons_9db2f51e.o: ../../Source/Utility/jucer_Icons.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_Icons.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_JucerTreeViewBase_d043309d.o: ../../Source/Utility/jucer_JucerTreeViewBase.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_JucerTreeViewBase.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_MiscUtilities_25b68c82.o: ../../Source/Utility/jucer_MiscUtilities.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_MiscUtilities.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_ProjucerLookAndFeel_d6c6b28a.o: ../../Source/Utility/jucer_ProjucerLookAndFeel.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_ProjucerLookAndFeel.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_SlidingPanelComponent_9aa7a2ab.o: ../../Source/Utility/jucer_SlidingPanelComponent.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_SlidingPanelComponent.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_StoredSettings_26078d2c.o: ../../Source/Utility/jucer_StoredSettings.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_StoredSettings.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_NewFileWizard_fac97f47.o: ../../Source/Wizards/jucer_NewFileWizard.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_NewFileWizard.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/jucer_NewProjectWizardClasses_891f6fa2.o: ../../Source/Wizards/jucer_NewProjectWizardClasses.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling jucer_NewProjectWizardClasses.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/BinaryData_ce4232d4.o: ../../JuceLibraryCode/BinaryData.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling BinaryData.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_cryptography_6de2ebff.o: ../../JuceLibraryCode/juce_cryptography.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_cryptography.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_data_structures.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_events.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_graphics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_basics.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_gui_extra.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)
diff --git a/extras/binarybuilder/Builds/Linux/Makefile b/extras/binarybuilder/Builds/Linux/Makefile
index 8fd346f614..6303cb41c6 100644
--- a/extras/binarybuilder/Builds/Linux/Makefile
+++ b/extras/binarybuilder/Builds/Linux/Makefile
@@ -1,6 +1,13 @@
# Automatically generated makefile, created by the Projucer
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project!
+# build with "V=1" for verbose builds
+ifeq ($(V), 1)
+V_AT =
+else
+V_AT = @
+endif
+
# (this disables dependency generation if multiple architectures are set)
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD)
@@ -26,10 +33,10 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags libcurl) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs libcurl) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags libcurl) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -L/usr/X11R6/lib/ $(shell pkg-config --libs libcurl) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := BinaryBuilder
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -46,10 +53,10 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH := -march=native
endif
- JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags libcurl) -pthread -I../../JuceLibraryCode -I../../../../modules
- JUCE_CFLAGS += $(CFLAGS) $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os
- JUCE_CXXFLAGS += $(CXXFLAGS) $(JUCE_CFLAGS) -std=c++11
- JUCE_LDFLAGS += $(LDFLAGS) $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs libcurl) -ldl -lpthread -lrt
+ JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_7346DA2A=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags libcurl) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS)
+ JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os $(CFLAGS)
+ JUCE_CXXFLAGS += $(JUCE_CFLAGS) -std=c++11 $(CXXFLAGS)
+ JUCE_LDFLAGS += $(TARGET_ARCH) -L$(JUCE_BINDIR) -L$(JUCE_LIBDIR) -fvisibility=hidden -L/usr/X11R6/lib/ $(shell pkg-config --libs libcurl) -ldl -lpthread -lrt $(LDFLAGS)
TARGET := BinaryBuilder
BLDCMD = $(CXX) -o $(JUCE_OUTDIR)/$(TARGET) $(OBJECTS) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH)
@@ -67,7 +74,7 @@ $(JUCE_OUTDIR)/$(TARGET): check-pkg-config $(OBJECTS) $(RESOURCES)
-@mkdir -p $(JUCE_BINDIR)
-@mkdir -p $(JUCE_LIBDIR)
-@mkdir -p $(JUCE_OUTDIR)
- @$(BLDCMD)
+ $(V_AT)$(BLDCMD)
check-pkg-config:
@command -v pkg-config >/dev/null 2>&1 || { echo >&2 "pkg-config not installed. Please, install it."; exit 1; }
@@ -75,7 +82,7 @@ check-pkg-config:
clean:
@echo Cleaning BinaryBuilder
- @$(CLEANCMD)
+ $(V_AT)$(CLEANCMD)
strip:
@echo Stripping BinaryBuilder
@@ -84,11 +91,11 @@ strip:
$(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling Main.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
$(JUCE_OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp
-@mkdir -p $(JUCE_OBJDIR)
@echo "Compiling juce_core.cpp"
- @$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
+ $(V_AT)$(CXX) $(JUCE_CXXFLAGS) -o "$@" -c "$<"
-include $(OBJECTS:%.o=%.d)