diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | build.zig | 22 | ||||
-rw-r--r-- | src/main.zig | 6 | ||||
-rw-r--r-- | src/notcurses.zig | 18 |
4 files changed, 47 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..faeaecd --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +zig* diff --git a/build.zig b/build.zig new file mode 100644 index 0000000..56b9024 --- /dev/null +++ b/build.zig @@ -0,0 +1,22 @@ +const std = @import("std"); + +pub fn build(b: *std.build.Builder) void { + const target = b.standardTargetOptions(.{}); + const mode = b.standardReleaseOptions(); + + const exe = b.addExecutable("1815", "src/main.zig"); + exe.setTarget(target); + exe.setBuildMode(mode); + exe.install(); + exe.linkSystemLibrary("notcurses"); + exe.linkSystemLibrary("c"); + + const run_cmd = exe.run(); + 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); +} diff --git a/src/main.zig b/src/main.zig new file mode 100644 index 0000000..a93a524 --- /dev/null +++ b/src/main.zig @@ -0,0 +1,6 @@ +const std = @import("std"); +const notcurses = @import("notcurses.zig"); + +pub fn main() anyerror!void { + var nc = notcurses.init(); +} diff --git a/src/notcurses.zig b/src/notcurses.zig new file mode 100644 index 0000000..4a790b8 --- /dev/null +++ b/src/notcurses.zig @@ -0,0 +1,18 @@ +const std = @import("std"); +const notcurses = @cImport(@cInclude("notcurses/notcurses.h")); + +pub const default_notcurses_options = notcurses.notcurses_options{ + .termtype = null, + //.renderfp = null, + .loglevel = notcurses.ncloglevel_e.NCLOGLEVEL_SILENT, + .margin_t = 0, + .margin_r = 0, + .margin_b = 0, + .margin_l = 0, + .flags = 0, +}; + +pub fn init() ?*notcurses.notcurses { + var options = default_notcurses_options; + return notcurses.notcurses_init(&options, null); +} |