mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Introjucer: Xcode prebuild script fix.
This commit is contained in:
parent
7686adb32f
commit
e8cc7b1dd6
1 changed files with 5 additions and 0 deletions
|
|
@ -1151,6 +1151,11 @@ private:
|
|||
ValueTree& addBuildPhase (const String& phaseType, const StringArray& fileIds) const
|
||||
{
|
||||
String phaseId (createID (phaseType + "resbuildphase"));
|
||||
|
||||
int n = 0;
|
||||
while (buildPhaseIDs.contains (phaseId))
|
||||
phaseId = createID (phaseType + "resbuildphase" + String (++n));
|
||||
|
||||
buildPhaseIDs.add (phaseId);
|
||||
|
||||
ValueTree* v = new ValueTree (phaseId);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue