forked from ApolloAuto/apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpcl.BUILD
32 lines (30 loc) · 782 Bytes
/
pcl.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
25
26
27
28
29
30
31
32
licenses(["notice"])
package(default_visibility = ["//visibility:public"])
# This assumes you have pcl 1.7 pre-installed in your system.
cc_library(
name = "pcl",
defines = ["PCL_NO_PRECOMPILE"],
includes = ["."],
linkopts = [
"-L/usr/local/lib",
"-lboost_system",
"-lpcl_common",
"-lpcl_features",
"-lpcl_filters",
"-lpcl_io_ply",
"-lpcl_io",
"-lpcl_kdtree",
"-lpcl_keypoints",
"-lpcl_octree",
"-lpcl_outofcore",
"-lpcl_people",
"-lpcl_recognition",
"-lpcl_registration",
"-lpcl_sample_consensus",
"-lpcl_search",
"-lpcl_segmentation",
"-lpcl_surface",
"-lpcl_tracking",
"-lpcl_visualization",
],
)