0

Does anyone know if its possible to configure V8 to be built this way with VS2010? I am trying to embed V8 in a project that already uses a few libraries configured for the multi-threaded DLL(/MD) runtime library on Windows and V8 is by default configured for /MT

David Carpenter
  • 1,389
  • 2
  • 16
  • 29

1 Answers1

0

https://code.google.com/p/v8/wiki/BuildingWithGYP

I found the answer under the XCode section, you need to use the command...

python build/gyp_v8 -Dcomponent=shared_library

to generate your project files, apparently it also works for VS

David Carpenter
  • 1,389
  • 2
  • 16
  • 29