mirror of
https://gitee.com/openharmony/third_party_benchmark
synced 2024-11-23 07:20:12 +00:00
f9e826db52
Signed-off-by: CrazyRong <zzr189911@163.com>
18 lines
391 B
Plaintext
18 lines
391 B
Plaintext
cc_library(
|
|
name = "nanobind",
|
|
srcs = glob([
|
|
"src/*.cpp"
|
|
]),
|
|
copts = ["-fexceptions"],
|
|
includes = ["include", "ext/robin_map/include"],
|
|
textual_hdrs = glob(
|
|
[
|
|
"include/**/*.h",
|
|
"src/*.h",
|
|
"ext/robin_map/include/tsl/*.h",
|
|
],
|
|
),
|
|
deps = ["@python_headers"],
|
|
visibility = ["//visibility:public"],
|
|
)
|