Mercurial
diff third_party/raylib/raylib-5.5_linux_amd64/BUILD @ 11:f33d9ff8b6e8
[Raylib] Added raylib linux to third party lib and added cross platform support.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Tue, 30 Sep 2025 05:01:34 -0700 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/third_party/raylib/raylib-5.5_linux_amd64/BUILD Tue Sep 30 05:01:34 2025 -0700 @@ -0,0 +1,12 @@ +load("@rules_cc//cc:cc_import.bzl", "cc_import") + +# //third_party/raylib/raylib-5.5_linux_amd64:raylib_linux +cc_import( + name = "raylib_linux", + hdrs = ["//third_party/raylib:raylib_hdrs"], + static_library = "lib/libraylib.a", + visibility = ["//visibility:public"], + target_compatible_with = [ + "@platforms//os:linux", + ], +)