mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
28 lines
505 B
Plaintext
28 lines
505 B
Plaintext
cc_library(
|
|
name = "binlog",
|
|
srcs = glob(["include/**/*.cpp"]),
|
|
hdrs = glob(["include/**/*.hpp"]),
|
|
includes = ["include"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "bread",
|
|
srcs = [
|
|
"bin/bread.cpp",
|
|
"bin/getopt.hpp",
|
|
"bin/printers.cpp",
|
|
"bin/printers.hpp",
|
|
],
|
|
deps = [":binlog"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "brecovery",
|
|
srcs = [
|
|
"bin/brecovery.cpp",
|
|
"bin/getopt.hpp",
|
|
],
|
|
deps = [":binlog"],
|
|
)
|