We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e26f64 commit 07f4288Copy full SHA for 07f4288
misc/bazel/internal/zipmerge/BUILD.bazel
@@ -4,13 +4,15 @@ cc_library(
4
"zipmerge.cpp",
5
],
6
hdrs = ["zipmerge.h"],
7
+ copts = ["-std=c++20"],
8
)
9
10
cc_binary(
11
name = "zipmerge",
12
srcs = [
13
"zipmerge_main.cpp",
14
15
16
visibility = ["//visibility:public"],
17
deps = [
18
":lib",
@@ -21,6 +23,7 @@ cc_test(
21
23
name = "test",
22
24
size = "small",
25
srcs = ["zipmerge_test.cpp"],
26
27
data = glob(["test-files/*"]),
28
linkstatic = True, # required to build the test in the internal repo
29
0 commit comments