This repository is a little experiment on how to integrate packages loaded
via conan
into bazel
. It is meant to be self-contained and only requires
a python3
binary. This is currently only tested on Linux.
To run, type
bazel run //src:main
This will:
- setup a
venv
in which to installconan
- run
conan
to install thefmt
C++ library - compile a small hello-world program that uses the
fmt
loaded viaconan
Please refer to the WORKSPACE.bazel
file and the files in support/bazel
for more information.
- POC
- Tests / Documentation
- Package this up?
- Additional arguments to the
venv
creation - Additional arguments to the
pip install
invocation - Additional arguments to the
conan install
invocation