Re: [protobuf] Manual Updates/Corrections

2017-04-10 Thread 'Adam Cozzette' via Protocol Buffers
One confusing thing about that example is that the bytes are written in hex but they look like decimal. You are right that the encoded bytes in decimal are 08, 150, 01, but in hex that is equal to 08, 96, 01. On Fri, Apr 7, 2017 at 6:42 PM, wrote: > In the encoding section of

Re: [protobuf] 3.2.0 with Visual Studio 2017 C++ - installation problem with cmake

2017-04-10 Thread 'Feng Xiao' via Protocol Buffers
Can you try "cmake --help"? It should print a list of Visual Compilers it supports. If VS 2017 is on the supported list, just invoke cmake with: cmake -G "Visual Studio [VERSION_NUMBER]" ../.. and it should generate a protobuf.sln file that you can open with VS 2017. On Mon, Apr 10, 2017 at 7:11

[protobuf] 3.2.0 with Visual Studio 2017 C++ - installation problem with cmake

2017-04-10 Thread Karsten Saunte
Hi New to protocol buffers, downloaded 3.2.0 and followed the guide in cmake/README.md It fails at this step * To start using a *Release* configuration: C:\Path\to\protobuf\cmake\build>mkdir release & cd release C:\Path\to\protobuf\cmake\build\release>cmake -G "NMake Makefiles"