Skip to content

Commit 78d0c42

Browse files
authored
Merge pull request #242 from uilianries/hotfix/protobuf-links
[hotfix] Protobuf: Remove link not ready
2 parents 52e2e98 + e648c30 commit 78d0c42

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

_posts/2019-03-06-Serializing-your-data-with-Protobuf.markdown

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ format that can be stored and retrieved by the both sides.
1414

1515
In this blog post, we will discuss the [Protobuf](https://developers.google.com/protocol-buffers)
1616
(Protocol Buffers), a project that can extend more than a simple library for serialization. The
17-
entire example presented here is available on [Github](https://github.com/conan-io/examples/tree/master/libraries/protobuf/serialization).
17+
entire example presented here is available on [Github](https://github.com/conan-io/examples2/tree/main/examples/libraries/protobuf/serialization).
1818

1919
## What is Protobuf?
2020

@@ -217,7 +217,6 @@ cmake_layout
217217

218218
Since Protobuf can be divided into two parts, `the protoc executable`, and the libraries, we will add the same package as `requires` and `tool_requires`, so
219219
it will be possible to install `protoc` for the same host architecture, as a build requirement, and libraries for a target architecture (aarch64) as a regular requirement.
220-
To obtain more information about using the same package as `requires` and `tool_requires`, please refer to the [using protobuf example](https://docs.conan.io/2/examples/graph/tool_requires/using_protobuf.html).
221220
As we are using CMake for this project, we need to declare
222221
the CMake generators [CMakeDeps](https://docs.conan.io/2/reference/tools/cmake/cmakedeps.html) and [CMakeToolchain](https://docs.conan.io/2/reference/tools/cmake/cmaketoolchain.html). The `CMakeDeps` generator will be responsible for generating the `FindProtobuf.cmake` file, and the `CMakeToolchain` generator will be responsible for generating the `conan_toolchain.cmake` file, which will be used by CMake to configure the project.
223222
Plus, we declared the layout [cmake_layout](https://docs.conan.io/2/reference/tools/cmake/cmake_layout.html) that will be responsible for organizing the files in the build directory.

0 commit comments

Comments
 (0)