Skip to content

Commit

Permalink
Update build.zig
Browse files Browse the repository at this point in the history
  • Loading branch information
kooparse committed Feb 13, 2023
1 parent 53f298c commit 1e3c032
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ pub fn build(b: *Build) void {
// set a preferred release mode, allowing the user to decide how to optimize.
const optimize = b.standardOptimizeOption(.{});

_ = b.addModule(.{
.name = "zalgebra",
.source_file = .{ .path = "src/main.zig" },
});

// Creates a step for unit testing.
const main_tests = b.addTest(.{
.root_source_file = .{ .path = "src/main.zig" },
Expand Down

0 comments on commit 1e3c032

Please sign in to comment.