I’m porting a keil project to visual studio using visual GDB. In keil I manage a few projects using the multi-project file (.uvmpw). Is there a way to create something similar to the multi-project file with visualGDB.
Note:
I already started porting the projects that are included in the multi-project file one by one.
Visual Studio has a similar concept. Solutions (.sln files) can include multiple projects (.vcxproj files), one for every target.
You can also consider using the new Embedded CMake Project Subsystem (requires VisualGDB 5.5 RC1) that supports multiple targets within the same project, so you won’t need to setup the toolchain/debugging settings multiple times.