use zig packaging for raylib
This commit is contained in:
parent
d2f8af619f
commit
da5ae3710d
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -1,6 +1,3 @@
|
||||||
[submodule "zig/3rd-party/raylib"]
|
|
||||||
path = zig/3rd-party/raylib
|
|
||||||
url = https://github.com/raysan5/raylib/
|
|
||||||
[submodule "zig/3rd-party/raygui"]
|
[submodule "zig/3rd-party/raygui"]
|
||||||
path = zig/3rd-party/raygui
|
path = zig/3rd-party/raygui
|
||||||
url = https://github.com/raysan5/raygui/
|
url = https://github.com/raysan5/raygui/
|
||||||
|
|
1
zig/3rd-party/raylib
vendored
1
zig/3rd-party/raylib
vendored
|
@ -1 +0,0 @@
|
||||||
Subproject commit bc15c19518968878b68bbfe8eac3fe4297f11770
|
|
|
@ -16,12 +16,12 @@ pub fn build(b: *std.Build) void {
|
||||||
|
|
||||||
// We cannot directly use modules since v4.5 is not compatible with zig
|
// We cannot directly use modules since v4.5 is not compatible with zig
|
||||||
// v0.11
|
// v0.11
|
||||||
const raylib_dep = b.anonymousDependency("3rd-party/raylib/", @import("3rd-party/raylib/build.zig"), .{
|
const raylib_dep = b.dependency("raylib", .{
|
||||||
.target = target,
|
.target = target,
|
||||||
.optimize = optimize,
|
.optimize = optimize,
|
||||||
});
|
});
|
||||||
exe.addIncludePath(.{ .path = "3rd-party/raygui/src" });
|
|
||||||
exe.linkLibrary(raylib_dep.artifact("raylib"));
|
exe.linkLibrary(raylib_dep.artifact("raylib"));
|
||||||
|
exe.addIncludePath(.{ .path = "3rd-party/raygui/src" });
|
||||||
exe.linkSystemLibrary("sqlite3");
|
exe.linkSystemLibrary("sqlite3");
|
||||||
|
|
||||||
// This declares intent for the executable to be installed into the
|
// This declares intent for the executable to be installed into the
|
||||||
|
|
10
zig/build.zig.zon
Normal file
10
zig/build.zig.zon
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
.{
|
||||||
|
.name = "fabapp",
|
||||||
|
.version = "0.1.0",
|
||||||
|
.dependencies = .{
|
||||||
|
.raylib = .{
|
||||||
|
.url = "https://github.com/raysan5/raylib/archive/bc15c19518968878b68bbfe8eac3fe4297f11770.tar.gz",
|
||||||
|
.hash = "122093954b8c911e507de32d83a2046e122c6aca64e71f5244d54f9bbb93730c3ab7",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in a new issue