The problem is purely academic, so the following is just an example; if I add two slashes in front of this line
#pragma comment(lib, "../node-src/Release/node")
I'll get the dozen linker errors. Well not really dozen, but at least 2-3 lines looking like this
1>test.obj : error LNK2001: unresolved external symbol "public: static class
v8::Local<class v8::String> __cdecl v8::String::New(char const *,int)"
(?New@String@v8@@SA?
Now I know most requirements are in the specs, but is there a way to know what files is really the linker missing? I mean if I were to replace that #pragma
directive with regular includes, what steps should I take?