diff options
Diffstat (limited to 'modules/sdl3_windows/3.1.10/overlay/BUILD.bazel')
-rw-r--r-- | modules/sdl3_windows/3.1.10/overlay/BUILD.bazel | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/sdl3_windows/3.1.10/overlay/BUILD.bazel b/modules/sdl3_windows/3.1.10/overlay/BUILD.bazel new file mode 100644 index 0000000..60d1b2e --- /dev/null +++ b/modules/sdl3_windows/3.1.10/overlay/BUILD.bazel @@ -0,0 +1,14 @@ +cc_import( + name = "sdl3_imp", + interface_library = "lib/x64/SDL3.lib", + shared_library = "lib/x64/SDL3.dll", +) + +cc_library( + name = "sdl3", + hdrs = glob(["include/SDL3/*.h"]), + includes = ["include"], + deps = [":sdl3_imp"], + visibility = ["//visibility:public"], +) + |