Mercurial
annotate third_party/raylib/raylib-5.5_win64/BUILD @ 263:ee04e4e69fed
Add functional JRPG frame and tools
Add full-screen background_2 apertures, functional frame chrome, card-driven details, dual-window tools, live conversion workflows, and bounded cleanup for generated downloads.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <mrjunejune@users.noreply.github.com> |
|---|---|
| date | Thu, 06 Aug 2026 11:31:30 -0700 |
| parents | 9df5587cf23b |
| children |
| rev | line source |
|---|---|
|
61
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
1 load("@rules_cc//cc:cc_import.bzl", "cc_import") |
|
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
2 |
|
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
3 |
|
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
4 cc_import( |
|
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
5 name = "raylib_windows", |
|
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
6 hdrs = ["//third_party/raylib:raylib_hdrs"], |
|
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
7 interface_library = "lib/raylib.lib", # Import library for linking ? |
|
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
8 shared_library = "lib/raylib.dll", # Actual DLL ? |
|
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
9 visibility = ["//visibility:public"], |
|
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
10 target_compatible_with = [ |
|
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
11 "@platforms//os:windows", |
|
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
12 ], |
|
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
13 ) |
|
9df5587cf23b
[Color game] It can compile on windows now.
June Park <me@mrjunejune.com>
parents:
diff
changeset
|
14 |