- Bazel: for generating compilation targets.
- How to install Bazel
- How to get started using Bazel
- The Bazel command line is documented in the user manual
- The rule reference documentation is in the build encyclopedia
- How to use the query command
- How to extend Bazel
- The test environment is described on the page writing tests
# If using SSH
git clone git@github.com:npuichigo/code-base.git
# Or if using HTTPS
git clone https://github.com/npuichigo/code-base.git
bazel build examples/test_gflags:test_gflags_main
bazel build examples/test_glog:test_glog_main
bazel build examples/test_gtest:test_gtest_main
./bazel-bin/examples/test_gflags/test_gflags_main
./bazel-bin/examples/test_glog/test_glog_main
./bazel-bin/examples/test_gtest/test_gtest_main