Compare commits
No commits in common. "6083ceefe262bb016033a7dfbd995968c86b48b2" and "c5436c4e0a2be4a17b1df7bb56b088cd812bfff0" have entirely different histories.
6083ceefe2
...
c5436c4e0a
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,3 @@
|
||||||
|
zig-cache
|
||||||
zig-out
|
zig-out
|
||||||
core
|
core
|
||||||
.zig-cache
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ pub fn build(b: *std.Build) void {
|
||||||
.name = "smithy",
|
.name = "smithy",
|
||||||
// In this case the main source file is merely a path, however, in more
|
// In this case the main source file is merely a path, however, in more
|
||||||
// complicated build scripts, this could be a generated file.
|
// complicated build scripts, this could be a generated file.
|
||||||
.root_source_file = b.path("src/smithy.zig"),
|
.root_source_file = .{ .path = "src/smithy.zig" },
|
||||||
.target = target,
|
.target = target,
|
||||||
.optimize = optimize,
|
.optimize = optimize,
|
||||||
});
|
});
|
||||||
|
@ -30,14 +30,14 @@ pub fn build(b: *std.Build) void {
|
||||||
b.installArtifact(lib);
|
b.installArtifact(lib);
|
||||||
|
|
||||||
const module = b.addModule("smithy", .{
|
const module = b.addModule("smithy", .{
|
||||||
.root_source_file = b.path("src/smithy.zig"),
|
.root_source_file = .{ .path = "src/smithy.zig" },
|
||||||
});
|
});
|
||||||
lib.root_module.addImport("smithy", module);
|
lib.root_module.addImport("smithy", module);
|
||||||
|
|
||||||
// Creates a step for unit testing. This only builds the test executable
|
// Creates a step for unit testing. This only builds the test executable
|
||||||
// but does not run it.
|
// but does not run it.
|
||||||
const main_tests = b.addTest(.{
|
const main_tests = b.addTest(.{
|
||||||
.root_source_file = b.path("src/smithy.zig"),
|
.root_source_file = .{ .path = "src/smithy.zig" },
|
||||||
.target = target,
|
.target = target,
|
||||||
.optimize = optimize,
|
.optimize = optimize,
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
.{
|
|
||||||
.name = "smithy",
|
|
||||||
.version = "1.0.0",
|
|
||||||
.paths = .{
|
|
||||||
"build.zig",
|
|
||||||
"build.zig.zon",
|
|
||||||
"src",
|
|
||||||
"README.md",
|
|
||||||
"LICENSE.md",
|
|
||||||
},
|
|
||||||
|
|
||||||
.dependencies = .{
|
|
||||||
},
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user