I am currently learning C++ and am using Microsoft visual C++ express 2010. I am trying to add/install a template library called Eigen which will help me work with matrices and vectors. On Eigen's website, it is written the following:
How to "install" Eigen?
In order to use Eigen, you just need to download and extract Eigen's source code (see the wiki for download instructions). In fact, the header files in the Eigen subdirectory are the only files required to compile programs using Eigen. The header files are the same for all platforms. It is not necessary to use CMake or install anything.
Where and how in visual C++ 2010 can I add this library? Is it project dependent or can I include the library once for all i.e. for every new project I will be able to work with the Eigen library.
Also could anyone recommend a good book or tutorial which explains the basic functionalities of Visual C++ express (such as adding libraries :))?