Skip to content

Commit

Permalink
fix verbose logging about defines on xcodeProject (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
2bbb authored and arturoc committed May 30, 2019
1 parent 96d97bb commit e11781e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ofxProjectGenerator/src/projects/xcodeProject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,7 @@ void xcodeProject::addAddon(ofAddon & addon){
addSrc(addon.srcFiles[i],addon.filesToFolders[addon.srcFiles[i]]);
}
for(int i=0;i<(int)addon.defines.size(); i++){
ofLogVerbose() << "adding addon defines: " << addon.srcFiles[i];
ofLogVerbose() << "adding addon defines: " << addon.defines[i];
addDefine(addon.defines[i]);
}

Expand Down

0 comments on commit e11781e

Please sign in to comment.