Add Zig build file (#2014)
The build file builds Raylib as a static library for either Windows or Linux.
This commit is contained in:
parent
b7063ab879
commit
206e1def6f
2 changed files with 65 additions and 0 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -93,3 +93,10 @@ build
|
||||||
GPATH
|
GPATH
|
||||||
GRTAGS
|
GRTAGS
|
||||||
GTAGS
|
GTAGS
|
||||||
|
|
||||||
|
# Zig programming language
|
||||||
|
zig-cache/
|
||||||
|
zig-out/
|
||||||
|
build/
|
||||||
|
build-*/
|
||||||
|
docgen_tmp/
|
||||||
|
|
58
src/build.zig
Normal file
58
src/build.zig
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
const std = @import("std");
|
||||||
|
|
||||||
|
pub fn build(b: *std.build.Builder) void {
|
||||||
|
// Standard target options allows the person running `zig build` to choose
|
||||||
|
// what target to build for. Here we do not override the defaults, which
|
||||||
|
// means any target is allowed, and the default is native. Other options
|
||||||
|
// for restricting supported target set are available.
|
||||||
|
const target = b.standardTargetOptions(.{});
|
||||||
|
|
||||||
|
// Standard release options allow the person running `zig build` to select
|
||||||
|
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
|
||||||
|
const mode = b.standardReleaseOptions();
|
||||||
|
|
||||||
|
const raylib_flags = &[_][]const u8{
|
||||||
|
"-std=gnu99",
|
||||||
|
"-DPLATFORM_DESKTOP",
|
||||||
|
"-DGL_SILENCE_DEPRECATION",
|
||||||
|
"-fno-sanitize=undefined", // https://github.com/raysan5/raylib/issues/1891
|
||||||
|
};
|
||||||
|
|
||||||
|
const raylib = b.addStaticLibrary("raylib", "raylib.h");
|
||||||
|
raylib.setTarget(target);
|
||||||
|
raylib.setBuildMode(mode);
|
||||||
|
raylib.linkLibC();
|
||||||
|
|
||||||
|
raylib.addIncludeDir("external/glfw/include");
|
||||||
|
|
||||||
|
raylib.addCSourceFile("rcore.c", raylib_flags);
|
||||||
|
raylib.addCSourceFile("rmodels.c", raylib_flags);
|
||||||
|
raylib.addCSourceFile("raudio.c", raylib_flags);
|
||||||
|
raylib.addCSourceFile("rshapes.c", raylib_flags);
|
||||||
|
raylib.addCSourceFile("rtext.c", raylib_flags);
|
||||||
|
raylib.addCSourceFile("rtextures.c", raylib_flags);
|
||||||
|
raylib.addCSourceFile("utils.c", raylib_flags);
|
||||||
|
raylib.addCSourceFile("rglfw.c", raylib_flags);
|
||||||
|
|
||||||
|
switch (raylib.target.toTarget().os.tag) {
|
||||||
|
.windows => {
|
||||||
|
raylib.linkSystemLibrary("winmm");
|
||||||
|
raylib.linkSystemLibrary("gdi32");
|
||||||
|
raylib.linkSystemLibrary("opengl32");
|
||||||
|
raylib.addIncludeDir("external/glfw/deps/mingw");
|
||||||
|
},
|
||||||
|
.linux => {
|
||||||
|
raylib.linkSystemLibrary("GL");
|
||||||
|
raylib.linkSystemLibrary("rt");
|
||||||
|
raylib.linkSystemLibrary("dl");
|
||||||
|
raylib.linkSystemLibrary("m");
|
||||||
|
raylib.linkSystemLibrary("X11");
|
||||||
|
},
|
||||||
|
else => {
|
||||||
|
@panic("Unsupported OS");
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
raylib.setOutputDir("./");
|
||||||
|
raylib.install();
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue