Reputation: 1
I'm trying to include pdfium in my development as dll. Most of FPDF_* functions are directly accessible, however I cannot reference v8 related functions, e.g. v8::initializeICU()
, v8::InitializePlatform()
. Since I'm totally new to this project, and have to raise following questions:
Upvotes: 0
Views: 456
Reputation: 9598
PDFium does not include v8 library code. You'll need to link the v8 libraries as well as the PDFium libraries. You'll probably need the libv8_libbase and libv8_libplatform libraries.
Upvotes: 0