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

@ -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>