ray/cpp/example/BUILD.bazel

40 lines
679 B
Text
Raw Normal View History

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"],
)