I\'d like to know how long my project\'s builds take, for example by displaying it in the build pane. Is this option available somewhere in Xcode?
Thanks.
I solved it with Run Scripts in Build Phases
Run Script
Build Phases
I have added one Run Script at start point of the build:
echo $(date +%s) > ../build_start_time
and one at the end:
START=$(cat ../build_start_time) END=$(date +%s) echo $(echo "$END - $START" | bc)
Now i can see the time in Build Log -> All Messages