blob: 14314c44ad4fe1585a942557c3dd8a77a90577ee [file] [log] [blame]
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
package(default_visibility = ["//visibility:public"])
cc_library(
name = "mpsse",
srcs = [
"mpsse/mpsse.c",
"mpsse/support.c",
"mpsse/support.h",
],
hdrs = [
"mpsse/mpsse.h",
],
copts = [
# TODO: Remove this once https://github.com/lowRISC/opentitan/issues/3182
# is resolved.
"-Wno-error=deprecated-declarations",
],
linkopts = [
"-lftdi1",
"-lusb-1.0",
],
)