forked from gazebosim/gz-fuel-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
110 lines (96 loc) · 2.21 KB
/
BUILD.bazel
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
load(
"@gz//bazel/skylark:build_defs.bzl",
"GZ_FEATURES",
"GZ_ROOT",
"GZ_VISIBILITY",
"gz_configure_header",
"gz_export_header",
"gz_include_header",
)
load(
"@gz//bazel/lint:lint.bzl",
"add_lint_tests",
)
package(
default_visibility = GZ_VISIBILITY,
features = GZ_FEATURES,
)
licenses(["notice"]) # Apache-2.0
exports_files(["LICENSE"])
gz_configure_header(
name = "fuel_tools_config_hh",
src = "include/gz/fuel_tools/config.hh.in",
cmakelists = ["CMakeLists.txt"],
defines = {
# These definitions are unused,
# this is merely to suppress generator warnings
"CMAKE_INSTALL_PREFIX": "unused",
},
package = "fuel_tools",
)
gz_export_header(
name = "include/gz/fuel_tools/Export.hh",
export_base = "GZ_FUEL_TOOLS",
lib_name = "gz-fuel_tools",
visibility = ["//visibility:private"],
)
public_headers_no_gen = glob([
"include/gz/fuel_tools/*.hh",
])
private_headers = glob(["src/*.hh"])
sources = glob(
["src/*.cc"],
exclude = [
"src/gz.cc",
"src/*_TEST.cc",
],
)
gz_include_header(
name = "fuel_tools_hh_genrule",
out = "include/gz/fuel_tools.hh",
hdrs = public_headers_no_gen + [
"include/gz/fuel_tools/config.hh",
"include/gz/fuel_tools/Export.hh",
],
)
public_headers = public_headers_no_gen + [
"include/gz/fuel_tools/config.hh",
"include/gz/fuel_tools/Export.hh",
"include/gz/fuel_tools.hh",
]
cc_library(
name = "fuel_tools",
srcs = sources + private_headers,
hdrs = public_headers,
includes = ["include"],
deps = [
GZ_ROOT + "common",
GZ_ROOT + "msgs",
"@curl",
"@jsoncpp",
"@yaml",
"@zip",
],
)
test_sources = glob(
include = ["src/*_TEST.cc"],
exclude = [
"src/gz_TEST.cc",
"src/gz_src_TEST.cc",
],
)
[cc_test(
name = src.replace("/", "_").replace(".cc", "").replace("src_", ""),
srcs = [src],
env = {
"GZ_BAZEL": "1",
"GZ_BAZEL_PATH": "fuel_tools",
},
deps = [
":fuel_tools",
GZ_ROOT + "common/testing",
"@gtest",
"@gtest//:gtest_main",
],
) for src in test_sources]
add_lint_tests()