dds-bridge-sys 3.0.0

Generated bindings to DDS, the double dummy solver for bridge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
load("//:CPPVARIABLES.bzl", "DDS_CPPOPTS", "DDS_LINKOPTS", "DDS_LOCAL_DEFINES")
load("@rules_cc//cc:defs.bzl", "cc_library")

cc_library(
    name = "lookup_tables",
    srcs = ["lookup_tables.cpp"],
    hdrs = ["lookup_tables.hpp"],
    visibility = ["//visibility:public"],
    deps = [
        "//library/src/utility:constants",
    ],
    include_prefix = "lookup_tables",
    copts = DDS_CPPOPTS,
    linkopts = DDS_LINKOPTS,
    local_defines = DDS_LOCAL_DEFINES,
)