1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Resave all projects

This commit is contained in:
Oliver James 2024-06-06 14:15:03 +01:00
parent 3988d492ac
commit a469daf5be
62 changed files with 322 additions and 0 deletions

View file

@ -1286,6 +1286,7 @@ add_library( ${BINARY_NAME}
"../../../../../modules/juce_core/zip/juce_ZipFile.h"
"../../../../../modules/juce_core/juce_core.cpp"
"../../../../../modules/juce_core/juce_core.mm"
"../../../../../modules/juce_core/juce_core_CompilationTime.cpp"
"../../../../../modules/juce_core/juce_core.h"
"../../../../../modules/juce_cryptography/encryption/juce_BlowFish.cpp"
"../../../../../modules/juce_cryptography/encryption/juce_BlowFish.h"
@ -2529,6 +2530,7 @@ add_library( ${BINARY_NAME}
"../../../JuceLibraryCode/include_juce_audio_utils.cpp"
"../../../JuceLibraryCode/include_juce_box2d.cpp"
"../../../JuceLibraryCode/include_juce_core.cpp"
"../../../JuceLibraryCode/include_juce_core_CompilationTime.cpp"
"../../../JuceLibraryCode/include_juce_cryptography.cpp"
"../../../JuceLibraryCode/include_juce_data_structures.cpp"
"../../../JuceLibraryCode/include_juce_dsp.cpp"
@ -3780,6 +3782,7 @@ set_source_files_properties(
"../../../../../modules/juce_core/zip/juce_ZipFile.h"
"../../../../../modules/juce_core/juce_core.cpp"
"../../../../../modules/juce_core/juce_core.mm"
"../../../../../modules/juce_core/juce_core_CompilationTime.cpp"
"../../../../../modules/juce_core/juce_core.h"
"../../../../../modules/juce_cryptography/encryption/juce_BlowFish.cpp"
"../../../../../modules/juce_cryptography/encryption/juce_BlowFish.h"

View file

@ -89,6 +89,7 @@ OBJECTS_APP := \
$(JUCE_OBJDIR)/include_juce_audio_utils_9f9fb2d6.o \
$(JUCE_OBJDIR)/include_juce_box2d_b0305d8b.o \
$(JUCE_OBJDIR)/include_juce_core_f26d17db.o \
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o \
$(JUCE_OBJDIR)/include_juce_cryptography_8cb807a8.o \
$(JUCE_OBJDIR)/include_juce_data_structures_7471b1e3.o \
$(JUCE_OBJDIR)/include_juce_dsp_aeb2060f.o \
@ -200,6 +201,11 @@ $(JUCE_OBJDIR)/include_juce_core_f26d17db.o: ../../JuceLibraryCode/include_juce_
@echo "Compiling include_juce_core.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o: ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_core_CompilationTime.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/include_juce_cryptography_8cb807a8.o: ../../JuceLibraryCode/include_juce_cryptography.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_cryptography.cpp"

View file

@ -43,6 +43,7 @@
89AD16514B1F4133FFEA1DF9 /* WebKit.framework */ = {isa = PBXBuildFile; fileRef = 96D99A08027CA35D6A4E5CFD; };
8C0AEA08A71075A6C765AEC9 /* AVKit.framework */ = {isa = PBXBuildFile; fileRef = 3B99CF94C44E2EE04635A439; };
91CD2BCE4CA07E18229EB436 /* RecentFilesMenuTemplate.nib */ = {isa = PBXBuildFile; fileRef = 9672FCE6167ADB567A9EB2F8; };
98D376BD41E5359370AD42D9 /* include_juce_core_CompilationTime.cpp */ = {isa = PBXBuildFile; fileRef = 640B7C54D35F5DF408327886; };
9BEA1428416CE06BF72FBAB8 /* DiscRecording.framework */ = {isa = PBXBuildFile; fileRef = 3DC90DA86565B0356B6E5E0B; };
9EACEA6BE8D0ACC72C12C080 /* include_juce_audio_devices.mm */ = {isa = PBXBuildFile; fileRef = 03A63C3CA6F24977F19C316D; };
9F15FD7A7CE83CFD98F07D59 /* Cocoa.framework */ = {isa = PBXBuildFile; fileRef = 02A2ED58B066B4D119F67913; };
@ -103,6 +104,7 @@
5CD17151385A69F1E07FE85B /* DSP */ /* DSP */ = {isa = PBXFileReference; lastKnownFileType = folder; name = DSP; path = ../../../DSP; sourceTree = "<group>"; };
60F2869DC345EAF2314D6C09 /* juce_audio_devices */ /* juce_audio_devices */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_audio_devices; path = ../../../../modules/juce_audio_devices; sourceTree = SOURCE_ROOT; };
61AE09C749B007B70A265D9B /* CoreMIDI.framework */ /* CoreMIDI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
640B7C54D35F5DF408327886 /* include_juce_core_CompilationTime.cpp */ /* include_juce_core_CompilationTime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_core_CompilationTime.cpp; path = ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp; sourceTree = SOURCE_ROOT; };
651ECE3C7BA845DDCFEE48F3 /* juce_osc */ /* juce_osc */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_osc; path = ../../../../modules/juce_osc; sourceTree = SOURCE_ROOT; };
6847A9B2C5E3C2ED56D8D4E7 /* juce_audio_basics */ /* juce_audio_basics */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_audio_basics; path = ../../../../modules/juce_audio_basics; sourceTree = SOURCE_ROOT; };
685A261BE78585293F3EAD36 /* Assets */ /* Assets */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Assets; path = ../../../Assets; sourceTree = "<group>"; };
@ -245,6 +247,7 @@
EDDA01B246C6128CAF7A2914,
4DF215D350FFE5E119CBA7E5,
3BC9753E0CD75A36DC742EE0,
640B7C54D35F5DF408327886,
6C5E26B4D28F8450435B8AE1,
F5F2EA2238973488632FC322,
C1E93FAF6C68A40A664422CD,
@ -450,6 +453,7 @@
712D81867EC698463252FA79,
611298FAC1A543BDD10D4C41,
D183F8140174ACCDDCD230A2,
98D376BD41E5359370AD42D9,
FF87532E62753EDFA3D29CAD,
2F76CA28C8C0EFC7453D0EB8,
6B5560283DEEBD6DD2D6C984,

View file

@ -1634,6 +1634,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -3101,6 +3104,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_dsp.cpp"/>

View file

@ -2365,6 +2365,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -3949,6 +3952,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -1634,6 +1634,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -3101,6 +3104,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_dsp.cpp"/>

View file

@ -2365,6 +2365,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -3949,6 +3952,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -1634,6 +1634,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -3101,6 +3104,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_dsp.cpp"/>

View file

