I need some help! I want to make it "easy" to click Build in CCS and have the following happen:
- Build/link the project.
- Run a perl script which interrogates the map file (xml version) and changes a few values in a file as a result (e.g. to reflect the size of a given section).
- Build/link the project again.
If you're wondering why on earth anyone would do this please see the following thread:
Right now I'm invoking a batch file as the post-build step. The batch file runs the perl script and then uses the command line build syntax to kick off another build. The problem with this approach is that you get an infinite build sequence because the build that gets kicked off runs a post-build step which in turn kicks off another and another and another... So I'm trying to find a way around it. Ideas?
For example:
- Is there a way to suppress the post-build step when doing the automated build?
- Is there a way to delete (and later re-create) the post-build step when doing the command line build?
- ?
Thanks,
Brad