mirror of
https://github.com/github/codeql.git
synced 2026-04-27 17:55:19 +02:00
20 lines
421 B
Plaintext
20 lines
421 B
Plaintext
cc_library(
|
|
name = "binlog",
|
|
hdrs = glob(["include/**/*.hpp"]),
|
|
srcs = glob(["include/**/*.cpp"]),
|
|
includes = ["include"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "bread",
|
|
srcs = ["bin/bread.cpp", "bin/printers.hpp", "bin/printers.cpp", "bin/getopt.hpp"],
|
|
deps = [":binlog"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "brecovery",
|
|
srcs = ["bin/brecovery.cpp", "bin/getopt.hpp"],
|
|
deps = [":binlog"],
|
|
)
|