mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Re-saved all projects
This commit is contained in:
parent
4eeca92437
commit
52bdaf0746
44 changed files with 286 additions and 0 deletions
|
|
@ -498,6 +498,8 @@ add_library( ${BINARY_NAME}
|
|||
"../../../../../modules/juce_blocks_basics/blocks/juce_Block.cpp"
|
||||
"../../../../../modules/juce_blocks_basics/blocks/juce_Block.h"
|
||||
"../../../../../modules/juce_blocks_basics/blocks/juce_BlockConfigManager.h"
|
||||
"../../../../../modules/juce_blocks_basics/blocks/juce_BlocksVersion.cpp"
|
||||
"../../../../../modules/juce_blocks_basics/blocks/juce_BlocksVersion.h"
|
||||
"../../../../../modules/juce_blocks_basics/blocks/juce_ControlButton.h"
|
||||
"../../../../../modules/juce_blocks_basics/blocks/juce_LEDGrid.h"
|
||||
"../../../../../modules/juce_blocks_basics/blocks/juce_LEDRow.h"
|
||||
|
|
@ -517,6 +519,7 @@ add_library( ${BINARY_NAME}
|
|||
"../../../../../modules/juce_blocks_basics/topology/internal/juce_BandwidthStatsLogger.cpp"
|
||||
"../../../../../modules/juce_blocks_basics/topology/internal/juce_BlockImplementation.cpp"
|
||||
"../../../../../modules/juce_blocks_basics/topology/internal/juce_ConnectedDeviceGroup.cpp"
|
||||
"../../../../../modules/juce_blocks_basics/topology/internal/juce_DepreciatedVersionReader.cpp"
|
||||
"../../../../../modules/juce_blocks_basics/topology/internal/juce_Detector.cpp"
|
||||
"../../../../../modules/juce_blocks_basics/topology/internal/juce_DetectorHolder.cpp"
|
||||
"../../../../../modules/juce_blocks_basics/topology/internal/juce_DeviceInfo.cpp"
|
||||
|
|
@ -905,6 +908,7 @@ add_library( ${BINARY_NAME}
|
|||
"../../../../../modules/juce_data_structures/values/juce_ValueTree.h"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.cpp"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.h"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.cpp"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.h"
|
||||
"../../../../../modules/juce_data_structures/juce_data_structures.cpp"
|
||||
"../../../../../modules/juce_data_structures/juce_data_structures.mm"
|
||||
|
|
@ -2083,6 +2087,8 @@ set_source_files_properties("../../../../../modules/juce_audio_utils/juce_audio_
|
|||
set_source_files_properties("../../../../../modules/juce_blocks_basics/blocks/juce_Block.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_blocks_basics/blocks/juce_Block.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_blocks_basics/blocks/juce_BlockConfigManager.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_blocks_basics/blocks/juce_BlocksVersion.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_blocks_basics/blocks/juce_BlocksVersion.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_blocks_basics/blocks/juce_ControlButton.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_blocks_basics/blocks/juce_LEDGrid.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_blocks_basics/blocks/juce_LEDRow.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
|
|
@ -2102,6 +2108,7 @@ set_source_files_properties("../../../../../modules/juce_blocks_basics/protocol/
|
|||
set_source_files_properties("../../../../../modules/juce_blocks_basics/topology/internal/juce_BandwidthStatsLogger.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_blocks_basics/topology/internal/juce_BlockImplementation.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_blocks_basics/topology/internal/juce_ConnectedDeviceGroup.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_blocks_basics/topology/internal/juce_DepreciatedVersionReader.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_blocks_basics/topology/internal/juce_Detector.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_blocks_basics/topology/internal/juce_DetectorHolder.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_blocks_basics/topology/internal/juce_DeviceInfo.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
|
|
@ -2490,6 +2497,7 @@ set_source_files_properties("../../../../../modules/juce_data_structures/values/
|
|||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueTree.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/juce_data_structures.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/juce_data_structures.mm" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
|
|
|
|||
|
|
@ -666,6 +666,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_Block.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_BandwidthStatsLogger.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
@ -675,6 +678,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_ConnectedDeviceGroup.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_DepreciatedVersionReader.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_Detector.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
@ -1191,6 +1197,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
@ -2478,6 +2487,7 @@
|
|||
<ClInclude Include="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_Block.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlockConfigManager.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_ControlButton.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_LEDGrid.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_LEDRow.h"/>
|
||||
|
|
|
|||
|
|
@ -1099,6 +1099,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_Block.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_BandwidthStatsLogger.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -1108,6 +1111,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_ConnectedDeviceGroup.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_DepreciatedVersionReader.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_Detector.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -1645,6 +1651,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -3585,6 +3594,9 @@
|
|||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlockConfigManager.h">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.h">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_ControlButton.h">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClInclude>
|
||||
|
|
|
|||
|
|
@ -666,6 +666,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_Block.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_BandwidthStatsLogger.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
@ -675,6 +678,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_ConnectedDeviceGroup.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_DepreciatedVersionReader.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_Detector.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
@ -1191,6 +1197,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
@ -2478,6 +2487,7 @@
|
|||
<ClInclude Include="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_Block.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlockConfigManager.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_ControlButton.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_LEDGrid.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_LEDRow.h"/>
|
||||
|
|
|
|||
|
|
@ -1099,6 +1099,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_Block.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_BandwidthStatsLogger.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -1108,6 +1111,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_ConnectedDeviceGroup.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_DepreciatedVersionReader.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_Detector.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -1645,6 +1651,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -3585,6 +3594,9 @@
|
|||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlockConfigManager.h">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.h">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_ControlButton.h">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClInclude>
|
||||
|
|
|
|||
|
|
@ -668,6 +668,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_Block.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_BandwidthStatsLogger.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
@ -677,6 +680,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_ConnectedDeviceGroup.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_DepreciatedVersionReader.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_Detector.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
@ -1193,6 +1199,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
@ -2480,6 +2489,7 @@
|
|||
<ClInclude Include="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_Block.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlockConfigManager.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_ControlButton.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_LEDGrid.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_LEDRow.h"/>
|
||||
|
|
|
|||
|
|
@ -1099,6 +1099,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_Block.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_BandwidthStatsLogger.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -1108,6 +1111,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_ConnectedDeviceGroup.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_DepreciatedVersionReader.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_Detector.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -1645,6 +1651,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -3585,6 +3594,9 @@
|
|||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlockConfigManager.h">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.h">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_ControlButton.h">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClInclude>
|
||||
|
|
|
|||
|
|
@ -85,6 +85,10 @@
|
|||
isa = PBXBuildFile;
|
||||
fileRef = 8135645508EEFDBDCDF2ADC6;
|
||||
};
|
||||
1C9AA8660D0DE180064ACF7B = {
|
||||
isa = PBXBuildFile;
|
||||
fileRef = 7FBD555B32197FEACDFF5AFB;
|
||||
};
|
||||
75DB074DBAE04408A0A917B7 = {
|
||||
isa = PBXBuildFile;
|
||||
fileRef = E0A3F113BC27B7B4D6F1D693;
|
||||
|
|
@ -487,6 +491,13 @@
|
|||
path = ../../Source/UI/SettingsContent.h;
|
||||
sourceTree = "SOURCE_ROOT";
|
||||
};
|
||||
7FBD555B32197FEACDFF5AFB = {
|
||||
isa = PBXFileReference;
|
||||
lastKnownFileType = file.storyboard;
|
||||
name = LaunchScreen.storyboard;
|
||||
path = LaunchScreen.storyboard;
|
||||
sourceTree = "SOURCE_ROOT";
|
||||
};
|
||||
8135645508EEFDBDCDF2ADC6 = {
|
||||
isa = PBXFileReference;
|
||||
lastKnownFileType = folder.assetcatalog;
|
||||
|
|
@ -837,6 +848,7 @@
|
|||
685A261BE78585293F3EAD36,
|
||||
4EC2782DE1779A130835B64D,
|
||||
8135645508EEFDBDCDF2ADC6,
|
||||
7FBD555B32197FEACDFF5AFB,
|
||||
E0A3F113BC27B7B4D6F1D693,
|
||||
);
|
||||
name = Resources;
|
||||
|
|
@ -1110,6 +1122,7 @@
|
|||
files = (
|
||||
47ED2C78B05B8A6A00E36C46,
|
||||
8E63755144E29269FD82C897,
|
||||
1C9AA8660D0DE180064ACF7B,
|
||||
75DB074DBAE04408A0A917B7,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
|
|
|
|||
|
|
@ -11,6 +11,8 @@
|
|||
<true/>
|
||||
<key>UIViewControllerBasedStatusBarAppearance</key>
|
||||
<false/>
|
||||
<key>UILaunchStoryboardName</key>
|
||||
<string>LaunchScreen.storyboard</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
|
|
|
|||
16
examples/DemoRunner/Builds/iOS/LaunchScreen.storyboard
Normal file
16
examples/DemoRunner/Builds/iOS/LaunchScreen.storyboard
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="14460.31" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
||||
<scenes>
|
||||
<scene sceneID="EHf-IW-A2E">
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="" sceneMemberID="firstResponder"/>
|
||||
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
|
||||
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
||||
<autoresizingMask key="autoresizingMask"/>
|
||||
<color key="backgroundColor" red="0" green="0" blue="0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</view>
|
||||
</viewController>
|
||||
</objects>
|
||||
</scene>
|
||||
</scenes>
|
||||
</document>
|
||||
|
|
@ -735,6 +735,7 @@ add_library( ${BINARY_NAME}
|
|||
"../../../../../modules/juce_data_structures/values/juce_ValueTree.h"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.cpp"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.h"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.cpp"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.h"
|
||||
"../../../../../modules/juce_data_structures/juce_data_structures.cpp"
|
||||
"../../../../../modules/juce_data_structures/juce_data_structures.mm"
|
||||
|
|
@ -2014,6 +2015,7 @@ set_source_files_properties("../../../../../modules/juce_data_structures/values/
|
|||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueTree.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/juce_data_structures.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/juce_data_structures.mm" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
|
|
|
|||
|
|
@ -970,6 +970,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -1270,6 +1270,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -65,6 +65,10 @@
|
|||
isa = PBXBuildFile;
|
||||
fileRef = 8693552B5FA53C2003A66302;
|
||||
};
|
||||
3C0CA1E555411B8B5B8F8FF0 = {
|
||||
isa = PBXBuildFile;
|
||||
fileRef = C8D9488DE9A88E4FBF28D417;
|
||||
};
|
||||
07451DA87757F9EF80E31BE8 = {
|
||||
isa = PBXBuildFile;
|
||||
fileRef = 0564535EEA7E4462926EA0C9;
|
||||
|
|
@ -358,6 +362,13 @@
|
|||
path = System/Library/Frameworks/AVFoundation.framework;
|
||||
sourceTree = SDKROOT;
|
||||
};
|
||||
C8D9488DE9A88E4FBF28D417 = {
|
||||
isa = PBXFileReference;
|
||||
lastKnownFileType = file.storyboard;
|
||||
name = LaunchScreen.storyboard;
|
||||
path = LaunchScreen.storyboard;
|
||||
sourceTree = "SOURCE_ROOT";
|
||||
};
|
||||
C8EE61FDD1F06817A014B881 = {
|
||||
isa = PBXFileReference;
|
||||
lastKnownFileType = file;
|
||||
|
|
@ -467,6 +478,7 @@
|
|||
children = (
|
||||
9516A19EE58DED8326DD0306,
|
||||
8693552B5FA53C2003A66302,
|
||||
C8D9488DE9A88E4FBF28D417,
|
||||
);
|
||||
name = Resources;
|
||||
sourceTree = "<group>";
|
||||
|
|
@ -725,6 +737,7 @@
|
|||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
A783F6E198806332E7FB9744,
|
||||
3C0CA1E555411B8B5B8F8FF0,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@
|
|||
<true/>
|
||||
<key>UIViewControllerBasedStatusBarAppearance</key>
|
||||
<false/>
|
||||
<key>UILaunchStoryboardName</key>
|
||||
<string>LaunchScreen.storyboard</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="14460.31" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
||||
<scenes>
|
||||
<scene sceneID="EHf-IW-A2E">
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="" sceneMemberID="firstResponder"/>
|
||||
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
|
||||
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
||||
<autoresizingMask key="autoresizingMask"/>
|
||||
<color key="backgroundColor" red="0" green="0" blue="0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</view>
|
||||
</viewController>
|
||||
</objects>
|
||||
</scene>
|
||||
</scenes>
|
||||
</document>
|
||||
|
|
@ -767,6 +767,7 @@ add_library( ${BINARY_NAME}
|
|||
"../../../../../modules/juce_data_structures/values/juce_ValueTree.h"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.cpp"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.h"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.cpp"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.h"
|
||||
"../../../../../modules/juce_data_structures/juce_data_structures.cpp"
|
||||
"../../../../../modules/juce_data_structures/juce_data_structures.mm"
|
||||
|
|
@ -2119,6 +2120,7 @@ set_source_files_properties("../../../../../modules/juce_data_structures/values/
|
|||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueTree.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/juce_data_structures.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/juce_data_structures.mm" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
|
|
|
|||
|
|
@ -998,6 +998,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -1351,6 +1351,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -996,6 +996,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -1351,6 +1351,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -998,6 +998,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -1351,6 +1351,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -77,6 +77,10 @@
|
|||
isa = PBXBuildFile;
|
||||
fileRef = 29E0972229FB44D969035B4E;
|
||||
};
|
||||
E283262A07376A7EDFCEAF6F = {
|
||||
isa = PBXBuildFile;
|
||||
fileRef = F58EBA72DA53F75945B91321;
|
||||
};
|
||||
443244451A0F2064D4767337 = {
|
||||
isa = PBXBuildFile;
|
||||
fileRef = 2A6983F82B13F9E8B10299AE;
|
||||
|
|
@ -592,6 +596,13 @@
|
|||
path = "../../../../modules/juce_gui_extra";
|
||||
sourceTree = "SOURCE_ROOT";
|
||||
};
|
||||
F58EBA72DA53F75945B91321 = {
|
||||
isa = PBXFileReference;
|
||||
lastKnownFileType = file.storyboard;
|
||||
name = LaunchScreen.storyboard;
|
||||
path = LaunchScreen.storyboard;
|
||||
sourceTree = "SOURCE_ROOT";
|
||||
};
|
||||
F9AC862E9A3583B6C1488EE0 = {
|
||||
isa = PBXFileReference;
|
||||
lastKnownFileType = file;
|
||||
|
|
@ -715,6 +726,7 @@
|
|||
children = (
|
||||
57DF618F1DE781556B7AFC32,
|
||||
29E0972229FB44D969035B4E,
|
||||
F58EBA72DA53F75945B91321,
|
||||
2A6983F82B13F9E8B10299AE,
|
||||
);
|
||||
name = Resources;
|
||||
|
|
@ -979,6 +991,7 @@
|
|||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
59F4F23BFFDAB414B4801F85,
|
||||
E283262A07376A7EDFCEAF6F,
|
||||
443244451A0F2064D4767337,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
|
|
|
|||
|
|
@ -9,6 +9,8 @@
|
|||
<true/>
|
||||
<key>UIViewControllerBasedStatusBarAppearance</key>
|
||||
<false/>
|
||||
<key>UILaunchStoryboardName</key>
|
||||
<string>LaunchScreen.storyboard</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
|
|
|
|||
16
extras/AudioPluginHost/Builds/iOS/LaunchScreen.storyboard
Normal file
16
extras/AudioPluginHost/Builds/iOS/LaunchScreen.storyboard
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="14460.31" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
||||
<scenes>
|
||||
<scene sceneID="EHf-IW-A2E">
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="" sceneMemberID="firstResponder"/>
|
||||
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
|
||||
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
||||
<autoresizingMask key="autoresizingMask"/>
|
||||
<color key="backgroundColor" red="0" green="0" blue="0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</view>
|
||||
</viewController>
|
||||
</objects>
|
||||
</scene>
|
||||
</scenes>
|
||||
</document>
|
||||
|
|
@ -754,6 +754,7 @@ add_library( ${BINARY_NAME}
|
|||
"../../../../../modules/juce_data_structures/values/juce_ValueTree.h"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.cpp"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.h"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.cpp"
|
||||
"../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.h"
|
||||
"../../../../../modules/juce_data_structures/juce_data_structures.cpp"
|
||||
"../../../../../modules/juce_data_structures/juce_data_structures.mm"
|
||||
|
|
@ -2108,6 +2109,7 @@ set_source_files_properties("../../../../../modules/juce_data_structures/values/
|
|||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueTree.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueTreeSynchroniser.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/values/juce_ValueWithDefault.h" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/juce_data_structures.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
set_source_files_properties("../../../../../modules/juce_data_structures/juce_data_structures.mm" PROPERTIES HEADER_FILE_ONLY TRUE)
|
||||
|
|
|
|||
|
|
@ -991,6 +991,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -1324,6 +1324,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -991,6 +991,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -1324,6 +1324,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@
|
|||
<true/>
|
||||
<key>UIViewControllerBasedStatusBarAppearance</key>
|
||||
<false/>
|
||||
<key>UILaunchStoryboardName</key>
|
||||
<string>LaunchScreen.storyboard</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="14460.31" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
||||
<scenes>
|
||||
<scene sceneID="EHf-IW-A2E">
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="" sceneMemberID="firstResponder"/>
|
||||
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
|
||||
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
||||
<autoresizingMask key="autoresizingMask"/>
|
||||
<color key="backgroundColor" red="0" green="0" blue="0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</view>
|
||||
</viewController>
|
||||
</objects>
|
||||
</scene>
|
||||
</scenes>
|
||||
</document>
|
||||
|
|
@ -69,6 +69,10 @@
|
|||
isa = PBXBuildFile;
|
||||
fileRef = 5273768FBB55D0DD57A5E70C;
|
||||
};
|
||||
D832165EE981EF309D4B21BF = {
|
||||
isa = PBXBuildFile;
|
||||
fileRef = 9D2DAC7D0C9DB77CB83E2992;
|
||||
};
|
||||
006DF460F8DF66EFFA80D968 = {
|
||||
isa = PBXBuildFile;
|
||||
fileRef = 70F1CAF3C4C561DD81E6AFC1;
|
||||
|
|
@ -389,6 +393,13 @@
|
|||
path = "../../../../modules/juce_gui_extra";
|
||||
sourceTree = "SOURCE_ROOT";
|
||||
};
|
||||
9D2DAC7D0C9DB77CB83E2992 = {
|
||||
isa = PBXFileReference;
|
||||
lastKnownFileType = file.storyboard;
|
||||
name = LaunchScreen.storyboard;
|
||||
path = LaunchScreen.storyboard;
|
||||
sourceTree = "SOURCE_ROOT";
|
||||
};
|
||||
9E8129263CD42C6029FC2CAD = {
|
||||
isa = PBXFileReference;
|
||||
lastKnownFileType = wrapper.framework;
|
||||
|
|
@ -601,6 +612,7 @@
|
|||
children = (
|
||||
1FD6DBAC73414DD4C152E34E,
|
||||
5273768FBB55D0DD57A5E70C,
|
||||
9D2DAC7D0C9DB77CB83E2992,
|
||||
70F1CAF3C4C561DD81E6AFC1,
|
||||
);
|
||||
name = Resources;
|
||||
|
|
@ -861,6 +873,7 @@
|
|||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1282A62308CD1AC3F88A5D03,
|
||||
D832165EE981EF309D4B21BF,
|
||||
006DF460F8DF66EFFA80D968,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
|
|
|
|||
|
|
@ -595,6 +595,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -895,6 +895,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -595,6 +595,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -895,6 +895,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -597,6 +597,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -895,6 +895,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -665,6 +665,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_Block.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_BandwidthStatsLogger.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
@ -674,6 +677,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_ConnectedDeviceGroup.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_DepreciatedVersionReader.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_Detector.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
@ -1049,6 +1055,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
@ -2330,6 +2339,7 @@
|
|||
<ClInclude Include="..\..\..\..\modules\juce_audio_utils\juce_audio_utils.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_Block.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlockConfigManager.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_ControlButton.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_LEDGrid.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_LEDRow.h"/>
|
||||
|
|
|
|||
|
|
@ -1048,6 +1048,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_Block.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_BandwidthStatsLogger.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -1057,6 +1060,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_ConnectedDeviceGroup.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_DepreciatedVersionReader.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_blocks_basics\topology\internal\juce_Detector.cpp">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\topology\internal</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -1453,6 +1459,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
@ -3375,6 +3384,9 @@
|
|||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlockConfigManager.h">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_BlocksVersion.h">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_blocks_basics\blocks\juce_ControlButton.h">
|
||||
<Filter>JUCE Modules\juce_blocks_basics\blocks</Filter>
|
||||
</ClInclude>
|
||||
|
|
|
|||
|
|
@ -990,6 +990,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
|
|||
|
|
@ -1321,6 +1321,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueTreeSynchroniser.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\values\juce_ValueWithDefault.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures\values</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_data_structures\juce_data_structures.cpp">
|
||||
<Filter>JUCE Modules\juce_data_structures</Filter>
|
||||
</ClCompile>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue