authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-09-20 15:42:26 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-09-20 15:42:26 -07:00
log59e6040d4fdcfbd3dc0b5b319945cf29a517a03d
treeea2b0d9c9777a58b2780e1b5b93bb335729b21b6

init


7 files changed, 65 insertions(+), 0 deletions(-)

.gitattributes created+3
...@@ -0,0 +1,3 @@
1* text=auto
2*.zig text eol=lf
3zigmod.* text eol=lf
.gitignore created+4
...@@ -0,0 +1,4 @@
1zig-*
2.zigmod
3deps.zig
4files.zig
LICENSE created+21
...@@ -0,0 +1,21 @@
1MIT License
2
3Copyright (c) 2023 Meghan Denny
4
5Permission is hereby granted, free of charge, to any person obtaining a copy
6of this software and associated documentation files (the "Software"), to deal
7in the Software without restriction, including without limitation the rights
8to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9copies of the Software, and to permit persons to whom the Software is
10furnished to do so, subject to the following conditions:
11
12The above copyright notice and this permission notice shall be included in all
13copies or substantial portions of the Software.
14
15THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21SOFTWARE.
build.zig created+25
...@@ -0,0 +1,25 @@
1const std = @import("std");
2
3pub fn build(b: *std.Build) void {
4 const target = b.standardTargetOptions(.{});
5 const mode = b.option(std.builtin.Mode, "mode", "") orelse .Debug;
6
7 const exe = b.addExecutable(.{
8 .name = "test",
9 .root_source_file = .{ .path = "src/main.zig" },
10 .target = target,
11 .optimize = mode,
12 });
13 b.installArtifact(exe);
14
15 const run_cmd = b.addRunArtifact(exe);
16
17 run_cmd.step.dependOn(b.getInstallStep());
18
19 if (b.args) |args| {
20 run_cmd.addArgs(args);
21 }
22
23 const run_step = b.step("run", "Run the app");
24 run_step.dependOn(&run_cmd.step);
25}
src/main.zig created+5
...@@ -0,0 +1,5 @@
1const std = @import("std");
2
3pub fn main() !void {
4 std.debug.print("All your {s} are belong to us.\n", .{"codebase"});
5}
src/mod.zig created+1
...@@ -0,0 +1 @@
1const std = @import("std");
zigmod.yml created+6
...@@ -0,0 +1,6 @@
1id: ede2wygpe1iycfhdm8wzmbce7zxye49zo8xjzt09g132home
2name: tracer
3main: src/mod.zig
4license: MIT
5description: Generic tracing library for Zig, supports multiple backends.
6dependencies: