-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
47 lines (40 loc) · 910 Bytes
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
cc_binary(
name="std_filesystem",
srcs = ["std_filesystem/main.cc"],
copts = ["-std=c++20"],
)
cc_binary(
name="structured_binding",
srcs = ["structured_binding/main.cc"],
copts = ["-std=c++20"],
)
cc_binary(
name="std_variant",
srcs = ["std_variant/main.cc"],
copts = ["-std=c++20"],
)
cc_binary(
name="x86_64_memmove",
srcs = ["x86_64_memmove/main.cc"],
copts = ["-std=c++20"],
)
cc_binary(
name="static_const",
srcs = ["static_const/main.cc"],
copts = ["-std=c++20", "-fpermissive"],
)
cc_binary(
name="std_conditionvariable_waitfor",
srcs = ["std_conditionvariable_waitfor/main.cc"],
copts = ["-std=c++20"],
)
cc_binary(
name="merge_sorted_arrays",
srcs = ["merge_sorted_arrays/main.cc"],
copts = ["-std=c++20"],
)
cc_binary(
name="nth_largest",
srcs = ["nth_largest/main.cc"],
copts = ["-std=c++20"],
)