/bazel-example

A bazel test repository

Primary LanguageC++MIT LicenseMIT

Bazel example

A basic bazel build example repository for C++ projects

How to build

bazel build //main:hello-world

How to generate dependency graph

Note: you have to install xdot and graphviz

xdot <(bazel query --nohost_deps --noimplicit_deps 'deps(//main:hello-world)' --output graph)