parselink-old/source/common/BUILD
Kurt Sassenrath b0ed20369f Initial commit
* Logging ported from layover project with minor tweaks.
    * Logging test ported over.
    * Boost libraries are available.
2023-09-04 16:03:58 -07:00

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