* Logging ported from layover project with minor tweaks.
* Logging test ported over.
* Boost libraries are available.
26 lines
507 B
Python
26 lines
507 B
Python
# parselink
|
|
|
|
cc_library(
|
|
name = "lib",
|
|
srcs = [
|
|
"source/logging.cpp",
|
|
],
|
|
hdrs = [
|
|
"include/logging.h",
|
|
"include/logging/level.h",
|
|
"include/logging/formatters.h",
|
|
"include/logging/theme.h",
|
|
"include/logging/traits.h",
|
|
],
|
|
linkstatic = True,
|
|
includes = ["include"],
|
|
deps = [
|
|
"@fmt//:fmt",
|
|
"@magic_enum//:magic_enum",
|
|
],
|
|
visibility = [
|
|
# TODO: Fix visibility
|
|
"//visibility:public",
|
|
],
|
|
)
|