Have you some news about the compilation of a simple C++ project using grpc on Windows?
Following the instruction I am able to compile the library itself but I am not able to compile the greeter_client/greeter_server examples.
I am able to compile the helloworld.proto, the generated
helloworld.pb.cc and
helloworld.grpc.pb.cc, greeter_server.cc and greeter_client.cc but as soon as I try to link them to obtain the client and the server I find a lot of unresolved.
My linker command lines are:
link greeter_server.obj helloworld.pb.obj helloworld.grpc.pb.obj libprotobufd.lib libprotocd.lib grpc.lib gpr.lib grpc++.lib ws2_32.lib -LIBPATH:C:\grpc\.build\Debug -LIBPATH:C:\grpc\.build\third_party\protobuf\debug
link greeter_client.obj helloworld.pb.obj helloworld.grpc.pb.obj libprotobufd.lib libprotocd.lib grpc.lib gpr.lib grpc++.lib ws2_32.lib -LIBPATH:C:\grpc\.build\Debug -LIBPATH:C:\grpc\.build\third_party\protobuf\debug
What am I missing?