forked from Light-City/CPlusPlusThings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
29 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
28
29
# please run `bazel run basic_content/struct:ext_struct_func`
# please run `bazel run basic_content/struct:struct_func_func`
# please run `bazel run basic_content/struct:struct_func`
# please run `bazel run basic_content/struct:struct_func_cpp`
load("@rules_cc//cc:defs.bzl", "cc_binary")
cc_binary(
name = "ext_struct_func",
srcs = ["ext_struct_func.cpp"],
copts = ["-std=c++11"]
)
cc_binary(
name = "struct_func_func",
srcs = ["struct_func_func.cpp"],
copts = ["-std=c++11"]
)
cc_binary(
name = "struct_func",
srcs = ["struct_func.cpp"],
copts = ["-std=c++11"]
)
cc_binary(
name = "struct_func_cpp",
srcs = ["struct_func.cpp"],
copts = ["-std=c++11"]
)