If you are using Visual Studio 2008, you can compile using the /MP flag to build a single _project_ in parallel.  I have read that this is also an undocumented feature in Visual Studio 2005, but have never tried myself.

You can build multiple _projects_ in parallel by using the /M`<maxprojects>` flag, but this is usually already set to the number of available cores on the machine.

EDIT:  I'm sorry, this is only for VC++ I believe, I should have read more carefully.