In Visual Studio 2010, Microsoft finally upgraded the format of Visual C++ project files (.vcproj) to its XML-based NAnt clone format MSBuild, now named .vcxproj. This means C++ projects will compile without much effort using the task.
If you can foresee that you're only going to have a small team and a limited number of builds, I would recommend TeamCity (http://www.jetbrains.com/teamcity/) with NAnt. TeamCity is a CI server based on Java (easier to deploy on a Linux build server) that supports separate build agents (so you could have several Windows virtual machines or dedicated box running your builds).
TeamCity's support for MSBuild, NAnt and Ant based builds is excellent and it has a very nice AJAX-based GUI that is a joy to use and allows you to set up and configure projects from your browser. If you cross the 20 project threshold of the free edition, it becomes unreasonably expensive, however.
The other option I can recommend would be Jenkins with NAnt, Ant, MSBuild or one of the other many build systems Jenkins can support. Jenkins is Open Source and will handle unlimited projects, like TeamCity it can run on a server while sending builds to separate build agents and it has plugins for many C++ tools (think static analysis, unit testing and packaging).
Jenkins' web interface is not quite so convenient and beauftiful as TeamCity, but it's widely used and has plugins for almost anything.