What is the purpose of Browse Information generated by Visual Studio

前端 未结 2 1421
感情败类
感情败类 2021-01-11 17:06

I got a huge C++ third-party project with set of project in one solution. So build time is rather long and Browse Information generation takes a lot too. So what is the pur

2条回答
  •  生来不讨喜
    2021-01-11 17:16

    From here

    Select Generate Browse Info under the C/C++ project settings tab, for any source-files that you want to be included. This is very useful for searching for function definitions and declarations - just right-click a function / variable and select "Goto Definition Of..." and the IDE will take you straight there.

    You will lose some ability to easily navigate your code. This may matter a lot in a very large code base. I know that without it and tools like Visual Assist X, I would be lost. Still, Visual Studio has a very efficient find-in-files operation that cannot be completely replaced with browsing tools.

提交回复
热议问题