diff options
| author | Marc Tiehuis <marctiehuis@gmail.com> | 2018-01-20 13:32:49 +1300 |
|---|---|---|
| committer | Marc Tiehuis <marctiehuis@gmail.com> | 2018-01-20 13:32:49 +1300 |
| commit | a7e10565fce359d00bee409cbb5226526c1bbb5e (patch) | |
| tree | a443422dc30c2b5738a893bbaf1a3fd440df8d78 /std | |
| parent | 890bf001dbd4120ca8660d0e63594aa27d2a683f (diff) | |
| download | zig-a7e10565fce359d00bee409cbb5226526c1bbb5e.tar.gz zig-a7e10565fce359d00bee409cbb5226526c1bbb5e.zip | |
Fix build template to match build runner changes
Api changed in 7b57454cc11371b71097967656e19f0a1736d733.
Diffstat (limited to 'std')
| -rw-r--r-- | std/special/build_file_template.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/special/build_file_template.zig b/std/special/build_file_template.zig index a3dfbc0c2c..9f6da497f4 100644 --- a/std/special/build_file_template.zig +++ b/std/special/build_file_template.zig @@ -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); |
