show/hide this revision's text 2 added 9 characters in body

Presumably you're already using makefile to build your project, since it's cross-platform. Just make your VS project a makefile project with different project configurations that kick off the makefile using different parameters to indicate whether or not a build is for MSVC or GCC.

If your MSVC makefile build is capable of building debug files (PDB) - which it should be able to do, then the VS Debugger will work seamlessly as well.

Then building using GCC inside Visual Studio is as simple as selecting the 'GCC' configuration dropdown on the toolbar.

show/hide this revision's text 1

Presumably you're already using makefile to build your project, since it's cross-platform. Just make your VS project a makefile project with different project configurations that kick off the makefile using different parameters to indicate whether or not a build is for MSVC or GCC.

If your MSVC build is capable of building debug files (PDB) - which it should be able to do, then the VS Debugger will work seamlessly as well.

Then building using GCC inside Visual Studio is as simple as selecting the 'GCC' configuration dropdown on the toolbar.