gpu-dawn: default to release version of Dawn

This commit is contained in:
praschke 2022-09-04 15:01:39 +00:00 committed by Stephen Gutekanst
parent 55e6959f28
commit 125aeff7f1
3 changed files with 20 additions and 15 deletions

View file

@ -19,6 +19,7 @@ pub fn build(b: *std.build.Builder) void {
const gpu_dawn_options = gpu_dawn.Options{
.from_source = b.option(bool, "dawn-from-source", "Build Dawn from source") orelse false,
.debug = b.option(bool, "dawn-debug", "Use a debug build of Dawn") orelse false,
};
const test_step = b.step("test", "Run library tests");