https://github.com/memgraph/pulsar-client-cpp
Conan build for Pulsar
https://github.com/memgraph/pulsar-client-cpp
Last synced: 9 months ago
JSON representation
Conan build for Pulsar
- Host: GitHub
- URL: https://github.com/memgraph/pulsar-client-cpp
- Owner: memgraph
- Created: 2025-06-27T09:26:24.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-06-27T09:34:21.000Z (10 months ago)
- Last Synced: 2025-06-27T10:34:08.964Z (10 months ago)
- Language: Python
- Size: 148 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Introduction
Building Pulsar for Conan works with protobuf 3.12.4 which isn't supported remote version. For this to
work you need to first clone conan-center-index and build protobuf 3.12.4
```
conan profile detect
git clone git@github.com:conan-io/conan-center-index.git
cd conan-center-index
git apply conan-center-index.patch
conan create recipes/protobuf/all --version 3.12.4 --build=missing
cd ../pulsar_build
conan create . --build=missing
```