use updated build system for model path
This commit is contained in:
parent
86483ec84d
commit
30d46261b7
1 changed files with 1 additions and 12 deletions
13
build.zig
13
build.zig
|
@ -114,21 +114,10 @@ pub fn build(b: *Builder) !void {
|
||||||
cg_exe.root_module.addImport("smithy", smithy_dep.module("smithy"));
|
cg_exe.root_module.addImport("smithy", smithy_dep.module("smithy"));
|
||||||
var cg_cmd = b.addRunArtifact(cg_exe);
|
var cg_cmd = b.addRunArtifact(cg_exe);
|
||||||
cg_cmd.addArg("--models");
|
cg_cmd.addArg("--models");
|
||||||
const hash = hash_blk: {
|
|
||||||
for (b.available_deps) |dep| {
|
|
||||||
const dep_name = dep.@"0";
|
|
||||||
const dep_hash = dep.@"1";
|
|
||||||
if (std.mem.eql(u8, dep_name, "models"))
|
|
||||||
break :hash_blk dep_hash;
|
|
||||||
}
|
|
||||||
return error.DependencyNamedModelsNotFoundInBuildZigZon;
|
|
||||||
};
|
|
||||||
cg_cmd.addArg(try std.fs.path.join(
|
cg_cmd.addArg(try std.fs.path.join(
|
||||||
b.allocator,
|
b.allocator,
|
||||||
&[_][]const u8{
|
&[_][]const u8{
|
||||||
b.graph.global_cache_root.path.?,
|
try b.dependency("models", .{}).path("").getPath3(b, null).toString(b.allocator),
|
||||||
"p",
|
|
||||||
hash,
|
|
||||||
models_subdir,
|
models_subdir,
|
||||||
},
|
},
|
||||||
));
|
));
|
||||||
|
|
Loading…
Add table
Reference in a new issue