Switch back to specifying build type on CLI

This commit is contained in:
Quinten Kock 2020-12-21 14:38:55 +01:00
parent 14affd5c79
commit f6a6cb63b1
1 changed files with 2 additions and 2 deletions

View File

@ -200,8 +200,8 @@ pub fn build(b: *Builder) !void {
// Standard release options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
// const mode = b.standardReleaseOptions();
const mode = .ReleaseFast;
const mode = b.standardReleaseOptions();
// const mode = .ReleaseSmall;
const files = try findFiles(ktarget);