How to use Graphviz as a library in a C++ project in Eclipse -
i'm trying use graphviz in project in c++. i'm trying follow the guide. issue when try write
#include <gvc.h>
i get
fatal error: gvc.h: no such file or directory
i've installed graphviz , can run:
dot -tps a.dot -o example.bmp
and desired image. don't know should make work project. it's unclear how include library in eclipse or find files. 1 of things tried put source code of graphviz in project , use
#include "gvc.h"
but faced other include problems within in library code. i've been searching solution while couldn't find any.
thanks!
Comments
Post a Comment