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'.
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!