brintos

brintos / llvm-project-archived public Read only

0
0
Text · 384 B · d9fb431 Raw
16 lines · plain
1cc_library(2    name = "pybind11",3    hdrs = glob(4        include = ["include/pybind11/**/*.h"],5        exclude = [6            # Deprecated file that just emits a warning7            "include/pybind11/common.h",8        ],9    ),10    includes = ["include"],11    visibility = ["//visibility:public"],12    deps = [13        "@rules_python//python/cc:current_py_cc_headers",14    ],15)16