编译助推程序的问题

时间:2013-05-06 01:33:23

标签: c++ boost

我试图在Windows 64位上的Visual Studio Express 2012中编译一个简单的c ++文件。我使用visual studio命令提示符安装了boost_1_53_0。我还编译/安装了升压库。

这是我的包含:

#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <fstream>
#include <boost\filesystem.hpp>
#include <ctime>
#include <string>

当我尝试调试或发布我的项目时,我收到以下错误。

http://pastebin.com/fBDcttKc

我已正确设置其他包含目录和其他库目录设置。

如果我错过了一些信息,请告诉我,我刚刚开始学习c ++

谢谢!

1 个答案:

答案 0 :(得分:1)

was already answered。 我们的想法是启用自动链接或链接适当的库。

  

在C ++选项的预处理程序符号中定义BOOST_ALL_DYN_LINK,   在项目中。