summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorNic Gaffney <gaffney_nic@protonmail.com>2024-06-28 00:54:59 -0500
committerNic Gaffney <gaffney_nic@protonmail.com>2024-06-28 00:54:59 -0500
commitc955f2fb933865a50e791e2be91adbcb34bbadc9 (patch)
treeefd6def99007c8936721931d02e42c77357f3fd7 /build.zig
parent36e990c5bdfffb145b7255b8159d3ac879344996 (diff)
downloadcalico-c955f2fb933865a50e791e2be91adbcb34bbadc9.tar.gz
feat(tokenizer): Move tokenizer into a struct
Moved the tokenizer into a struct and created a string iterator to make tokenizing easier
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.zig b/build.zig
index f04131f..052d68b 100644
--- a/build.zig
+++ b/build.zig
@@ -6,7 +6,7 @@ pub fn build(b: *std.Build) void {
const optimize = b.standardOptimizeOption(.{});
const exe = b.addExecutable(.{
- .name = "compiler",
+ .name = "calico",
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
@@ -22,7 +22,7 @@ pub fn build(b: *std.Build) void {
run_cmd.addArgs(args);
}
- const run_step = b.step("run", "Run the app");
+ const run_step = b.step("run", "Run the compiler");
run_step.dependOn(&run_cmd.step);
const exe_unit_tests = b.addTest(.{