标签: visual-c++ graphviz
我想将graphviz作为库与vc ++链接。 我该怎么做? 我已经提供了lib和包含的路径,但它也没有工作。
答案 0 :(得分:0)
graphviz是一个C库,而不是C ++库。将#include换成extern "C" {...}:
#include
extern "C" {...}
extern "C" { // tell C++ that this is a C library #include "graphviz.h" }