diff options
Diffstat (limited to 'modules/sdl3_windows/3.2.6/overlay/BUILD.bazel')
-rw-r--r-- | modules/sdl3_windows/3.2.6/overlay/BUILD.bazel | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/modules/sdl3_windows/3.2.6/overlay/BUILD.bazel b/modules/sdl3_windows/3.2.6/overlay/BUILD.bazel new file mode 100644 index 0000000..b839d05 --- /dev/null +++ b/modules/sdl3_windows/3.2.6/overlay/BUILD.bazel @@ -0,0 +1,30 @@ +load("@rules_license//rules:license.bzl", "license") + +license( + name = "license", + license_kinds = [ + "@rules_license//licenses/spdx:Zlib", + ], + license_text = "LICENSE.txt", + package_name = "SDL 3", + package_url = "https://libsdl.org/", +) + +package( + default_applicable_licenses = ["//:license"], +) + +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"], +) + |