0

我想将 graphviz 作为库与 vc++ 链接。我该怎么做?我已经给出了 lib 和 include 的路径,但它也不起作用。

4

1 回答 1

0

graphviz 是一个 C 库,而不是 C++ 库。包裹#includeextern "C" {...}

extern "C" { // tell C++ that this is a C library
#include "graphviz.h"
}
于 2009-10-09T08:41:08.800 回答