template for c++ projects with bazel as build system
cpp-bazel-template/
├── WORKSPACE
├── BUILD
|── .bazelrc
|── .bazelrc
|── bazel/
│ └── xxx_deps.bzl
|── include/
│ └── hello.h
├── src/
│ ├── BUILD
│ └── hello.cc
│ └── hello.h
|── scripts/
│ └── run_tests.sh
|
└── tests/
├── BUILD
└── hello_test.cc