3个回答
展开全部
增加一个目录:
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>
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>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
include的使用方法:
1、必须以#号开头后面跟include,如:#include
2、后面跟包含文件有两中格式:
a、使用尖括号<>,尖括号内的文件必须在系统的include的文件夹内,如:
#include<stdio.h>
b、使用双引号"",双引号内的文件必须在工程文件夹或指定路径,如:
#include "1.c"
或
#include "d:/123/1.c"
c、include包含的文件没有限制,不是只能包含头文件(*.h文件)。
d、注意路径中的分隔符的写法要用\\或/
1、必须以#号开头后面跟include,如:#include
2、后面跟包含文件有两中格式:
a、使用尖括号<>,尖括号内的文件必须在系统的include的文件夹内,如:
#include<stdio.h>
b、使用双引号"",双引号内的文件必须在工程文件夹或指定路径,如:
#include "1.c"
或
#include "d:/123/1.c"
c、include包含的文件没有限制,不是只能包含头文件(*.h文件)。
d、注意路径中的分隔符的写法要用\\或/
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询