We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb0687a commit f44b742Copy full SHA for f44b742
examples/executable/BUILD.bazel
@@ -4,6 +4,10 @@ load("@rules_cc//cc:defs.bzl", "cc_binary")
4
cc_binary(
5
name = "executable",
6
srcs = ["main.cpp"],
7
+ copts = select({
8
+ "@rules_cc/cc/compiler:msvc-cl": ["/std:c++17"],
9
+ "//conditions:default": ["-std=c++17"],
10
+ }),
11
)
12
13
doxygen(
0 commit comments