We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 401e5c7 commit 294c1c7Copy full SHA for 294c1c7
README.md
@@ -1 +1,12 @@
1
-# SAW
+# zig-vulkan-triangle
2
+
3
+Status: not done yet.
4
5
+Live coding every Thursday at 17:00 EST.
6
+https://www.twitch.tv/andrewrok
7
8
+## Building
9
10
+```
11
+zig build run
12
build.zig
@@ -2,7 +2,7 @@ const Builder = @import("std").build.Builder;
pub fn build(b: *Builder) void {
const mode = b.standardReleaseOptions();
- const exe = b.addExecutable("saw", "src/main.zig");
+ const exe = b.addExecutable("zig-vulkan-triangle", "src/main.zig");
exe.setBuildMode(mode);
exe.linkSystemLibrary("glfw");
exe.linkSystemLibrary("vulkan");
0 commit comments