aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2024-03-04 15:55:07 +0000
committerMartin Ashby <martin@ashbysoft.com>2024-03-04 15:55:07 +0000
commit5ed483825a50cadb1d3d2dd55f9e4ebc52716660 (patch)
treebdd78e0854f83dd021e2c954ee09c9cc9d3fec48 /build.zig
parentbf0e3b2eae00e7cd86723299e28ccdaeed35b8ed (diff)
downloadmfashby.net-5ed483825a50cadb1d3d2dd55f9e4ebc52716660.tar.gz
mfashby.net-5ed483825a50cadb1d3d2dd55f9e4ebc52716660.tar.bz2
mfashby.net-5ed483825a50cadb1d3d2dd55f9e4ebc52716660.tar.xz
mfashby.net-5ed483825a50cadb1d3d2dd55f9e4ebc52716660.zip
Move web server to it's own subdir
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig36
1 files changed, 0 insertions, 36 deletions
diff --git a/build.zig b/build.zig
deleted file mode 100644
index 1f481c8..0000000
--- a/build.zig
+++ /dev/null
@@ -1,36 +0,0 @@
-const std = @import("std");
-
-pub fn build(b: *std.Build) void {
- const target = b.standardTargetOptions(.{});
- const optimize = b.standardOptimizeOption(.{});
-
- const exe = b.addExecutable(.{
- .name = "server",
- .root_source_file = .{ .path = "src/main.zig" },
- .target = target,
- .optimize = optimize,
- });
-
- b.installArtifact(exe);
- const run_cmd = b.addRunArtifact(exe);
-
- run_cmd.step.dependOn(b.getInstallStep());
-
- if (b.args) |args| {
- run_cmd.addArgs(args);
- }
-
- const run_step = b.step("run", "Run the app");
- run_step.dependOn(&run_cmd.step);
-
- const exe_unit_tests = b.addTest(.{
- .root_source_file = .{ .path = "src/main.zig" },
- .target = target,
- .optimize = optimize,
- });
-
- const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests);
-
- const test_step = b.step("test", "Run unit tests");
- test_step.dependOn(&run_exe_unit_tests.step);
-}