We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0eb9cf0 commit 407a7d6Copy full SHA for 407a7d6
1 file changed
ofxProjectGenerator/src/projects/xcodeProject.cpp
@@ -1243,6 +1243,7 @@ void xcodeProject::addAddon(ofAddon & addon){
1243
ofLogVerbose() << "adding addon ldflags: " << addon.ldflags[i];
1244
addLDFLAG(addon.ldflags[i]);
1245
}
1246
+ std::sort(addon.srcFiles.begin(), addon.srcFiles.end(), std::less<std::string>());
1247
for(int i=0;i<(int)addon.srcFiles.size(); i++){
1248
ofLogVerbose() << "adding addon srcFiles: " << addon.srcFiles[i];
1249
addSrc(addon.srcFiles[i],addon.filesToFolders[addon.srcFiles[i]]);
0 commit comments