Compare commits

...

2 Commits

Author SHA1 Message Date
6083ceefe2
add build.zig.zon
All checks were successful
Generic zig build / build (push) Successful in 41s
2024-06-04 14:44:24 -07:00
b0ef8ebe63
update to zig 0.13-dev.365 (zig nominated build 2024.05 2024-06-04 14:41:31 -07:00
3 changed files with 18 additions and 4 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
zig-cache
zig-out
core
.zig-cache

View File

@ -19,7 +19,7 @@ pub fn build(b: *std.Build) void {
.name = "smithy",
// In this case the main source file is merely a path, however, in more
// complicated build scripts, this could be a generated file.
.root_source_file = .{ .path = "src/smithy.zig" },
.root_source_file = b.path("src/smithy.zig"),
.target = target,
.optimize = optimize,
});
@ -30,14 +30,14 @@ pub fn build(b: *std.Build) void {
b.installArtifact(lib);
const module = b.addModule("smithy", .{
.root_source_file = .{ .path = "src/smithy.zig" },
.root_source_file = b.path("src/smithy.zig"),
});
lib.root_module.addImport("smithy", module);
// Creates a step for unit testing. This only builds the test executable
// but does not run it.
const main_tests = b.addTest(.{
.root_source_file = .{ .path = "src/smithy.zig" },
.root_source_file = b.path("src/smithy.zig"),
.target = target,
.optimize = optimize,
});

14
build.zig.zon Normal file
View File

@ -0,0 +1,14 @@
.{
.name = "smithy",
.version = "1.0.0",
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"README.md",
"LICENSE.md",
},
.dependencies = .{
},
}