When to use the Visual Studio Additional dependencies?

后端 未结 4 498
醉酒成梦
醉酒成梦 2021-01-29 23:02

In C++, you got the header files (.h), the (.lib) files and the (.dll) files.

In Visual Studio, you provide the location to search for these files in three different pla

4条回答
  •  半阙折子戏
    2021-01-29 23:28

    And just to point out the obvious, you don't have to add any .h files you are using in a properties setting of your project because you explicitly include them in your source code, which looks for the headers in the paths you have already provided.

提交回复
热议问题