visual c ++:在vc ++中链接graphviz

时间:2009-10-09 08:35:25

标签: visual-c++ graphviz

我想将graphviz作为库与vc ++链接。 我该怎么做? 我已经提供了lib和包含的路径,但它也没有工作。

1 个答案:

答案 0 :(得分:0)

graphviz是一个C库,而不是C ++库。将#include换成extern "C" {...}

extern "C" { // tell C++ that this is a C library
#include "graphviz.h"
}