jsheehy
jsheehy

Reputation: 46

Creating a post-build step in Xcode 3.2

I'm actually looking for a genuine "post build" phase - not the Run script stage. The reason for this is that I want to do some parsing of a target's build-state.dat which is where Xcode puts all of its build output.

The problem is that this file isn't actually created until after the build has succeeded or failed, thus anything in the Run Script phase can't see it.

Any clues?

Thanks

Upvotes: 2

Views: 820

Answers (1)

mipadi
mipadi

Reputation: 411260

Can you create a Shell Script Target that has the product you want to analyze as its dependency, and parse the file in the Shell Script Target?

Upvotes: 1

Related Questions