0

I'm trying to compile a simple c++ file in Visual Studio express 2012 on windows 64 bit. I installed boost_1_53_0 using the visual studio command prompt. I also compiles/installed the boost libs.

Here is my include's:

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

I'm getting the following errors when I try to debug or release my 'project'.

http://pastebin.com/fBDcttKc

I have correctly set the additional include directories, and the additional library directories settings.

If I'm missing some info please tell me, I have just started learning c++

Thanks!

Chris Frank
  • 4,124
  • 4
  • 30
  • 42

1 Answers1

1

This was already answered. The idea is to either enable autolinking or link with proper libraries.

define BOOST_ALL_DYN_LINK in the preprocessor symbols in C++ options, in the project.

Community
  • 1
  • 1
Basilevs
  • 22,440
  • 15
  • 57
  • 102