怎么在vc++目录包含文件中添加目录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么在vc++目录包含文件中添加目录相关的知识,希望对你有一定的参考价值。

增加一个目录:
C:\\Boost\\include\\boost-1_43\\;到默认头Include 路径,则可以修改文件如下:
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
<IncludePath>C:\\Boost\\include\\boost-1_43\\;$(IncludePath)</IncludePath>
<ReferencePath>$(ReferencePath)</ReferencePath>
<LibraryPath>$(LibraryPath)</LibraryPath>
<SourcePath>$(SourcePath)</SourcePath>
<ExcludePath>$(ExcludePath)</ExcludePath>
</PropertyGroup>
</Project>
转载,仅供参考。
参考技术A 增加一个目录:
C:\Boost\include\boost-1_43\;到默认头Include
路径,则可以修改文件如下:
?xml
version="1.0"
encoding="utf-8"?
$(ExecutablePath)
C:\Boost\include\boost-1_43\;$(IncludePath)
$(ReferencePath)
$(LibraryPath)
$(SourcePath)
$(ExcludePath)
转载,仅供参考。
参考技术B 增加一个目录:
C:\Boost\include\boost-1_43\;到默认头Include 路径,则可以修改文件如下:
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
<IncludePath>C:\Boost\include\boost-1_43\;$(IncludePath)</IncludePath>
<ReferencePath>$(ReferencePath)</ReferencePath>
<LibraryPath>$(LibraryPath)</LibraryPath>
<SourcePath>$(SourcePath)</SourcePath>
<ExcludePath>$(ExcludePath)</ExcludePath>
</PropertyGroup>
</Project>
转载,仅供参考。

以上是关于怎么在vc++目录包含文件中添加目录的主要内容,如果未能解决你的问题,请参考以下文章

vc 判断目录是不是存在 创建

vc中如何把一个目录包括目录下所有文件,以及子目录复制到指定目录中

VC包含目录附加依赖项库目录及具体设置

VC包含目录附加依赖项库目录及具体设置

VC++ 2012 单元测试入门

VC++连接Mysql