Fix build template to match build runner changes

Api changed in 7b57454cc1.
master
Marc Tiehuis 2018-01-20 13:32:49 +13:00
parent 890bf001db
commit a7e10565fc
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
const Builder = @import("std").build.Builder;
pub fn build(b: &Builder) {
pub fn build(b: &Builder) -> %void {
const mode = b.standardReleaseOptions();
const exe = b.addExecutable("YOUR_NAME_HERE", "src/main.zig");
exe.setBuildMode(mode);