Add sdl3_windows 3.2.6

This commit is contained in:
2025-03-02 22:59:52 +01:00
parent b21e1f8b7a
commit 6832e1a919
5 changed files with 51 additions and 1 deletions

View File

@ -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"],
)

View File

@ -0,0 +1 @@
../MODULE.bazel