-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBUILD
24 lines (23 loc) · 799 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
load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "ser20",
srcs = glob([
"src/ser20.cpp",
"src/polymorphic_impl.cpp",
]),
hdrs = glob([
"include/ser20/*.hpp",
"include/ser20/external/*.hpp",
"include/ser20/external/rapidjson/*.h",
"include/ser20/external/rapidjson/error/*.h",
"include/ser20/external/rapidjson/internal/*.h",
"include/ser20/external/rapidjson/msinttypes/*.h",
"include/ser20/external/rapidxml/*.hpp",
"include/ser20/archives/*.hpp",
"include/ser20/details/*.hpp",
"include/ser20/types/*.hpp",
"include/ser20/types/concepts/pair_associative_container.hpp",
]),
strip_include_prefix = "include/",
visibility = ["//visibility:public"],
)