I am trying to use Visual Studio as an editor to view a large open source project on GitHub. The directory structure looks like
/module1/include/ /module1/src/ /module2/include/ /module2/src/ ...
and the assembly is supported by CMakeLists.txt.
If I highly recommend using Visual Studio as an editor for any reason (e.g. good IntelliSense support), what would be the best practice?
I tried "Create - project from existing code." It creates an ugly project structure in which all * .cpp files are in the Source File Filter section, while I still need to manually specify the / * / include / directories group.
I tried using CMake to create a visual studio solution. It immediately failed with many critical errors due to the large number of Linux dependencies.
Is there a way to create a visual studio solution with an appropriate directory structure and include paths?
editor visual-studio cmake
D. fisher
source share