Installing the Eigen library in Visual C++ 2010 -
how can install eigen library in visual c++ 2010? downloaded library eigen.tuxfamily
but not know how can install on visual c++. want run program downloaded , has following:
#include <eigen/core> using namespace eigen;
how can this? have tried online seem confused. explain me how can it?
eigen header-only library. need add eigen path (msvc2010):
project properties -> c/c++ -> general -> additional include directories
let's have header core in folder c:/folder1/folder2/eigen/, i.e.:
c:/folder1/folder2/eigen/core
so should add path c:/folder1/folder2 additional include directories.
Comments
Post a Comment