c++ - Problems compiling boost program -


i'm trying compile simple c++ file in visual studio express 2012 on windows 64 bit. installed boost_1_53_0 using visual studio command prompt. compiles/installed boost libs.

here 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 following errors when try debug or release 'project'.

http://pastebin.com/fbdcttkc

i have correctly set additional include directories, , additional library directories settings.

if i'm missing info please tell me, have started learning c++

thanks!

this was answered. idea either enable autolinking or link proper libraries.

define boost_all_dyn_link in preprocessor symbols in c++ options, in project.


Comments