1
0
Fork 0
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:
ed 2018-03-22 15:14:55 +00:00
parent 404838a99f
commit bfd3afa6cf
36 changed files with 720 additions and 568 deletions

View file

@ -1081,6 +1081,8 @@ add_library( ${BINARY_NAME}
"../../../../../modules/juce_gui_basics/properties/juce_ButtonPropertyComponent.h"
"../../../../../modules/juce_gui_basics/properties/juce_ChoicePropertyComponent.cpp"
"../../../../../modules/juce_gui_basics/properties/juce_ChoicePropertyComponent.h"
"../../../../../modules/juce_gui_basics/properties/juce_MultiChoicePropertyComponent.cpp"
"../../../../../modules/juce_gui_basics/properties/juce_MultiChoicePropertyComponent.h"
"../../../../../modules/juce_gui_basics/properties/juce_PropertyComponent.cpp"
"../../../../../modules/juce_gui_basics/properties/juce_PropertyComponent.h"
"../../../../../modules/juce_gui_basics/properties/juce_PropertyPanel.cpp"
@ -2320,6 +2322,8 @@ set_source_files_properties("../../../../../modules/juce_gui_basics/properties/j
set_source_files_properties("../../../../../modules/juce_gui_basics/properties/juce_ButtonPropertyComponent.h" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_gui_basics/properties/juce_ChoicePropertyComponent.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_gui_basics/properties/juce_ChoicePropertyComponent.h" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_gui_basics/properties/juce_MultiChoicePropertyComponent.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_gui_basics/properties/juce_MultiChoicePropertyComponent.h" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_gui_basics/properties/juce_PropertyComponent.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_gui_basics/properties/juce_PropertyComponent.h" PROPERTIES HEADER_FILE_ONLY TRUE)
set_source_files_properties("../../../../../modules/juce_gui_basics/properties/juce_PropertyPanel.cpp" PROPERTIES HEADER_FILE_ONLY TRUE)

View file

@ -1580,6 +1580,9 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\properties\juce_ChoicePropertyComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\properties\juce_MultiChoicePropertyComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\properties\juce_PropertyComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -2357,6 +2360,7 @@
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_BooleanPropertyComponent.h"/>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_ButtonPropertyComponent.h"/>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_ChoicePropertyComponent.h"/>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_MultiChoicePropertyComponent.h"/>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_PropertyComponent.h"/>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_PropertyPanel.h"/>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_SliderPropertyComponent.h"/>

View file

@ -1897,6 +1897,9 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\properties\juce_ChoicePropertyComponent.cpp">
<Filter>JUCE Modules\juce_gui_basics\properties</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\properties\juce_MultiChoicePropertyComponent.cpp">
<Filter>JUCE Modules\juce_gui_basics\properties</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\properties\juce_PropertyComponent.cpp">
<Filter>JUCE Modules\juce_gui_basics\properties</Filter>
</ClCompile>
@ -3795,6 +3798,9 @@
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_ChoicePropertyComponent.h">
<Filter>JUCE Modules\juce_gui_basics\properties</Filter>
</ClInclude>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_MultiChoicePropertyComponent.h">
<Filter>JUCE Modules\juce_gui_basics\properties</Filter>
</ClInclude>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_PropertyComponent.h">
<Filter>JUCE Modules\juce_gui_basics\properties</Filter>
</ClInclude>

View file

@ -1580,6 +1580,9 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\properties\juce_ChoicePropertyComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\properties\juce_MultiChoicePropertyComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\properties\juce_PropertyComponent.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
@ -2357,6 +2360,7 @@
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_BooleanPropertyComponent.h"/>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_ButtonPropertyComponent.h"/>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_ChoicePropertyComponent.h"/>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_MultiChoicePropertyComponent.h"/>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_PropertyComponent.h"/>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_PropertyPanel.h"/>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_SliderPropertyComponent.h"/>

View file

@ -1897,6 +1897,9 @@
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\properties\juce_ChoicePropertyComponent.cpp">
<Filter>JUCE Modules\juce_gui_basics\properties</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\properties\juce_MultiChoicePropertyComponent.cpp">
<Filter>JUCE Modules\juce_gui_basics\properties</Filter>
</ClCompile>
<ClCompile Include="..\..\..\..\modules\juce_gui_basics\properties\juce_PropertyComponent.cpp">
<Filter>JUCE Modules\juce_gui_basics\properties</Filter>
</ClCompile>
@ -3795,6 +3798,9 @@
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_ChoicePropertyComponent.h">
<Filter>JUCE Modules\juce_gui_basics\properties</Filter>
</ClInclude>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_MultiChoicePropertyComponent.h">
<Filter>JUCE Modules\juce_gui_basics\properties</Filter>
</ClInclude>
<ClInclude Include="..\..\..\..\modules\juce_gui_basics\properties\juce_PropertyComponent.h">
<Filter>JUCE Modules\juce_gui_basics\properties</Filter>
</ClInclude>