I want to run a test example of igraph
in VS 2010 C++. After downloading/extracting igraph code for Microsoft Visual Studio, I launched igraph.sln
which created a bunch of files in that folder.
Now, I opened a new project and located test example of igraph. However, I have error that it cannot open "igraph.h" file.
How to add igraph library to C++ project properly for a new project?
EDIT:
After adding additional include directories that point to include folder of igraph
errors got resolved. However, after building the project I get the following errors.
After googling it a bit, I found that I should also link it with the required library. However, in igraph
folder I don't have any lib file.
How can I link the project to the igraph
library?