* Logging ported from layover project with minor tweaks.
* Logging test ported over.
* Boost libraries are available.
16 lines
235 B
Python
16 lines
235 B
Python
cc_binary(
|
|
name = "parselinkd",
|
|
srcs = ["main.cpp"],
|
|
deps = [
|
|
"@fmt",
|
|
"@boost//:beast",
|
|
],
|
|
)
|
|
cc_binary(
|
|
name = "parselinklog",
|
|
srcs = ["log.cpp"],
|
|
deps = [
|
|
"//source/common"
|
|
],
|
|
)
|