I've made a tool that operates directly on .obj
files before they are linked. I can specify my tool on the pre-link event command line and manually specify each .obj
file, but is there any macro or technique that I can use that will automatically include all .obj
files from a particular project? There are other .obj
files in the same directory from other projects in my solution that I don't want to include, so I can't do a *.obj
.
The tool itself is part of the same solution. It is compiled first and then some of the other projects use this tool before they are linked.