summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Barrett <tom@tombarrett.xyz>2021-12-12 17:00:10 +0100
committerTom Barrett <tom@tombarrett.xyz>2021-12-12 17:00:10 +0100
commit83c27ccc818df03c906ddc90357b99fddbfafbc0 (patch)
treefa9171f10331dbe46a1d671494782b1ba3c375a0
start
-rw-r--r--.gitignore1
-rw-r--r--build.zig22
-rw-r--r--src/main.zig6
-rw-r--r--src/notcurses.zig18
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);
+}