STT-tensorflow/third_party/pybind11.BUILD
A. Unique TensorFlower fd2d5a3739 Clean up obsolete BUILD options.
PiperOrigin-RevId: 261616467
2019-08-04 21:40:55 -07:00

25 lines
570 B
Plaintext

package(default_visibility = ["//visibility:public"])
cc_library(
name = "pybind11",
hdrs = glob(
include = [
"include/pybind11/*.h",
"include/pybind11/detail/*.h",
],
exclude = [
"include/pybind11/common.h",
"include/pybind11/eigen.h",
],
),
copts = [
"-fexceptions",
"-Wno-undefined-inline",
"-Wno-pragma-once-outside-header",
],
includes = ["include"],
deps = [
"@org_tensorflow//third_party/python_runtime:headers",
],
)