Merge branch 'master' of https://github.com/raysan5/raylib
This commit is contained in:
commit
83628933f0
1 changed files with 45 additions and 13 deletions
|
@ -6,7 +6,6 @@ pub fn addRaylib(b: *std.Build, target: std.zig.CrossTarget, optimize: std.built
|
||||||
"-std=gnu99",
|
"-std=gnu99",
|
||||||
"-D_GNU_SOURCE",
|
"-D_GNU_SOURCE",
|
||||||
"-DGL_SILENCE_DEPRECATION=199309L",
|
"-DGL_SILENCE_DEPRECATION=199309L",
|
||||||
"-fno-sanitize=undefined", // https://github.com/raysan5/raylib/issues/1891
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const raylib = b.addStaticLibrary(.{
|
const raylib = b.addStaticLibrary(.{
|
||||||
|
@ -22,15 +21,38 @@ pub fn addRaylib(b: *std.Build, target: std.zig.CrossTarget, optimize: std.built
|
||||||
}
|
}
|
||||||
|
|
||||||
raylib.addCSourceFiles(&.{
|
raylib.addCSourceFiles(&.{
|
||||||
srcdir ++ "/raudio.c",
|
|
||||||
srcdir ++ "/rcore.c",
|
srcdir ++ "/rcore.c",
|
||||||
srcdir ++ "/rmodels.c",
|
|
||||||
srcdir ++ "/rshapes.c",
|
|
||||||
srcdir ++ "/rtext.c",
|
|
||||||
srcdir ++ "/rtextures.c",
|
|
||||||
srcdir ++ "/utils.c",
|
srcdir ++ "/utils.c",
|
||||||
}, raylib_flags);
|
}, raylib_flags);
|
||||||
|
|
||||||
|
if (options.raudio) {
|
||||||
|
raylib.addCSourceFiles(&.{
|
||||||
|
srcdir ++ "/raudio.c",
|
||||||
|
}, raylib_flags);
|
||||||
|
}
|
||||||
|
if (options.rmodels) {
|
||||||
|
raylib.addCSourceFiles(&.{
|
||||||
|
srcdir ++ "/rmodels.c",
|
||||||
|
}, &[_][]const u8{
|
||||||
|
"-fno-sanitize=undefined", // https://github.com/raysan5/raylib/issues/1891
|
||||||
|
} ++ raylib_flags);
|
||||||
|
}
|
||||||
|
if (options.rshapes) {
|
||||||
|
raylib.addCSourceFiles(&.{
|
||||||
|
srcdir ++ "/rshapes.c",
|
||||||
|
}, raylib_flags);
|
||||||
|
}
|
||||||
|
if (options.rtext) {
|
||||||
|
raylib.addCSourceFiles(&.{
|
||||||
|
srcdir ++ "/rtext.c",
|
||||||
|
}, raylib_flags);
|
||||||
|
}
|
||||||
|
if (options.rtextures) {
|
||||||
|
raylib.addCSourceFiles(&.{
|
||||||
|
srcdir ++ "/rtextures.c",
|
||||||
|
}, raylib_flags);
|
||||||
|
}
|
||||||
|
|
||||||
var gen_step = std.build.Step.WriteFile.create(b);
|
var gen_step = std.build.Step.WriteFile.create(b);
|
||||||
raylib.step.dependOn(&gen_step.step);
|
raylib.step.dependOn(&gen_step.step);
|
||||||
|
|
||||||
|
@ -137,6 +159,11 @@ pub fn addRaylib(b: *std.Build, target: std.zig.CrossTarget, optimize: std.built
|
||||||
}
|
}
|
||||||
|
|
||||||
pub const Options = struct {
|
pub const Options = struct {
|
||||||
|
raudio: bool = true,
|
||||||
|
rmodels: bool = true,
|
||||||
|
rshapes: bool = true,
|
||||||
|
rtext: bool = true,
|
||||||
|
rtextures: bool = true,
|
||||||
raygui: bool = false,
|
raygui: bool = false,
|
||||||
platform_drm: bool = false,
|
platform_drm: bool = false,
|
||||||
};
|
};
|
||||||
|
@ -152,19 +179,24 @@ pub fn build(b: *std.Build) void {
|
||||||
// set a preferred release mode, allowing the user to decide how to optimize.
|
// set a preferred release mode, allowing the user to decide how to optimize.
|
||||||
const optimize = b.standardOptimizeOption(.{});
|
const optimize = b.standardOptimizeOption(.{});
|
||||||
|
|
||||||
const raygui = b.option(bool, "raygui", "Compile with raygui support");
|
const defaults = Options{};
|
||||||
const platform_drm = b.option(bool, "platform_drm", "Compile raylib in native mode (no X11)");
|
const options = Options{
|
||||||
|
.platform_drm = b.option(bool, "platform_drm", "Compile raylib in native mode (no X11)") orelse defaults.platform_drm,
|
||||||
|
.raudio = b.option(bool, "raudio", "Compile with audio support") orelse defaults.raudio,
|
||||||
|
.rmodels = b.option(bool, "rmodels", "Compile with models support") orelse defaults.rmodels,
|
||||||
|
.rtext = b.option(bool, "rtext", "Compile with text support") orelse defaults.rtext,
|
||||||
|
.rtextures = b.option(bool, "rtextures", "Compile with textures support") orelse defaults.rtextures,
|
||||||
|
.rshapes = b.option(bool, "rshapes", "Compile with shapes support") orelse defaults.rshapes,
|
||||||
|
.raygui = b.option(bool, "raygui", "Compile with raygui support") orelse defaults.raygui,
|
||||||
|
};
|
||||||
|
|
||||||
const lib = addRaylib(b, target, optimize, .{
|
const lib = addRaylib(b, target, optimize, options);
|
||||||
.raygui = raygui orelse false,
|
|
||||||
.platform_drm = platform_drm orelse false,
|
|
||||||
});
|
|
||||||
|
|
||||||
lib.installHeader("src/raylib.h", "raylib.h");
|
lib.installHeader("src/raylib.h", "raylib.h");
|
||||||
lib.installHeader("src/raymath.h", "raymath.h");
|
lib.installHeader("src/raymath.h", "raymath.h");
|
||||||
lib.installHeader("src/rlgl.h", "rlgl.h");
|
lib.installHeader("src/rlgl.h", "rlgl.h");
|
||||||
|
|
||||||
if (raygui orelse false) {
|
if (options.raygui) {
|
||||||
lib.installHeader("../raygui/src/raygui.h", "raygui.h");
|
lib.installHeader("../raygui/src/raygui.h", "raygui.h");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue