build: replace depracted functions

This commit is contained in:
Ali Chraghi 2022-08-27 20:33:30 +04:30 committed by Stephen Gutekanst
parent cb760cbbf6
commit a0973af030
5 changed files with 24 additions and 24 deletions

View file

@ -29,7 +29,7 @@ pub fn Sdk(deps: anytype) type {
deps.glfw.link(b, step, options.glfw_options);
deps.gpu_dawn.link(b, step, options.gpu_dawn_options);
step.addCSourceFile((comptime thisDir()) ++ "/src/mach_dawn.cpp", &.{"-std=c++17"});
step.addIncludeDir((comptime thisDir()) ++ "/src");
step.addIncludePath((comptime thisDir()) ++ "/src");
}
}