mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
24 lines
532 B
Text
24 lines
532 B
Text
COPTS = ["-DSPDLOG_COMPILED_LIB"]
|
|
cc_library(
|
|
name = "spdlog",
|
|
srcs = glob([
|
|
"src/*.cpp",
|
|
]),
|
|
hdrs = glob([
|
|
"include/spdlog/*.h",
|
|
"include/spdlog/cfg/*.h",
|
|
"include/spdlog/details/*.h",
|
|
"include/spdlog/fmt/*.h",
|
|
"include/spdlog/fmt/bundled/*.h",
|
|
"include/spdlog/sinks/*.h",
|
|
]),
|
|
includes = [
|
|
".",
|
|
"include/",
|
|
],
|
|
strip_include_prefix = 'include',
|
|
copts = COPTS,
|
|
deps = [
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|