-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathBUILD
More file actions
45 lines (37 loc) · 726 Bytes
/
BUILD
File metadata and controls
45 lines (37 loc) · 726 Bytes
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
load("@buildifier_prebuilt//:rules.bzl", "buildifier")
load("@rules_cc//cc:defs.bzl", "cc_binary")
load("//hello_world:generator.bzl", "hello_world")
buildifier(
name = "buildifier",
lint_mode = "warn",
mode = "check",
verbose = True,
)
exports_files(
srcs = [
"code_dive.txt",
"everyone.txt",
"ndc_techtown.txt",
],
)
hello_world(
name = "code_dive",
)
hello_world(
name = "ndc_techtown",
)
hello_world(
name = "everyone",
)
cc_binary(
name = "hello_world_code_dive",
srcs = [":code_dive"],
)
cc_binary(
name = "hello_world_ndc_techtown",
srcs = [":ndc_techtown"],
)
cc_binary(
name = "hello_world_everyone",
srcs = [":everyone"],
)