mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-06 03:18:14 +00:00
Fix examples/build.zig for the latest Zig version (#2786)
This commit is contained in:
@@ -35,16 +35,16 @@ fn add_module(comptime module: []const u8, b: *std.build.Builder, target: std.zi
|
|||||||
else => @panic("Unsupported OS"),
|
else => @panic("Unsupported OS"),
|
||||||
});
|
});
|
||||||
|
|
||||||
exe.addIncludeDir("../src");
|
exe.addIncludePath("../src");
|
||||||
exe.addIncludeDir("../src/external");
|
exe.addIncludePath("../src/external");
|
||||||
exe.addIncludeDir("../src/external/glfw/include");
|
exe.addIncludePath("../src/external/glfw/include");
|
||||||
|
|
||||||
switch (exe.target.toTarget().os.tag) {
|
switch (exe.target.toTarget().os.tag) {
|
||||||
.windows => {
|
.windows => {
|
||||||
exe.linkSystemLibrary("winmm");
|
exe.linkSystemLibrary("winmm");
|
||||||
exe.linkSystemLibrary("gdi32");
|
exe.linkSystemLibrary("gdi32");
|
||||||
exe.linkSystemLibrary("opengl32");
|
exe.linkSystemLibrary("opengl32");
|
||||||
exe.addIncludeDir("external/glfw/deps/mingw");
|
exe.addIncludePath("external/glfw/deps/mingw");
|
||||||
},
|
},
|
||||||
.linux => {
|
.linux => {
|
||||||
exe.linkSystemLibrary("GL");
|
exe.linkSystemLibrary("GL");
|
||||||
|
Reference in New Issue
Block a user