@ -2365,6 +2365,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -3949,6 +3952,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -44,6 +44,7 @@
8C0AEA08A71075A6C765AEC9 /* AVKit.framework */ = {isa = PBXBuildFile; fileRef = 3B99CF94C44E2EE04635A439; };
8E63755144E29269FD82C897 /* Images.xcassets */ = {isa = PBXBuildFile; fileRef = 8135645508EEFDBDCDF2ADC6; };
9641E7E4F0B5C2A1B3E8709A /* UserNotifications.framework */ = {isa = PBXBuildFile; fileRef = 40D006CCDB1D33FF94B6ECAE; settings = { ATTRIBUTES = (Weak, ); }; };
98D376BD41E5359370AD42D9 /* include_juce_core_CompilationTime.cpp */ = {isa = PBXBuildFile; fileRef = 640B7C54D35F5DF408327886; };
9EACEA6BE8D0ACC72C12C080 /* include_juce_audio_devices.mm */ = {isa = PBXBuildFile; fileRef = 03A63C3CA6F24977F19C316D; };
AC783ECD84496E0B77911EEE /* OpenGLES.framework */ = {isa = PBXBuildFile; fileRef = 34F1320BC5C23702C08DF9F0; };
AE7FB2AC3885F4BF53A5DDA1 /* ImageIO.framework */ = {isa = PBXBuildFile; fileRef = 7983C452610C1638B7E78F12; };
@ -101,6 +102,7 @@
5BD7D121AD30987C08BE10E8 /* include_juce_audio_processors_lv2_libs.cpp */ /* include_juce_audio_processors_lv2_libs.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_audio_processors_lv2_libs.cpp; path = ../../JuceLibraryCode/include_juce_audio_processors_lv2_libs.cpp; sourceTree = SOURCE_ROOT; };
60F2869DC345EAF2314D6C09 /* juce_audio_devices */ /* juce_audio_devices */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_audio_devices; path = ../../../../modules/juce_audio_devices; sourceTree = SOURCE_ROOT; };
61AE09C749B007B70A265D9B /* CoreMIDI.framework */ /* CoreMIDI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
640B7C54D35F5DF408327886 /* include_juce_core_CompilationTime.cpp */ /* include_juce_core_CompilationTime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_core_CompilationTime.cpp; path = ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp; sourceTree = SOURCE_ROOT; };
651ECE3C7BA845DDCFEE48F3 /* juce_osc */ /* juce_osc */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_osc; path = ../../../../modules/juce_osc; sourceTree = SOURCE_ROOT; };
6847A9B2C5E3C2ED56D8D4E7 /* juce_audio_basics */ /* juce_audio_basics */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_audio_basics; path = ../../../../modules/juce_audio_basics; sourceTree = SOURCE_ROOT; };
685A261BE78585293F3EAD36 /* Assets */ /* Assets */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Assets; path = ../../../Assets; sourceTree = "<group>"; };
@ -252,6 +254,7 @@
EDDA01B246C6128CAF7A2914,
4DF215D350FFE5E119CBA7E5,
3BC9753E0CD75A36DC742EE0,
640B7C54D35F5DF408327886,
6C5E26B4D28F8450435B8AE1,
F5F2EA2238973488632FC322,
C1E93FAF6C68A40A664422CD,
@ -454,6 +457,7 @@
712D81867EC698463252FA79,
611298FAC1A543BDD10D4C41,
D183F8140174ACCDDCD230A2,
98D376BD41E5359370AD42D9,
FF87532E62753EDFA3D29CAD,
2F76CA28C8C0EFC7453D0EB8,
6B5560283DEEBD6DD2D6C984,

View file

@ -0,0 +1,8 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/
#include <juce_core/juce_core_CompilationTime.cpp>

View file

