forked from improbable-eng/phtree-cpp
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathBUILD
More file actions
110 lines (94 loc) · 2.07 KB
/
BUILD
File metadata and controls
110 lines (94 loc) · 2.07 KB
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("@buildifier_prebuilt//:rules.bzl", "buildifier")
load("@rules_cc//cc:defs.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
licenses(["notice"]) # Apache 2.0
# Expose license for external usage through bazel.
exports_files([
"LICENSE",
])
# Platform configuration definitions for select()
config_setting(
name = "linux",
constraint_values = ["@platforms//os:linux"],
)
config_setting(
name = "macos",
constraint_values = ["@platforms//os:osx"],
)
config_setting(
name = "macos_not_ios",
constraint_values = ["@platforms//os:osx"],
)
config_setting(
name = "windows",
constraint_values = ["@platforms//os:windows"],
)
config_setting(
name = "windows_debug",
constraint_values = ["@platforms//os:windows"],
values = {
"compilation_mode": "dbg",
},
)
config_setting(
name = "windows_release",
constraint_values = ["@platforms//os:windows"],
values = {
"compilation_mode": "opt",
},
)
config_setting(
name = "windows-x86_64",
constraint_values = ["@platforms//os:windows"],
)
buildifier(
name = "buildifier.fix",
diff_command = "diff",
exclude_patterns = [
"./.git/*",
"./.clwb/*",
],
lint_mode = "fix",
mode = "fix",
)
buildifier(
name = "buildifier.check",
diff_command = "diff",
exclude_patterns = [
"./.git/*",
"./.clwb/*",
],
lint_mode = "warn",
mode = "diff",
)
# Aspect-based clang-format
filegroup(
name = "dot_clang_format",
srcs = [".clang-format"],
)
cc_library(
name = "phtree",
srcs = glob(
include = [
"include/**/*.h",
],
),
hdrs = [
"include/phtree/converter.h",
"include/phtree/distance.h",
"include/phtree/filter.h",
"include/phtree/phtree.h",
"include/phtree/phtree_multimap.h",
],
includes = [
"include",
],
linkstatic = True,
visibility = [
"//visibility:public",
],
deps = [
"//include/phtree/common",
"//include/phtree/v16",
],
)