srctree
repos
owner
network
issues
0
diffs
0
Public
Robin Linden
parent
a5220779
cd990700
Make local Bazel configuration more convenient
inline
split
.bazelrc
added: 30, removed: 4, total 26
@@ -1,3 +1,11 @@
# Build configuration
build:debug -c dbg
build:release -c opt
# Compiler configuration
build:gnulike --cxxopt='-std=c++2a'
build:msvc --cxxopt='-std:c++latest'
test --test_output=errors
try-import %workspace%/.bazelrc.local
filename was Deleted
added: 30, removed: 4, total 26
@@ -0,0 +1,11 @@
# Developer-specific configuration
#
# Copy this to .bazelrc.local and adjust.
# Choose a build type
build --config debug
# build --config release
# Choose a compiler
build --config gnulike # gcc/clang
# build --config msvc
.gitignore
added: 30, removed: 4, total 26
@@ -1 +1,8 @@
bazel-*
# Build artifacts.
/bazel-*
# Work-in-progress directory.
/wip
# Local settings.
/.bazelrc.local