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(.{});