File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Copyright (C) 2023 Swift Navigation Inc.
2
+ # Contact: Swift Navigation <
[email protected] >
3
+ #
4
+ # This source is subject to the license found in the file 'LICENSE' which must
5
+ # be be distributed together with this source. All other rights reserved.
6
+ #
7
+ # THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
8
+ # EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
9
+ # WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
10
+
11
+ package(
12
+ default_visibility = ["//visibility:public"],
13
+ )
14
+
15
+ cc_library(
16
+ name = "asio-grpc",
17
+ hdrs = glob(["src/agrpc/**"]),
18
+ defines = ["AGRPC_STANDALONE_ASIO"],
19
+ includes = ["src"],
20
+ )
Original file line number Diff line number Diff line change
1
+ # Copyright (C) 2023 Swift Navigation Inc.
2
+ # Contact: Swift Navigation <
[email protected] >
3
+ #
4
+ # This source is subject to the license found in the file 'LICENSE' which must
5
+ # be be distributed together with this source. All other rights reserved.
6
+ #
7
+ # THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
8
+ # EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
9
+ # WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
10
+
11
+ package(
12
+ default_visibility = ["//visibility:public"],
13
+ )
14
+
15
+ cc_library(
16
+ name = "asio",
17
+ hdrs = glob([
18
+ "asio/include/asio.hpp",
19
+ "asio/include/asio/**",
20
+ ]),
21
+ includes = ["asio/include"],
22
+ )
You can’t perform that action at this time.
0 commit comments