aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjjanzen <jjanzen@jjanzen.ca>2025-01-20 23:14:09 -0600
committerjjanzen <jjanzen@jjanzen.ca>2025-01-20 23:14:09 -0600
commit9f18b702b15b4a26a016170a8a2dfb216ae15810 (patch)
tree2aaa4bc22ef6466856651087cb1a6a32f734269a
parentc4b803d344e341e3f9c9f88b52a93e7c7e29e001 (diff)
rename exe
-rw-r--r--build.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.zig b/build.zig
index 0f62653..d98f56d 100644
--- a/build.zig
+++ b/build.zig
@@ -16,7 +16,7 @@ pub fn build(b: *std.Build) void {
const optimize = b.standardOptimizeOption(.{});
const lib = b.addStaticLibrary(.{
- .name = "simple-lib-use",
+ .name = "urlg",
// In this case the main source file is merely a path, however, in more
// complicated build scripts, this could be a generated file.
.root_source_file = b.path("src/root.zig"),
@@ -30,7 +30,7 @@ pub fn build(b: *std.Build) void {
b.installArtifact(lib);
const exe = b.addExecutable(.{
- .name = "simple-lib-use",
+ .name = "urlg",
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,