BUILD 354 字节
Newer Older
1
load("@rules_cc//cc:defs.bzl", "cc_library")
Y
 
Yuliang Guo 已提交
2 3 4 5 6 7
load("//tools:cpplint.bzl", "cpplint")

package(default_visibility = ["//visibility:public"])

cc_library(
    name = "motion",
8 9
    srcs = ["plane_motion.cc"],
    hdrs = ["plane_motion.h"],
Y
 
Yuliang Guo 已提交
10 11 12 13 14 15 16 17 18
    copts = [
        "-Wno-deprecated",
    ],
    deps = [
        "//modules/perception/base",
    ],
)

cpplint()