mirror of
https://github.com/thunderbrewhq/system.git
synced 2026-02-03 16:39:07 +00:00
feat(build): add build.zig file
This commit is contained in:
parent
823f0da277
commit
73b76e044b
1 changed files with 11 additions and 0 deletions
11
build.zig
Normal file
11
build.zig
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
const std = @import("std");
|
||||
|
||||
pub fn build(b: *std.Build) void {
|
||||
const optimize = b.standardOptimizeOption(.{});
|
||||
const module = b.addModule(.{
|
||||
.name = "system",
|
||||
.root_source_file = b.path("zig/system.zig"),
|
||||
.optimize = optimize
|
||||
});
|
||||
b.default_step.dependOn(&module.step);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue