mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
Resave all projects
This commit is contained in:
parent
3988d492ac
commit
a469daf5be
62 changed files with 322 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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"/>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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"/>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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"/>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue