怎么在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++目录包含文件中添加目录的主要内容,如果未能解决你的问题,请参考以下文章