forked from Light-City/CPlusPlusThings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
27 lines (25 loc) · 706 Bytes
/
BUILD
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
# please run `bazel run //learn_class/modern_cpp_30/compilercompute:IF`
# please run `bazel run //learn_class/modern_cpp_30/compilercompute:factorial`
# please run `bazel run //learn_class/modern_cpp_30/compilercompute:fmap`
# please run `bazel run //learn_class/modern_cpp_30/compilercompute:WhileLoop`
load("@rules_cc//cc:defs.bzl", "cc_binary")
cc_binary(
name = "IF",
srcs = ["IF.cpp"],
copts = ["-std=c++17"],
)
cc_binary(
name = "factorial",
srcs = ["factorial.cpp"],
copts = ["-std=c++17"],
)
cc_binary(
name = "fmap",
srcs = ["fmap.cpp"],
copts = ["-std=c++17"],
)
cc_binary(
name = "WhileLoop",
srcs = ["WhileLoop.cpp"],
copts = ["-std=c++17"],
)