Updates for bazel on windows.

This commit is contained in:
2023-05-17 14:26:26 -07:00
parent a8c0ef05fb
commit 9e8f04e9b4
84 changed files with 2789 additions and 5836 deletions

18
opengl/BUILD Normal file
View File

@@ -0,0 +1,18 @@
load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "window",
srcs = ["window.cpp"],
hdrs = ["window.h"],
visibility = ["//visibility:public"],
deps = ["//:window"],
)
cc_test(
name = "window_test",
srcs = ["window_test.cpp"],
deps = [
":window",
"@TinyTest//:tinytest",
],
)