rename mach/gpu to mach/gpu-dawn

See https://github.com/hexops/mach/issues/133#issuecomment-999940767

Helps #109
Helps #133

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2021-12-22 16:37:26 -07:00 committed by Stephen Gutekanst
parent 7ec7fb7af0
commit 7af784bee7
28 changed files with 0 additions and 1 deletions

38
gpu-dawn/build.zig Normal file
View file

@ -0,0 +1,38 @@
const Builder = @import("std").build.Builder;
const dawn = @import("build_dawn.zig");
const glfw = @import("libs/mach-glfw/build.zig");
pub fn build(b: *Builder) void {
const mode = b.standardReleaseOptions();
const target = b.standardTargetOptions(.{});
const lib = b.addStaticLibrary("gpu", "src/main.zig");
lib.setBuildMode(mode);
lib.setTarget(target);
lib.install();
dawn.link(b, lib, .{});
const main_tests = b.addTest("src/main.zig");
main_tests.setBuildMode(mode);
const test_step = b.step("test", "Run library tests");
test_step.dependOn(&main_tests.step);
const dawn_example = b.addExecutable("dawn-example", "src/dawn/hello_triangle.zig");
dawn_example.setBuildMode(mode);
dawn_example.setTarget(target);
dawn.link(b, dawn_example, .{});
glfw.link(b, dawn_example, .{ .system_sdk = .{ .set_sysroot = false } });
dawn_example.addPackagePath("glfw", "libs/mach-glfw/src/main.zig");
dawn_example.addIncludeDir("libs/dawn/out/Debug/gen/src/include");
dawn_example.addIncludeDir("libs/dawn/out/Debug/gen/src");
dawn_example.addIncludeDir("libs/dawn/src/include");
dawn_example.addIncludeDir("src/dawn");
dawn_example.install();
const dawn_example_run_cmd = dawn_example.run();
dawn_example_run_cmd.step.dependOn(b.getInstallStep());
const dawn_example_run_step = b.step("run-dawn-example", "Run the dawn example");
dawn_example_run_step.dependOn(&dawn_example_run_cmd.step);
}