mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-25 02:28:18 +00:00
5dda2efde5
This reverts commit b2fbd45d2395f1f6ef39db72b7156724fc101e40. D114922 fixed the reason of the 2nd revert. This patch also re-applies 39e9f5d3685f3cfca0df072928ad96d973704dff. Differential Revision: https://reviews.llvm.org/D112012
21 lines
474 B
Plaintext
21 lines
474 B
Plaintext
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"],
|
|
visibility = ["//visibility:public"],
|
|
)
|