Add move notice

This commit is contained in:
Nikolas 2025-08-07 21:47:10 +02:00
parent b7d89cb7b9
commit 731884848a
No known key found for this signature in database
GPG Key ID: E95F679E3CDD9784
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,6 @@
> Development of raylib-zig has moved to [its own organisation](https://github.com/raylib-zig/raylib-zig).
> Please update your `build.zig.zon` files and other links accordingly.
![logo](https://github.com/raylib-zig/raylib-zig/raw/devel/logo/logo.png)
# raylib-zig

View File

@ -71,6 +71,12 @@ const gui = struct {
};
pub fn build(b: *std.Build) !void {
const stdout = std.io.getStdOut().writer();
try stdout.print(
\\Development of raylib-zig has moved to its own organisation (https://github.com/raylib-zig/raylib-zig).
\\Please update your `build.zig.zon` files and other links accordingly.
\\
, .{});
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});