initial commit
This commit is contained in:
commit
ba9b1064f2
3 changed files with 21 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
zig-cache/
|
15
build.zig
Normal file
15
build.zig
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
const Builder = @import("std").build.Builder;
|
||||||
|
|
||||||
|
pub fn build(b: *Builder) void {
|
||||||
|
const mode = b.standardReleaseOptions();
|
||||||
|
const exe = b.addExecutable("spoodle", "src/main.zig");
|
||||||
|
exe.setBuildMode(mode);
|
||||||
|
|
||||||
|
const run_cmd = exe.run();
|
||||||
|
|
||||||
|
const run_step = b.step("run", "Run the app");
|
||||||
|
run_step.dependOn(&run_cmd.step);
|
||||||
|
|
||||||
|
b.default_step.dependOn(&exe.step);
|
||||||
|
b.installArtifact(exe);
|
||||||
|
}
|
5
src/main.zig
Normal file
5
src/main.zig
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
const std = @import("std");
|
||||||
|
|
||||||
|
pub fn main() anyerror!void {
|
||||||
|
std.debug.warn("All your base are belong to us.\n");
|
||||||
|
}
|
Loading…
Reference in a new issue