|
|
|
@@ -154,6 +154,9 @@ public: |
|
|
|
}
|
|
|
|
|
|
|
|
writeInfoPlistFile();
|
|
|
|
|
|
|
|
// Deleting the .rsrc files can be needed to force Xcode to update the version number.
|
|
|
|
deleteRsrcFiles();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
@@ -608,6 +611,12 @@ private: |
|
|
|
overwriteFileIfDifferentOrThrow (infoPlistFile, mo);
|
|
|
|
}
|
|
|
|
|
|
|
|
void deleteRsrcFiles() const
|
|
|
|
{
|
|
|
|
for (DirectoryIterator di (getTargetFolder().getChildFile ("build"), true, "*.rsrc", File::findFiles); di.next();)
|
|
|
|
di.getFile().deleteFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
String getHeaderSearchPaths (const BuildConfiguration& config) const
|
|
|
|
{
|
|
|
|
StringArray paths (extraSearchPaths);
|
|
|
|
|