Multi-core Compilation in VC++
I received this little helpful note the other day. Now that all my development systems are multi-core processors it would be nice to use that to speed up compilation time. Especially since my projects are in the upper hundreds of thousands lines of code.
The tip:
Just add /MP to the command line section under C/C++ and it will spawn multiple
cl.exe processes.

