mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
39 lines
679 B
Text
39 lines
679 B
Text
cc_binary(
|
|
name = "example",
|
|
srcs = glob([
|
|
"*.cc",
|
|
]),
|
|
data = [
|
|
"example.so",
|
|
],
|
|
linkstatic = True,
|
|
deps = [
|
|
":ray_api",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "example.so",
|
|
srcs = glob([
|
|
"*.cc",
|
|
]),
|
|
linkopts = ["-shared"],
|
|
linkstatic = True,
|
|
deps = [
|
|
":ray_api",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "ray_api",
|
|
srcs = [
|
|
"thirdparty/lib/libray_api.so",
|
|
],
|
|
hdrs = glob([
|
|
"thirdparty/include/**/*.h",
|
|
"thirdparty/include/**/*.hpp",
|
|
]),
|
|
linkopts = ["-Wl,-rpath, ./"],
|
|
strip_include_prefix = "thirdparty/include",
|
|
visibility = ["//visibility:public"],
|
|
)
|