File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,12 +43,12 @@ pub fn link(compile_step: *std.Build.Step.Compile, deps: struct {
43
43
44
44
lib .addIncludePath (zmesh .path ("libs/cgltf" ));
45
45
lib .addCSourceFile (.{
46
- .file = b .path ("libs/zmesh/ libs/cgltf/cgltf.c" ),
46
+ .file = zmesh .path ("libs/cgltf/cgltf.c" ),
47
47
.flags = &.{"-std=c99" },
48
48
});
49
49
50
50
lib .addIncludePath (b .path ("samples/common/libs" ));
51
- lib .addIncludePath (b . path ( zmesh .path ("libs/cgltf" ) ));
51
+ lib .addIncludePath (zmesh .path ("libs/cgltf" ));
52
52
53
53
const module = b .createModule (.{
54
54
.root_source_file = b .path ("samples/common/src/common.zig" ),
@@ -58,7 +58,7 @@ pub fn link(compile_step: *std.Build.Step.Compile, deps: struct {
58
58
},
59
59
});
60
60
module .addIncludePath (b .path ("samples/common/libs/imgui" ));
61
- module .addIncludePath (b . path ( zmesh .path ("libs/cgltf" ) ));
61
+ module .addIncludePath (zmesh .path ("libs/cgltf" ));
62
62
63
63
compile_step .root_module .addImport ("common" , module );
64
64
You can’t perform that action at this time.
0 commit comments