Skip to content

Commit

Permalink
wait what
Browse files Browse the repository at this point in the history
  • Loading branch information
leap0x7b committed Feb 3, 2024
1 parent 21801ab commit 02bc242
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2

updates:
- package-ecosystem: gitsubmodule
schedule:
interval: "daily"
directory: /
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
zig-cache
zig-out
5 changes: 5 additions & 0 deletions build.zig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const std = @import("std");

pub fn build(b: *std.Build) void {
_ = b;
}
1 change: 1 addition & 0 deletions build.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.{ .name = "limine-bin" }
3 changes: 3 additions & 0 deletions src/main.zig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
comptime {
@compileError("This is a Zig package that takes the latest Limine binaries and wraps it into a usable Zig package that can be used just by adding the package to build.zig.zon. If you want to use this package, use `limine.builder.pathFromRoot(\"limine/[the file you want to use]\")` in your build.zig.");
}

0 comments on commit 02bc242

Please # to comment.