@ -1145,6 +1145,7 @@ add_library( ${BINARY_NAME}
"../../../../../modules/juce_core/zip/juce_ZipFile.h"
"../../../../../modules/juce_core/juce_core.cpp"
"../../../../../modules/juce_core/juce_core.mm"
"../../../../../modules/juce_core/juce_core_CompilationTime.cpp"
"../../../../../modules/juce_core/juce_core.h"
"../../../../../modules/juce_data_structures/app_properties/juce_ApplicationProperties.cpp"
"../../../../../modules/juce_data_structures/app_properties/juce_ApplicationProperties.h"
@ -2203,6 +2204,7 @@ add_library( ${BINARY_NAME}
"../../../JuceLibraryCode/include_juce_audio_processors_lv2_libs.cpp"
"../../../JuceLibraryCode/include_juce_audio_utils.cpp"
"../../../JuceLibraryCode/include_juce_core.cpp"
"../../../JuceLibraryCode/include_juce_core_CompilationTime.cpp"
"../../../JuceLibraryCode/include_juce_data_structures.cpp"
"../../../JuceLibraryCode/include_juce_events.cpp"
"../../../JuceLibraryCode/include_juce_graphics.cpp"
@ -3321,6 +3323,7 @@ set_source_files_properties(
"../../../../../modules/juce_core/zip/juce_ZipFile.h"
"../../../../../modules/juce_core/juce_core.cpp"
"../../../../../modules/juce_core/juce_core.mm"
"../../../../../modules/juce_core/juce_core_CompilationTime.cpp"
"../../../../../modules/juce_core/juce_core.h"
"../../../../../modules/juce_data_structures/app_properties/juce_ApplicationProperties.cpp"
"../../../../../modules/juce_data_structures/app_properties/juce_ApplicationProperties.h"

View file

@ -81,6 +81,7 @@ OBJECTS_APP := \
$(JUCE_OBJDIR)/include_juce_audio_processors_lv2_libs_12bdca08.o \
$(JUCE_OBJDIR)/include_juce_audio_utils_9f9fb2d6.o \
$(JUCE_OBJDIR)/include_juce_core_f26d17db.o \
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o \
$(JUCE_OBJDIR)/include_juce_data_structures_7471b1e3.o \
$(JUCE_OBJDIR)/include_juce_events_fd7d695.o \
$(JUCE_OBJDIR)/include_juce_graphics_f817e147.o \
@ -146,6 +147,11 @@ $(JUCE_OBJDIR)/include_juce_core_f26d17db.o: ../../JuceLibraryCode/include_juce_
@echo "Compiling include_juce_core.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o: ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_core_CompilationTime.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/include_juce_data_structures_7471b1e3.o: ../../JuceLibraryCode/include_juce_data_structures.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_data_structures.cpp"

View file

@ -26,6 +26,7 @@
7BB1EEA0BB910DD93C1DBAD5 /* include_juce_audio_processors_ara.cpp */ = {isa = PBXBuildFile; fileRef = CBD298606CB4777F17CFCC2F; };
7E870C094BAE67D7EB149F1C /* include_juce_events.mm */ = {isa = PBXBuildFile; fileRef = 248FAA119A4FC24C522165EF; };
8A0F71A4EEC7FE694352DD94 /* Accelerate.framework */ = {isa = PBXBuildFile; fileRef = 9EADBF913B7A454B6BE93A4A; };
8D9CDFADB3DBB660B91721BA /* include_juce_core_CompilationTime.cpp */ = {isa = PBXBuildFile; fileRef = F44F53AD342822E3926F6D07; };
9031C69145EE085B60904363 /* IOKit.framework */ = {isa = PBXBuildFile; fileRef = 43775DC3D9F7917846EA5327; };
9D47995A33BBA693ED435B31 /* include_juce_gui_extra.mm */ = {isa = PBXBuildFile; fileRef = B06AE97C86D27E7FEBCB4631; };
A545463A201EC7C2F79A330A /* Metal.framework */ = {isa = PBXBuildFile; fileRef = 732FE1B1B951AB410C8153BD; settings = { ATTRIBUTES = (Weak, ); }; };
@ -85,6 +86,7 @@
E575FE2AD2F19FA6AEB536C2 /* juce_core */ /* juce_core */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_core; path = ../../../../modules/juce_core; sourceTree = SOURCE_ROOT; };
EDD11E2CC0B18196ADA0C87B /* include_juce_data_structures.mm */ /* include_juce_data_structures.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = include_juce_data_structures.mm; path = ../../JuceLibraryCode/include_juce_data_structures.mm; sourceTree = SOURCE_ROOT; };
EE758AD71415EB31BD3E82F3 /* DiscRecording.framework */ /* DiscRecording.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DiscRecording.framework; path = System/Library/Frameworks/DiscRecording.framework; sourceTree = SDKROOT; };
F44F53AD342822E3926F6D07 /* include_juce_core_CompilationTime.cpp */ /* include_juce_core_CompilationTime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_core_CompilationTime.cpp; path = ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp; sourceTree = SOURCE_ROOT; };
FAAB4EAE4A57B642D3B9EC23 /* RecentFilesMenuTemplate.nib */ /* RecentFilesMenuTemplate.nib */ = {isa = PBXFileReference; lastKnownFileType = file.nib; name = RecentFilesMenuTemplate.nib; path = RecentFilesMenuTemplate.nib; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
@ -145,6 +147,7 @@
932123993B04597421D5C406,
BAFDA8DE51E7A69E477439EB,
24425FFB0BCC7E54CADAA013,
F44F53AD342822E3926F6D07,
EDD11E2CC0B18196ADA0C87B,
248FAA119A4FC24C522165EF,
7E951216B6138C76653B1460,
@ -316,6 +319,7 @@
2028993D80CFDE5A0ABA4A52,
C7B090C29D8DE4D2503204B1,
FFAF94080FF4A9995B33151E,
8D9CDFADB3DBB660B91721BA,
D2CECF93178A1738DA02CA4A,
7E870C094BAE67D7EB149F1C,
65FC2E13B65977FED63BDDE3,

View file

@ -1453,6 +1453,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\app_properties\juce_ApplicationProperties.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -2698,6 +2701,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_events.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_graphics.cpp">

View file

@ -2041,6 +2041,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_data_structures\app_properties\juce_ApplicationProperties.cpp">
<Filter>JUCE Modules\juce_data_structures\app_properties</Filter>
</ClCompile>
@ -3382,6 +3385,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -27,6 +27,7 @@
7E870C094BAE67D7EB149F1C /* include_juce_events.mm */ = {isa = PBXBuildFile; fileRef = 248FAA119A4FC24C522165EF; };
893A86EF99F57B81286E58A1 /* CoreImage.framework */ = {isa = PBXBuildFile; fileRef = F40C1815F7E7E4FBAF3A3091; };
8A0F71A4EEC7FE694352DD94 /* Accelerate.framework */ = {isa = PBXBuildFile; fileRef = 9EADBF913B7A454B6BE93A4A; };
8D9CDFADB3DBB660B91721BA /* include_juce_core_CompilationTime.cpp */ = {isa = PBXBuildFile; fileRef = F44F53AD342822E3926F6D07; };
9D47995A33BBA693ED435B31 /* include_juce_gui_extra.mm */ = {isa = PBXBuildFile; fileRef = B06AE97C86D27E7FEBCB4631; };
A545463A201EC7C2F79A330A /* Metal.framework */ = {isa = PBXBuildFile; fileRef = 732FE1B1B951AB410C8153BD; settings = { ATTRIBUTES = (Weak, ); }; };
A783F6E198806332E7FB9744 /* Images.xcassets */ = {isa = PBXBuildFile; fileRef = 8693552B5FA53C2003A66302; };
@ -93,6 +94,7 @@
E575FE2AD2F19FA6AEB536C2 /* juce_core */ /* juce_core */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_core; path = ../../../../modules/juce_core; sourceTree = SOURCE_ROOT; };
EDD11E2CC0B18196ADA0C87B /* include_juce_data_structures.mm */ /* include_juce_data_structures.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = include_juce_data_structures.mm; path = ../../JuceLibraryCode/include_juce_data_structures.mm; sourceTree = SOURCE_ROOT; };
F40C1815F7E7E4FBAF3A3091 /* CoreImage.framework */ /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; };
F44F53AD342822E3926F6D07 /* include_juce_core_CompilationTime.cpp */ /* include_juce_core_CompilationTime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_core_CompilationTime.cpp; path = ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp; sourceTree = SOURCE_ROOT; };
F454EA288AEBA354CF288214 /* UserNotifications.framework */ /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
/* End PBXFileReference section */
@ -159,6 +161,7 @@
932123993B04597421D5C406,
BAFDA8DE51E7A69E477439EB,
24425FFB0BCC7E54CADAA013,
F44F53AD342822E3926F6D07,
EDD11E2CC0B18196ADA0C87B,
248FAA119A4FC24C522165EF,
7E951216B6138C76653B1460,
@ -332,6 +335,7 @@
2028993D80CFDE5A0ABA4A52,
C7B090C29D8DE4D2503204B1,
FFAF94080FF4A9995B33151E,
8D9CDFADB3DBB660B91721BA,
D2CECF93178A1738DA02CA4A,
7E870C094BAE67D7EB149F1C,
65FC2E13B65977FED63BDDE3,

View file

@ -0,0 +1,8 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/
#include <juce_core/juce_core_CompilationTime.cpp>

View file

@ -1178,6 +1178,7 @@ add_library( ${BINARY_NAME}
"../../../../../modules/juce_core/zip/juce_ZipFile.h"
"../../../../../modules/juce_core/juce_core.cpp"
"../../../../../modules/juce_core/juce_core.mm"
"../../../../../modules/juce_core/juce_core_CompilationTime.cpp"
"../../../../../modules/juce_core/juce_core.h"
"../../../../../modules/juce_cryptography/encryption/juce_BlowFish.cpp"
"../../../../../modules/juce_cryptography/encryption/juce_BlowFish.h"
@ -2373,6 +2374,7 @@ add_library( ${BINARY_NAME}
"../../../JuceLibraryCode/include_juce_audio_processors_lv2_libs.cpp"
"../../../JuceLibraryCode/include_juce_audio_utils.cpp"
"../../../JuceLibraryCode/include_juce_core.cpp"
"../../../JuceLibraryCode/include_juce_core_CompilationTime.cpp"
"../../../JuceLibraryCode/include_juce_cryptography.cpp"
"../../../JuceLibraryCode/include_juce_data_structures.cpp"
"../../../JuceLibraryCode/include_juce_dsp.cpp"
@ -3507,6 +3509,7 @@ set_source_files_properties(
"../../../../../modules/juce_core/zip/juce_ZipFile.h"
"../../../../../modules/juce_core/juce_core.cpp"
"../../../../../modules/juce_core/juce_core.mm"
"../../../../../modules/juce_core/juce_core_CompilationTime.cpp"
"../../../../../modules/juce_core/juce_core.h"
"../../../../../modules/juce_cryptography/encryption/juce_BlowFish.cpp"
"../../../../../modules/juce_cryptography/encryption/juce_BlowFish.h"

View file

@ -88,6 +88,7 @@ OBJECTS_APP := \
$(JUCE_OBJDIR)/include_juce_audio_processors_lv2_libs_12bdca08.o \
$(JUCE_OBJDIR)/include_juce_audio_utils_9f9fb2d6.o \
$(JUCE_OBJDIR)/include_juce_core_f26d17db.o \
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o \
$(JUCE_OBJDIR)/include_juce_cryptography_8cb807a8.o \
$(JUCE_OBJDIR)/include_juce_data_structures_7471b1e3.o \
$(JUCE_OBJDIR)/include_juce_dsp_aeb2060f.o \
@ -191,6 +192,11 @@ $(JUCE_OBJDIR)/include_juce_core_f26d17db.o: ../../JuceLibraryCode/include_juce_
@echo "Compiling include_juce_core.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o: ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_core_CompilationTime.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/include_juce_cryptography_8cb807a8.o: ../../JuceLibraryCode/include_juce_cryptography.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_cryptography.cpp"

View file

@ -9,6 +9,7 @@
/* Begin PBXBuildFile section */
025B22813EA4E34CE3630B9A /* IOConfigurationWindow.cpp */ = {isa = PBXBuildFile; fileRef = C37B2E77AAB6C9E13729BF99; };
075C54DDDBDEA5AAD2F60154 /* include_juce_graphics.mm */ = {isa = PBXBuildFile; fileRef = 82800DBA287EF4BAB13B42FB; };
08E08AEF1DFE00F06F5ED160 /* include_juce_core_CompilationTime.cpp */ = {isa = PBXBuildFile; fileRef = DB6C39B4C628E31A58A28675; };
09309BD494A05931864B6730 /* PluginGraph.cpp */ = {isa = PBXBuildFile; fileRef = 0B1CC8C80F6F99BDE7D6AEC9; };
0F20A4AE04736634F097F5A6 /* include_juce_audio_utils.mm */ = {isa = PBXBuildFile; fileRef = B285CAB91AE928C476CA4F9C; };
15CCE43D7DCFC649638919D4 /* include_juce_audio_basics.mm */ = {isa = PBXBuildFile; fileRef = 4C7D82F9274A4F9DBF11235C; };
@ -124,6 +125,7 @@
CA726B9AA0EC87B58D005C8D /* ARAPlugin.h */ /* ARAPlugin.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ARAPlugin.h; path = ../../Source/Plugins/ARAPlugin.h; sourceTree = SOURCE_ROOT; };
D313CF37B25D7FD313C4F336 /* OpenGL.framework */ /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
D4EBC17BDB7F88CCBC76730B /* AudioToolbox.framework */ /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
DB6C39B4C628E31A58A28675 /* include_juce_core_CompilationTime.cpp */ /* include_juce_core_CompilationTime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_core_CompilationTime.cpp; path = ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp; sourceTree = SOURCE_ROOT; };
E19F52E4D8928B850832C57F /* include_juce_graphics_Harfbuzz.cpp */ /* include_juce_graphics_Harfbuzz.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_graphics_Harfbuzz.cpp; path = ../../JuceLibraryCode/include_juce_graphics_Harfbuzz.cpp; sourceTree = SOURCE_ROOT; };
E68018DE199135B7F738FB17 /* CoreAudioKit.framework */ /* CoreAudioKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudioKit.framework; path = System/Library/Frameworks/CoreAudioKit.framework; sourceTree = SDKROOT; };
F14CDB17EFE157DA3C3A5A91 /* IOConfigurationWindow.h */ /* IOConfigurationWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IOConfigurationWindow.h; path = ../../Source/Plugins/IOConfigurationWindow.h; sourceTree = SOURCE_ROOT; };
@ -199,6 +201,7 @@
5183A94449F6317518C48B0C,
B285CAB91AE928C476CA4F9C,
683CEE986A2467C850FE99E6,
DB6C39B4C628E31A58A28675,
B8E24A5CEE6B7055537725CF,
5EF1D381F42AA8764597F189,
36689CA4EFC2AF183A0848AE,
@ -427,6 +430,7 @@
60BBD03840ABDD719FED194F,
0F20A4AE04736634F097F5A6,
76A80851698FC773D2479B4E,
08E08AEF1DFE00F06F5ED160,
E4A926EF695823F0F13268FF,
A09E93F1B354E1FF8B3E9ABE,
A5F0B3B7175766C8AF1D6C3E,

View file

@ -1461,6 +1461,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -2869,6 +2872,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_dsp.cpp"/>

View file

@ -2116,6 +2116,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -3631,6 +3634,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -1461,6 +1461,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -2869,6 +2872,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_dsp.cpp"/>

View file

@ -2116,6 +2116,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -3631,6 +3634,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -1461,6 +1461,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -2869,6 +2872,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_dsp.cpp"/>

View file

@ -2116,6 +2116,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -3631,6 +3634,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -9,6 +9,7 @@
/* Begin PBXBuildFile section */
025B22813EA4E34CE3630B9A /* IOConfigurationWindow.cpp */ = {isa = PBXBuildFile; fileRef = C37B2E77AAB6C9E13729BF99; };
075C54DDDBDEA5AAD2F60154 /* include_juce_graphics.mm */ = {isa = PBXBuildFile; fileRef = 82800DBA287EF4BAB13B42FB; };
08E08AEF1DFE00F06F5ED160 /* include_juce_core_CompilationTime.cpp */ = {isa = PBXBuildFile; fileRef = DB6C39B4C628E31A58A28675; };
09309BD494A05931864B6730 /* PluginGraph.cpp */ = {isa = PBXBuildFile; fileRef = 0B1CC8C80F6F99BDE7D6AEC9; };
0F20A4AE04736634F097F5A6 /* include_juce_audio_utils.mm */ = {isa = PBXBuildFile; fileRef = B285CAB91AE928C476CA4F9C; };
1570FCC5CDB7A44DF0077E39 /* CoreGraphics.framework */ = {isa = PBXBuildFile; fileRef = 2F7D965A1284CEF0B20EB657; };
@ -129,6 +130,7 @@
CFFA8E9A7820C5A27B4393C9 /* CoreImage.framework */ /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; };
D0026F0A29B486D87E92BB8B /* OpenGLES.framework */ /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
D4EBC17BDB7F88CCBC76730B /* AudioToolbox.framework */ /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
DB6C39B4C628E31A58A28675 /* include_juce_core_CompilationTime.cpp */ /* include_juce_core_CompilationTime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_core_CompilationTime.cpp; path = ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp; sourceTree = SOURCE_ROOT; };
E19F52E4D8928B850832C57F /* include_juce_graphics_Harfbuzz.cpp */ /* include_juce_graphics_Harfbuzz.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_graphics_Harfbuzz.cpp; path = ../../JuceLibraryCode/include_juce_graphics_Harfbuzz.cpp; sourceTree = SOURCE_ROOT; };
E68018DE199135B7F738FB17 /* CoreAudioKit.framework */ /* CoreAudioKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudioKit.framework; path = System/Library/Frameworks/CoreAudioKit.framework; sourceTree = SDKROOT; };
F14CDB17EFE157DA3C3A5A91 /* IOConfigurationWindow.h */ /* IOConfigurationWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IOConfigurationWindow.h; path = ../../Source/Plugins/IOConfigurationWindow.h; sourceTree = SOURCE_ROOT; };
@ -208,6 +210,7 @@
5183A94449F6317518C48B0C,
B285CAB91AE928C476CA4F9C,
683CEE986A2467C850FE99E6,
DB6C39B4C628E31A58A28675,
B8E24A5CEE6B7055537725CF,
5EF1D381F42AA8764597F189,
36689CA4EFC2AF183A0848AE,
@ -440,6 +443,7 @@
60BBD03840ABDD719FED194F,
0F20A4AE04736634F097F5A6,
76A80851698FC773D2479B4E,
08E08AEF1DFE00F06F5ED160,
E4A926EF695823F0F13268FF,
A09E93F1B354E1FF8B3E9ABE,
A5F0B3B7175766C8AF1D6C3E,

View file

@ -0,0 +1,8 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/
#include <juce_core/juce_core_CompilationTime.cpp>

View file

@ -74,6 +74,7 @@ endif
OBJECTS_CONSOLEAPP := \
$(JUCE_OBJDIR)/Main_90ebc5c2.o \
$(JUCE_OBJDIR)/include_juce_core_f26d17db.o \
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o \
.PHONY: clean all strip
@ -98,6 +99,11 @@ $(JUCE_OBJDIR)/include_juce_core_f26d17db.o: ../../JuceLibraryCode/include_juce_
@echo "Compiling include_juce_core.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_CONSOLEAPP) $(JUCE_CFLAGS_CONSOLEAPP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o: ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_core_CompilationTime.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_CONSOLEAPP) $(JUCE_CFLAGS_CONSOLEAPP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/execinfo.cmd:
-$(V_AT)mkdir -p $(@D)
-@if [ -z "$(V_AT)" ]; then echo "Checking if we need to link libexecinfo"; fi

View file

@ -15,6 +15,7 @@
76329EF5627C14DD1C621F6E /* Security.framework */ = {isa = PBXBuildFile; fileRef = F9E4EBBA2682611A3978340C; };
9E4D85A3D54739A0FA80A446 /* include_juce_core.mm */ = {isa = PBXBuildFile; fileRef = D186E2D509765FAE0758F17D; };
C17566E1AACD033B3DD74E9F /* Foundation.framework */ = {isa = PBXBuildFile; fileRef = 6AA23C81496E022290EB2A0C; };
C72C2005E0871E7542A57DDA /* include_juce_core_CompilationTime.cpp */ = {isa = PBXBuildFile; fileRef = 85EE52F3EA830387CFC8BB96; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
@ -23,6 +24,7 @@
57DDB771ED96A256F190ADF8 /* Cocoa.framework */ /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
6AA23C81496E022290EB2A0C /* Foundation.framework */ /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
799073185F72F5FAD05253C3 /* ConsoleApp */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = BinaryBuilder; sourceTree = BUILT_PRODUCTS_DIR; };
85EE52F3EA830387CFC8BB96 /* include_juce_core_CompilationTime.cpp */ /* include_juce_core_CompilationTime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_core_CompilationTime.cpp; path = ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp; sourceTree = SOURCE_ROOT; };
8702176D2368B6F785546D2B /* juce_core */ /* juce_core */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_core; path = ../../../../modules/juce_core; sourceTree = SOURCE_ROOT; };
D186E2D509765FAE0758F17D /* include_juce_core.mm */ /* include_juce_core.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = include_juce_core.mm; path = ../../JuceLibraryCode/include_juce_core.mm; sourceTree = SOURCE_ROOT; };
D6C3594C8BEC94040AF108FE /* JuceHeader.h */ /* JuceHeader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = JuceHeader.h; path = ../../JuceLibraryCode/JuceHeader.h; sourceTree = SOURCE_ROOT; };
@ -73,6 +75,7 @@
isa = PBXGroup;
children = (
D186E2D509765FAE0758F17D,
85EE52F3EA830387CFC8BB96,
D6C3594C8BEC94040AF108FE,
);
name = "JUCE Library Code";
@ -182,6 +185,7 @@
files = (
3C6FF7689E2FD827A48E2303,
9E4D85A3D54739A0FA80A446,
C72C2005E0871E7542A57DDA,
);
runOnlyForDeploymentPostprocessing = 0;
};

View file

@ -496,9 +496,13 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\..\modules\juce_core\containers\juce_AbstractFifo.h"/>

View file

@ -481,9 +481,15 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\..\modules\juce_core\containers\juce_AbstractFifo.h">

View file

@ -0,0 +1,8 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/
#include <juce_core/juce_core_CompilationTime.cpp>

View file

@ -1149,6 +1149,7 @@ add_library( ${BINARY_NAME}
"../../../../../modules/juce_core/zip/juce_ZipFile.h"
"../../../../../modules/juce_core/juce_core.cpp"
"../../../../../modules/juce_core/juce_core.mm"
"../../../../../modules/juce_core/juce_core_CompilationTime.cpp"
"../../../../../modules/juce_core/juce_core.h"
"../../../../../modules/juce_cryptography/encryption/juce_BlowFish.cpp"
"../../../../../modules/juce_cryptography/encryption/juce_BlowFish.h"
@ -2280,6 +2281,7 @@ add_library( ${BINARY_NAME}
"../../../JuceLibraryCode/include_juce_audio_processors_lv2_libs.cpp"
"../../../JuceLibraryCode/include_juce_audio_utils.cpp"
"../../../JuceLibraryCode/include_juce_core.cpp"
"../../../JuceLibraryCode/include_juce_core_CompilationTime.cpp"
"../../../JuceLibraryCode/include_juce_cryptography.cpp"
"../../../JuceLibraryCode/include_juce_data_structures.cpp"
"../../../JuceLibraryCode/include_juce_events.cpp"
@ -3405,6 +3407,7 @@ set_source_files_properties(
"../../../../../modules/juce_core/zip/juce_ZipFile.h"
"../../../../../modules/juce_core/juce_core.cpp"
"../../../../../modules/juce_core/juce_core.mm"
"../../../../../modules/juce_core/juce_core_CompilationTime.cpp"
"../../../../../modules/juce_core/juce_core.h"
"../../../../../modules/juce_cryptography/encryption/juce_BlowFish.cpp"
"../../../../../modules/juce_cryptography/encryption/juce_BlowFish.h"

View file

@ -82,6 +82,7 @@ OBJECTS_APP := \
$(JUCE_OBJDIR)/include_juce_audio_processors_lv2_libs_12bdca08.o \
$(JUCE_OBJDIR)/include_juce_audio_utils_9f9fb2d6.o \
$(JUCE_OBJDIR)/include_juce_core_f26d17db.o \
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o \
$(JUCE_OBJDIR)/include_juce_cryptography_8cb807a8.o \
$(JUCE_OBJDIR)/include_juce_data_structures_7471b1e3.o \
$(JUCE_OBJDIR)/include_juce_events_fd7d695.o \
@ -155,6 +156,11 @@ $(JUCE_OBJDIR)/include_juce_core_f26d17db.o: ../../JuceLibraryCode/include_juce_
@echo "Compiling include_juce_core.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o: ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_core_CompilationTime.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/include_juce_cryptography_8cb807a8.o: ../../JuceLibraryCode/include_juce_cryptography.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_cryptography.cpp"

View file

@ -11,6 +11,7 @@
0977FEC02DAF29438583198A /* include_juce_core.mm */ = {isa = PBXBuildFile; fileRef = 01E0EEF68A11C1CAF180E173; };
0E39AB2B15DCE39E1055A646 /* include_juce_audio_processors_lv2_libs.cpp */ = {isa = PBXBuildFile; fileRef = AB2DE62887E2F58D821F3217; };
0FA2A3321630EBE83E439D99 /* include_juce_cryptography.mm */ = {isa = PBXBuildFile; fileRef = AFF729977947528F3E4AAA96; };
204FE224D562F0519DE438A4 /* include_juce_core_CompilationTime.cpp */ = {isa = PBXBuildFile; fileRef = BD85090C86849423E95A0014; };
2E28F61A64DEF942FE7B94C4 /* include_juce_audio_processors.mm */ = {isa = PBXBuildFile; fileRef = AED58461CE961C62A0E0A552; };
3717B9F9A0F7C9CB95F1BE7F /* include_juce_gui_extra.mm */ = {isa = PBXBuildFile; fileRef = 7BE6330821794919A88ED8ED; };
3C30D7C28C86F4054257DCD5 /* Cocoa.framework */ = {isa = PBXBuildFile; fileRef = C78806A6727F44EACFDED4A5; };
@ -93,6 +94,7 @@
B76F10A7778664E164A01934 /* juce_audio_basics */ /* juce_audio_basics */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_audio_basics; path = ../../../../modules/juce_audio_basics; sourceTree = SOURCE_ROOT; };
B9B80E3572715F63FFC3678B /* ClientComponent.h */ /* ClientComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ClientComponent.h; path = ../../Source/ClientComponent.h; sourceTree = SOURCE_ROOT; };
BA2E40409255F1B078406221 /* juce_data_structures */ /* juce_data_structures */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_data_structures; path = ../../../../modules/juce_data_structures; sourceTree = SOURCE_ROOT; };
BD85090C86849423E95A0014 /* include_juce_core_CompilationTime.cpp */ /* include_juce_core_CompilationTime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_core_CompilationTime.cpp; path = ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp; sourceTree = SOURCE_ROOT; };
C6E2284D86D93F1D9D5C7666 /* include_juce_audio_formats.mm */ /* include_juce_audio_formats.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = include_juce_audio_formats.mm; path = ../../JuceLibraryCode/include_juce_audio_formats.mm; sourceTree = SOURCE_ROOT; };
C78806A6727F44EACFDED4A5 /* Cocoa.framework */ /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
C8C4E9A4028028FF1F5B76F2 /* MetalKit.framework */ /* MetalKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalKit.framework; path = System/Library/Frameworks/MetalKit.framework; sourceTree = SDKROOT; };
@ -208,6 +210,7 @@
AB2DE62887E2F58D821F3217,
FCEBB157FB526741DB6791D1,
01E0EEF68A11C1CAF180E173,
BD85090C86849423E95A0014,
AFF729977947528F3E4AAA96,
7525879E73E8AF32FFA0CDDE,
33AA348465F512DBA8778DAF,
@ -353,6 +356,7 @@
0E39AB2B15DCE39E1055A646,
EA487FA4116517A8DFEE85B0,
0977FEC02DAF29438583198A,
204FE224D562F0519DE438A4,
0FA2A3321630EBE83E439D99,
9EFD2AA2FFF3C125FDAA4279,
C5E7BAD864E02CF37F7BD707,

View file

@ -1453,6 +1453,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -2783,6 +2786,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_events.cpp"/>

View file

@ -2071,6 +2071,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -3505,6 +3508,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -13,6 +13,7 @@
0FA2A3321630EBE83E439D99 /* include_juce_cryptography.mm */ = {isa = PBXBuildFile; fileRef = AFF729977947528F3E4AAA96; };
1282A62308CD1AC3F88A5D03 /* Images.xcassets */ = {isa = PBXBuildFile; fileRef = 5273768FBB55D0DD57A5E70C; };
1F7A8BD2B43B3D191132301D /* CoreImage.framework */ = {isa = PBXBuildFile; fileRef = E51ABCA80B75F33848F28184; };
204FE224D562F0519DE438A4 /* include_juce_core_CompilationTime.cpp */ = {isa = PBXBuildFile; fileRef = BD85090C86849423E95A0014; };
2E28F61A64DEF942FE7B94C4 /* include_juce_audio_processors.mm */ = {isa = PBXBuildFile; fileRef = AED58461CE961C62A0E0A552; };
366A216FDEBD7BDDC1BA12D9 /* CoreGraphics.framework */ = {isa = PBXBuildFile; fileRef = DA40ED39AF4B56000E5A2743; };
3717B9F9A0F7C9CB95F1BE7F /* include_juce_gui_extra.mm */ = {isa = PBXBuildFile; fileRef = 7BE6330821794919A88ED8ED; };
@ -99,6 +100,7 @@
B76F10A7778664E164A01934 /* juce_audio_basics */ /* juce_audio_basics */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_audio_basics; path = ../../../../modules/juce_audio_basics; sourceTree = SOURCE_ROOT; };
B9B80E3572715F63FFC3678B /* ClientComponent.h */ /* ClientComponent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ClientComponent.h; path = ../../Source/ClientComponent.h; sourceTree = SOURCE_ROOT; };
BA2E40409255F1B078406221 /* juce_data_structures */ /* juce_data_structures */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_data_structures; path = ../../../../modules/juce_data_structures; sourceTree = SOURCE_ROOT; };
BD85090C86849423E95A0014 /* include_juce_core_CompilationTime.cpp */ /* include_juce_core_CompilationTime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_core_CompilationTime.cpp; path = ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp; sourceTree = SOURCE_ROOT; };
C6E2284D86D93F1D9D5C7666 /* include_juce_audio_formats.mm */ /* include_juce_audio_formats.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = include_juce_audio_formats.mm; path = ../../JuceLibraryCode/include_juce_audio_formats.mm; sourceTree = SOURCE_ROOT; };
C821C5805007FFDC2636BBE6 /* OpenGLES.framework */ /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
C8C4E9A4028028FF1F5B76F2 /* MetalKit.framework */ /* MetalKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalKit.framework; path = System/Library/Frameworks/MetalKit.framework; sourceTree = SDKROOT; };
@ -223,6 +225,7 @@
AB2DE62887E2F58D821F3217,
FCEBB157FB526741DB6791D1,
01E0EEF68A11C1CAF180E173,
BD85090C86849423E95A0014,
AFF729977947528F3E4AAA96,
7525879E73E8AF32FFA0CDDE,
33AA348465F512DBA8778DAF,
@ -369,6 +372,7 @@
0E39AB2B15DCE39E1055A646,
EA487FA4116517A8DFEE85B0,
0977FEC02DAF29438583198A,
204FE224D562F0519DE438A4,
0FA2A3321630EBE83E439D99,
9EFD2AA2FFF3C125FDAA4279,
C5E7BAD864E02CF37F7BD707,

View file

@ -0,0 +1,8 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/
#include <juce_core/juce_core_CompilationTime.cpp>

View file

@ -124,6 +124,7 @@ OBJECTS_APP := \
$(JUCE_OBJDIR)/BinaryData_ce4232d4.o \
$(JUCE_OBJDIR)/include_juce_build_tools_f5069398.o \
$(JUCE_OBJDIR)/include_juce_core_f26d17db.o \
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o \
$(JUCE_OBJDIR)/include_juce_cryptography_8cb807a8.o \
$(JUCE_OBJDIR)/include_juce_data_structures_7471b1e3.o \
$(JUCE_OBJDIR)/include_juce_events_fd7d695.o \
@ -405,6 +406,11 @@ $(JUCE_OBJDIR)/include_juce_core_f26d17db.o: ../../JuceLibraryCode/include_juce_
@echo "Compiling include_juce_core.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o: ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_core_CompilationTime.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/include_juce_cryptography_8cb807a8.o: ../../JuceLibraryCode/include_juce_cryptography.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_cryptography.cpp"

View file

@ -13,6 +13,7 @@
09C4EDDF7F8B6E75EA3CE3A9 /* jucer_DocumentEditorComponent.cpp */ = {isa = PBXBuildFile; fileRef = BC3B310D42C489E8B8D93327; };
0A89E8E0E99C3B5B2B38F2E6 /* jucer_NewProjectWizard.cpp */ = {isa = PBXBuildFile; fileRef = C2835F16963B34839FC36220; };
0E783907C6214ADD59EC95DC /* jucer_Modules.cpp */ = {isa = PBXBuildFile; fileRef = F58B23995765C9FDBE28F871; };
10E26DA28CF28BBFDC64E796 /* include_juce_core_CompilationTime.cpp */ = {isa = PBXBuildFile; fileRef = 5F0374A45E6B5EC8E47D688F; };
11D42F7EC6E6539D79A7F4B1 /* QuartzCore.framework */ = {isa = PBXBuildFile; fileRef = E5D6C36496F5BC84D7213BE8; };
13180B0F6CE42B355C90CF3C /* include_juce_graphics_Harfbuzz.cpp */ = {isa = PBXBuildFile; fileRef = 39F69DABE999E4B2CBC6041F; };
1321E6C1C6170B6C898AD09D /* Icon.icns */ = {isa = PBXBuildFile; fileRef = 951128CA33CCDEF570436B1C; };
@ -186,6 +187,7 @@
5B3532C5F103DAC87B4A5675 /* wizard_GUI.svg */ /* wizard_GUI.svg */ = {isa = PBXFileReference; lastKnownFileType = file.svg; name = wizard_GUI.svg; path = ../../Source/BinaryData/Icons/wizard_GUI.svg; sourceTree = SOURCE_ROOT; };
5BF0374EB908F0476BD8ED42 /* jucer_AudioComponentTemplate.h */ /* jucer_AudioComponentTemplate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jucer_AudioComponentTemplate.h; path = ../../Source/BinaryData/Templates/jucer_AudioComponentTemplate.h; sourceTree = SOURCE_ROOT; };
5E4EB84A7983AB31366A3490 /* jucer_ModuleTreeItems.h */ /* jucer_ModuleTreeItems.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jucer_ModuleTreeItems.h; path = ../../Source/Project/UI/Sidebar/jucer_ModuleTreeItems.h; sourceTree = SOURCE_ROOT; };
5F0374A45E6B5EC8E47D688F /* include_juce_core_CompilationTime.cpp */ /* include_juce_core_CompilationTime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_core_CompilationTime.cpp; path = ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp; sourceTree = SOURCE_ROOT; };
5F6584B675E30761521A9F42 /* colourscheme_light.xml */ /* colourscheme_light.xml */ = {isa = PBXFileReference; lastKnownFileType = file.xml; name = colourscheme_light.xml; path = ../../Source/BinaryData/colourscheme_light.xml; sourceTree = SOURCE_ROOT; };
62922B3C0620368D1799A653 /* wizard_OpenGL.svg */ /* wizard_OpenGL.svg */ = {isa = PBXFileReference; lastKnownFileType = file.svg; name = wizard_OpenGL.svg; path = ../../Source/BinaryData/Icons/wizard_OpenGL.svg; sourceTree = SOURCE_ROOT; };
630DC5EAA31D3EE60B2D989F /* jucer_GenericComponentHandler.h */ /* jucer_GenericComponentHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = jucer_GenericComponentHandler.h; path = ../../Source/ComponentEditor/Components/jucer_GenericComponentHandler.h; sourceTree = SOURCE_ROOT; };
@ -524,6 +526,7 @@
4F687965FBE86EAFDB3ACFEC,
E2687B099347B364D1919A9B,
DB9C8E35DF815B803CB4A9CF,
5F0374A45E6B5EC8E47D688F,
D766BB9D8C32B5560F0493F3,
1DE5BBC777FB64798D823002,
5867DC4E39DF8539B54C0D59,
@ -1069,6 +1072,7 @@
3C5267E06A897B0DC0F7EA50,
4C743A3DA8682EEE89BDBD28,
5DD883699B85E4C492CAD065,
10E26DA28CF28BBFDC64E796,
D5C9125F65493CA481F18E53,
02E8F35A8E0D4A0DF6F38D60,
234B6BA2952CBC7C61EF70EF,

View file

@ -635,6 +635,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -1894,6 +1897,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_events.cpp"/>

View file

@ -1012,6 +1012,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -2362,6 +2365,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -635,6 +635,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -1894,6 +1897,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_events.cpp"/>

View file

@ -1012,6 +1012,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -2362,6 +2365,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -635,6 +635,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -1894,6 +1897,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_events.cpp"/>

View file

@ -1012,6 +1012,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -2362,6 +2365,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -0,0 +1,8 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/
#include <juce_core/juce_core_CompilationTime.cpp>

View file

@ -82,6 +82,7 @@ OBJECTS_CONSOLEAPP := \
$(JUCE_OBJDIR)/include_juce_audio_processors_lv2_libs_12bdca08.o \
$(JUCE_OBJDIR)/include_juce_audio_utils_9f9fb2d6.o \
$(JUCE_OBJDIR)/include_juce_core_f26d17db.o \
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o \
$(JUCE_OBJDIR)/include_juce_cryptography_8cb807a8.o \
$(JUCE_OBJDIR)/include_juce_data_structures_7471b1e3.o \
$(JUCE_OBJDIR)/include_juce_dsp_aeb2060f.o \
@ -158,6 +159,11 @@ $(JUCE_OBJDIR)/include_juce_core_f26d17db.o: ../../JuceLibraryCode/include_juce_
@echo "Compiling include_juce_core.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_CONSOLEAPP) $(JUCE_CFLAGS_CONSOLEAPP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/include_juce_core_CompilationTime_9257742c.o: ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_core_CompilationTime.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_CONSOLEAPP) $(JUCE_CFLAGS_CONSOLEAPP) -o "$@" -c "$<"
$(JUCE_OBJDIR)/include_juce_cryptography_8cb807a8.o: ../../JuceLibraryCode/include_juce_cryptography.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_cryptography.cpp"

View file

@ -15,6 +15,7 @@
26064360DE64348CC75E6340 /* Metal.framework */ = {isa = PBXBuildFile; fileRef = 5B38ECC1B68681432732938C; settings = { ATTRIBUTES = (Weak, ); }; };
263250D6F359CE403B0566FF /* IOKit.framework */ = {isa = PBXBuildFile; fileRef = 8C449538B266A891147103D6; };
2AD7D2E1785FCABA09AE3764 /* Security.framework */ = {isa = PBXBuildFile; fileRef = 5CF6DD6C5477309A1E9AB644; };
2DC417FBA2F857098B3502B2 /* include_juce_core_CompilationTime.cpp */ = {isa = PBXBuildFile; fileRef = 8048091E98040AC90FF4715D; };
32010EA67EEFE024B9CE1CB5 /* DiscRecording.framework */ = {isa = PBXBuildFile; fileRef = B4202EE1243A8FCA29996D05; };
33D24B475EA928745A87EDDB /* include_juce_audio_devices.mm */ = {isa = PBXBuildFile; fileRef = 00CDB93410EA5AECBA5ADA95; };
36F598D91354C54D8B028843 /* include_juce_graphics_Harfbuzz.cpp */ = {isa = PBXBuildFile; fileRef = DA5B8888560BA7B144F88DA5; };
@ -80,6 +81,7 @@
748F996DD2778AD1442AECA6 /* juce_product_unlocking */ /* juce_product_unlocking */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_product_unlocking; path = ../../../../modules/juce_product_unlocking; sourceTree = SOURCE_ROOT; };
7898C73DCA6FA9D9CF669D32 /* AudioToolbox.framework */ /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
7C4E4601FFB642386AD27B07 /* juce_events */ /* juce_events */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_events; path = ../../../../modules/juce_events; sourceTree = SOURCE_ROOT; };
8048091E98040AC90FF4715D /* include_juce_core_CompilationTime.cpp */ /* include_juce_core_CompilationTime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_core_CompilationTime.cpp; path = ../../JuceLibraryCode/include_juce_core_CompilationTime.cpp; sourceTree = SOURCE_ROOT; };
8165CEA1A009721D3D05D98F /* juce_core */ /* juce_core */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_core; path = ../../../../modules/juce_core; sourceTree = SOURCE_ROOT; };
846E187EC2E797B982861CA4 /* include_juce_audio_utils.mm */ /* include_juce_audio_utils.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = include_juce_audio_utils.mm; path = ../../JuceLibraryCode/include_juce_audio_utils.mm; sourceTree = SOURCE_ROOT; };
88AA2B9840A6792BBAD559EE /* Main.cpp */ /* Main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = ../../Source/Main.cpp; sourceTree = SOURCE_ROOT; };
@ -169,6 +171,7 @@
45FB94C047D1ECAACA9462B7,
846E187EC2E797B982861CA4,
AB19DDC8458D2A420E6D8AC3,
8048091E98040AC90FF4715D,
08ED235CBE02E0FB4BE4653E,
302A999B2803C0D5C15D237C,
4CA19EC18C2BC536B3636842,
@ -328,6 +331,7 @@
79FE3F2D2EFAC333283E5D90,
3822F598DA7044E5DB7633A9,
9B48039CDFD679AD944BAC70,
2DC417FBA2F857098B3502B2,
FC139F56BD13A2C78D21076E,
5CB3596030B0DD3763CAF85C,
FD15EF066F019B57F0601D71,

View file

@ -1469,6 +1469,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -2964,6 +2967,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_dsp.cpp"/>

View file

@ -2137,6 +2137,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -3742,6 +3745,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -1469,6 +1469,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -2964,6 +2967,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_dsp.cpp"/>

View file

@ -2137,6 +2137,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -3742,6 +3745,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -1469,6 +1469,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -2964,6 +2967,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_dsp.cpp"/>

View file

@ -2137,6 +2137,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -3742,6 +3745,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -0,0 +1,8 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/
#include <juce_core/juce_core_CompilationTime.cpp>

View file

@ -1452,6 +1452,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -2763,6 +2766,7 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_events.cpp"/>

View file

@ -2068,6 +2068,9 @@
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core.mm">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_core\juce_core_CompilationTime.cpp">
<Filter>JUCE Modules\juce_core</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_cryptography\encryption\juce_BlowFish.cpp">
<Filter>JUCE Modules\juce_cryptography\encryption</Filter>
</ClCompile>
@ -3484,6 +3487,9 @@
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core_CompilationTime.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp">
<Filter>JUCE Library Code</Filter>
</ClCompile>

View file

@ -0,0 +1,8 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/
#include <juce_core/juce_core_CompilationTime.cpp>