Port to Bazel

This commit is contained in:
2024-02-24 21:04:20 -08:00
parent 94d71bb593
commit b0aca69287
1640 changed files with 1374 additions and 623466 deletions

10
sdl/BUILD Normal file
View File

@ -0,0 +1,10 @@
cc_library(
name = "sdl",
srcs = [
"x64_windows/SDL2.dll",
"x64_windows/SDL2.lib",
"x64_windows/SDL2main.lib",
],
hdrs = glob(["include/*.h"]),
visibility = ["//main:__pkg__"],
)