24 lines
377 B
Markdown
24 lines
377 B
Markdown
|
# ESRI C++ code assignment
|
||
|
|
||
|
## Setup
|
||
|
|
||
|
```
|
||
|
aptitude install protobuf-compiler libprotobuf-c-dev ##libprotoc-dev
|
||
|
```
|
||
|
|
||
|
## Build
|
||
|
|
||
|
```
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake ..
|
||
|
make
|
||
|
```
|
||
|
|
||
|
|
||
|
## Links
|
||
|
* https://developers.google.com/protocol-buffers/docs/cpptutorial
|
||
|
* https://github.com/protocolbuffers/protobuf/tree/master/examples
|
||
|
* https://cmake.org/cmake/help/latest/module/FindProtobuf.html
|
||
|
|