| author | |
| committer | |
| log | 44e432acbca63c607007862ee26a851c13bf64fd |
| tree | d60c38786b0f1896c1fd7d7ad2468cd3dcd31d6a |
| signature |
7 files changed, 60 insertions(+), 0 deletions(-)
.gitattributes created+3| ... | ... | @@ -0,0 +1,3 @@ |
| 1 | * text=auto | |
| 2 | *.zig text eol=lf | |
| 3 | zigmod.* text eol=lf |
.gitignore created+6| ... | ... | @@ -0,0 +1,6 @@ |
| 1 | .zig-cache | |
| 2 | zig-out | |
| 3 | .zigmod | |
| 4 | deps.zig | |
| 5 | files.zig | |
| 6 | zigmod.lock |
LICENSE created+21| ... | ... | @@ -0,0 +1,21 @@ |
| 1 | MIT License | |
| 2 | ||
| 3 | Copyright (c) 2026 Meghan Denny | |
| 4 | ||
| 5 | Permission is hereby granted, free of charge, to any person obtaining a copy | |
| 6 | of this software and associated documentation files (the "Software"), to deal | |
| 7 | in the Software without restriction, including without limitation the rights | |
| 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| 9 | copies of the Software, and to permit persons to whom the Software is | |
| 10 | furnished to do so, subject to the following conditions: | |
| 11 | ||
| 12 | The above copyright notice and this permission notice shall be included in all | |
| 13 | copies or substantial portions of the Software. | |
| 14 | ||
| 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
| 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
| 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
| 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
| 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
| 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
| 21 | SOFTWARE. |
build.zig created+20| ... | ... | @@ -0,0 +1,20 @@ |
| 1 | const std = @import("std"); | |
| 2 | const deps = @import("./deps.zig"); | |
| 3 | ||
| 4 | pub fn build(b: *std.Build) void { | |
| 5 | const target = b.standardTargetOptions(.{}); | |
| 6 | const mode = b.option(std.builtin.Mode, "mode", "") orelse .Debug; | |
| 7 | ||
| 8 | const tests = b.addTest(.{ | |
| 9 | .root_source_file = b.path("test.zig"), | |
| 10 | .target = target, | |
| 11 | .optimize = mode, | |
| 12 | }); | |
| 13 | deps.addAllTo(tests); | |
| 14 | ||
| 15 | const test_step = b.step("test", "Run all library tests"); | |
| 16 | const tests_run = b.addRunArtifact(tests); | |
| 17 | tests_run.setCwd(b.path(".")); | |
| 18 | tests_run.has_side_effects = true; | |
| 19 | test_step.dependOn(&tests_run.step); | |
| 20 | } |
sys_darwin.zig created+1| ... | ... | @@ -0,0 +1 @@ |
| 1 | const std = @import("std"); |
test.zig created+2| ... | ... | @@ -0,0 +1,2 @@ |
| 1 | const std = @import("std"); | |
| 2 | const sys_darwin = @import("sys-darwin"); |
zigmod.yml created+7| ... | ... | @@ -0,0 +1,7 @@ |
| 1 | id: 73bukkeci2u6865xm3of4o7ie760r29t21pbkwjiavb0a8jl | |
| 2 | name: sys-darwin | |
| 3 | main: sys_darwin.zig | |
| 4 | license: MIT | |
| 5 | description: OS bindings layer for interacting with macOS | |
| 6 | min_zig_version: 0.14.1 | |
| 7 | dependencies: |