32e222aeff
* Enable examples tests on windows * Fixed windows absolute paths being treated as relative. * Escape windows backslashes for sed replacement * Improve `//cmake_hello_world_lib/static:libhello` example |
||
---|---|---|
.. | ||
code | ||
BUILD.bazel | ||
README.md | ||
test_libb.cpp |
README.md
Simple Ninja Example
Dependencies
- clang
- bazel
Executing the Example
To execute the example, run
bazel test ...
Troubleshooting
If you receive an error of the form:
ccache: FATAL: Failed to create /home/$USER/.ccache/2/f: Read-only file system
This is likely because you're have ccache set as your compiler. You can either disable ccache, or allow the sandbox to write to ~/.ccache:
bazel test --sandbox_writable_path ~/.ccache ...