/
githubmirror
/
CPlusPlusThings
Обзор
Документация
Войти
/
githubmirror
/
CPlusPlusThings
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tool/output/BUILD
18 строк
361 B
zhangxing
support bazel complie this project and format code.
30 мар 2024, 17:00
30 мар 2024, 17:00
3c8a3f2
Код
Авторство
О чём код?
# please run `bazel run //tool/output:container` load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library") cc_library( name = "output_container", hdrs = ["output_container.h"], copts = ["-std=c++17"], ) cc_binary( name = "container", srcs = ["container.cpp"], deps = [ ":output_container", ], copts = ["-std=c++17"], )