Skip to content

Commit

Permalink
build.zig: Add option for enabling raygui
Browse files Browse the repository at this point in the history
  • Loading branch information
sagehane committed Oct 10, 2024
1 parent ddef355 commit e6ad195
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ pub fn build(b: *std.Build) !void {
const options = Options{
.platform = b.option(PlatformBackend, "platform", "Choose the platform backedn for desktop target") orelse defaults.platform,
.raudio = b.option(bool, "raudio", "Compile with audio support") orelse defaults.raudio,
.raygui = b.option(bool, "raygui", "Compile with raygui support") orelse defaults.raygui,
.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,
Expand Down

0 comments on commit e6ad195

Please sign in to comment.