You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cpp/README.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -246,3 +246,37 @@ def clean_page_cache():
246
246
247
247
### 5. The protobuf version issue
248
248
I use protobuf [v3.21.6](https://github.com/protocolbuffers/protobuf/releases/tag/v3.21.6). The latest protobuf version doesn't work for pixels c++ reader.
249
+
250
+
### 6. Install Boost C++ Libraries
251
+
We need the Boost C++ Libraries in pixels-cli, which can be installed with the following command.
252
+
253
+
```
254
+
sudo apt-get install libboost-all-dev
255
+
```
256
+
257
+
For every Boost release this information is added by the CMake maintainers and it gets part of the next CMake release. So you have to make sure, that your CMake version was released after the Boost version you try to find.
258
+
259
+
```
260
+
Boost 1.63 requires CMake 3.7 or newer.
261
+
Boost 1.64 requires CMake 3.8 or newer.
262
+
Boost 1.65 and 1.65.1 require CMake 3.9.3 or newer.
0 commit comments