Adds initial bazel build config.

This commit is contained in:
2023-04-25 23:00:44 -07:00
parent b62eef6c23
commit 005a2baf4f
3 changed files with 33 additions and 3 deletions

7
BUILD Normal file
View File

@@ -0,0 +1,7 @@
load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "tinytest",
srcs = ["test.cpp"],
hdrs = ["test.h"],
)