forked from Light-City/CPlusPlusThings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
39 lines (37 loc) · 1003 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
30
31
32
33
34
35
36
37
38
39
# please run `bazel run //codingStyleIdioms/3_RAII:RAII_fstram`
# please run `bazel run //codingStyleIdioms/3_RAII:c++_example1`
# please run `bazel run //codingStyleIdioms/3_RAII:c++_example`
# please run `bazel run //codingStyleIdioms/3_RAII:RAII`
# please run `bazel run //codingStyleIdioms/3_RAII:c_example`
# please run `bazel run //codingStyleIdioms/3_RAII:c++_example2`
load("@rules_cc//cc:defs.bzl", "cc_binary")
cc_binary(
name = "RAII_fstram",
srcs = ["RAII_fstram.cpp"],
copts = ["-std=c++11"],
)
cc_binary(
name = "c++_example1",
srcs = ["c++_example1.cpp"],
copts = ["-std=c++11"],
)
cc_binary(
name = "c++_example",
srcs = ["c++_example.cpp"],
copts = ["-std=c++11"],
)
cc_binary(
name = "RAII",
srcs = ["RAII.cpp"],
copts = ["-std=c++11"],
)
cc_binary(
name = "c_example",
srcs = ["c_example.cpp"],
copts = ["-std=c++11"],
)
cc_binary(
name = "c++_example2",
srcs = ["c++_example2.cpp"],
copts = ["-std=c++11"],
)