From 731884848a1c5480ee58f38d5b787c501925cbe2 Mon Sep 17 00:00:00 2001 From: Nikolas Date: Thu, 7 Aug 2025 21:47:10 +0200 Subject: [PATCH] Add move notice --- README.md | 3 +++ build.zig | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/README.md b/README.md index a7ee07e..afa7e7d 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/build.zig b/build.zig index 4ae5782..398a9a6 100644 --- a/build.zig +++ b/build.zig @@ -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(.{});