Skip to content

Commit 294c1c7

Browse files
committed
update name
1 parent 401e5c7 commit 294c1c7

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,12 @@
1-
# SAW
1+
# 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const Builder = @import("std").build.Builder;
22

33
pub fn build(b: *Builder) void {
44
const mode = b.standardReleaseOptions();
5-
const exe = b.addExecutable("saw", "src/main.zig");
5+
const exe = b.addExecutable("zig-vulkan-triangle", "src/main.zig");
66
exe.setBuildMode(mode);
77
exe.linkSystemLibrary("glfw");
88
exe.linkSystemLibrary("vulkan");

0 commit comments

Comments
 (0)