diff third_party/raylib/raylib-5.5_macos/BUILD @ 0:5695ef413be0

Initialized mono repo with bazels with few examples.
author June Park <parkjune1995@gmail.com>
date Tue, 23 Sep 2025 10:05:25 -0700
parents
children f33d9ff8b6e8
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/third_party/raylib/raylib-5.5_macos/BUILD	Tue Sep 23 10:05:25 2025 -0700
@@ -0,0 +1,15 @@
+load("@rules_cc//cc:cc_import.bzl", "cc_import")
+
+# //third_party/raylib/raylib-5.5_macos:raylib_mac_os
+cc_import(
+  name = "raylib_mac_os",
+  hdrs = [
+    "include/raylib.h",
+    "include/raymath.h",
+  ],
+  static_library = "lib/libraylib.a",
+  visibility = ["//visibility:public"],
+  target_compatible_with = [
+      "@platforms//os:osx",
+  ],
+)