-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
50 lines (46 loc) · 768 Bytes
/
Copy pathBUILD
File metadata and controls
50 lines (46 loc) · 768 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
46
47
48
49
50
package(default_visibility = ["//visibility:public"])
cc_binary(
name = "spiro_test",
srcs = [
"spiro_test.cc",
],
copts = [
'-Wno-unused-but-set-variable',
'-Wno-sequence-point',
'-fpermissive',
'-DDO_CALL_TEST1'
],
deps = [
"//libspiro:spiro",
],
)
cc_binary(
name = "spiro_example",
srcs = [
"spiro_example.cc",
],
deps = [
"//libspiro:spiro",
],
)
cc_binary(
name = "spiro_wrapper_example",
srcs = [
"spiro_wrapper_example.cc",
],
deps = [
":spiro_wrapper",
],
)
cc_library(
name = "spiro_wrapper",
hdrs = [
"spiro_wrapper.h",
],
srcs = [
"spiro_wrapper.cc",
],
deps = [
"//libspiro:spiro",
],
)