概述:介绍了如何使用 visual studio 引入默认的库文件和头文件
在用户目录下有这样一个文件,路径为 C:\Users\用户名\AppData\Local\Microsoft\MSBuild\v4.0
Microsoft.Cpp.*.user.props
该文件用于定义用户自己需要定义的一些配置。
查看内容如下所示:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ImportGroup Label="PropertySheets"> </ImportGroup> <PropertyGroup Label="UserMacros" /> <PropertyGroup> <IncludePath>D:\Documents\A_Source\CWPP\360GPUBNew\dev\include;D:\Documents\A_Source\CWPP\360GPUBNew\dev\include;D:\Documents\A_Source\CWPP\360LPUB\dev\include;D:\Documents\A_Source\CWPP\360LPUB\dev\include\360safe\360NewExamine;D:\Documents\A_Source\CWPP\360LPUB\dev\include\SiteUI;D:\Documents\A_Source\CWPP\360LPUB\opensource\VC-LTL4;$(ProjectDir);$(IncludePath) </IncludePath> <LibraryPath>D:\Documents\A_Source\CWPP\360GPUBNew\dev\lib_s3;D:\Documents\A_Source\CWPP\360GPUBNew\dev\lib_s3\vc2017;D:\Documents\A_Source\CWPP\360LPUB\dev\lib\360netmon;$(LibraryPath)</LibraryPath> </PropertyGroup> <ItemDefinitionGroup /> <ItemGroup /> </Project>
|
其中:
- IncludePath:即为需要包含的头文件目录
- LibraryPath:为需要引入库文件的目录
其他编译版本同理
相关宏使用
- PDB 路径
$(OutDir)$(MSBuildProjectName).pdb