forked from smolck/zignvim
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.zig
115 lines (102 loc) · 3.99 KB
/
build.zig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
const std = @import("std");
pub fn build(b: *std.Build) !void {
const t = b.standardTargetOptions(.{});
const opt = b.standardOptimizeOption(.{});
const llvm = b.option(bool, "llvm", "use llvm") orelse true;
const use_vaxis = b.option(bool, "vaxis", "use vaxis") orelse false;
const use_gtk = b.option(bool, "gtk", "use gtk") orelse false;
if (!use_vaxis and !use_gtk) {
std.debug.print("use at least one of -Dvaxis or -Dgtk!", .{});
return error.ConfigError;
}
const io_test = b.step("io_test", "fooka amnitel");
const io_test_exe = b.addExecutable(.{
.name = "io_test",
.root_source_file = b.path("src/io_test.zig"),
.optimize = opt,
.target = t,
});
b.installArtifact(io_test_exe);
const run_cmd = b.addRunArtifact(io_test_exe);
io_test.dependOn(&run_cmd.step);
if (use_vaxis) {
const vaxis = b.lazyDependency("vaxis", .{ .optimize = opt, .target = t }) orelse return;
const xev = b.lazyDependency("xev", .{ .optimize = opt, .target = t }) orelse return;
const tui_step = b.step("tui", "terminal representation");
const exe_tui = b.addExecutable(.{
.name = "zignvim_tui",
.root_source_file = b.path("src/tui_main.zig"),
.optimize = opt,
.target = t,
});
exe_tui.root_module.addImport("vaxis", vaxis.module("vaxis"));
exe_tui.root_module.addImport("xev", xev.module("xev"));
exe_tui.use_llvm = llvm;
b.installArtifact(exe_tui);
const tui_run_cmd = b.addRunArtifact(exe_tui);
if (b.args) |args| {
tui_run_cmd.addArgs(args);
}
tui_step.dependOn(&tui_run_cmd.step);
}
if (use_gtk) {
const gtk_test = b.step("gtk_test", "visual representation");
const exe_gtk = b.addExecutable(.{
.name = "zignvim_gtk",
.root_source_file = b.path("src/gtk_main.zig"),
.optimize = opt,
.target = t,
});
exe_gtk.use_llvm = llvm;
exe_gtk.linkLibC();
exe_gtk.linkSystemLibrary("gtk4");
exe_gtk.linkSystemLibrary("ibus-1.0");
b.installArtifact(exe_gtk);
const gtk_run_cmd = b.addRunArtifact(exe_gtk);
if (b.args) |args| {
gtk_run_cmd.addArgs(args);
}
gtk_test.dependOn(>k_run_cmd.step);
const pango_test = b.step("pango_test", "visual representation");
const exe_pango = b.addExecutable(.{
.name = "pango_test",
.root_source_file = b.path("src/pango_test.zig"),
.optimize = opt,
.target = t,
});
exe_pango.use_llvm = llvm;
exe_pango.linkLibC();
exe_pango.linkSystemLibrary("gtk4");
exe_pango.linkSystemLibrary("ibus-1.0"); // TODO: OPTIONAL!
b.installArtifact(exe_pango);
const pango = b.addRunArtifact(exe_pango);
if (b.args) |args| {
pango.addArgs(args);
}
pango_test.dependOn(&pango.step);
}
if (false) {
const mode = b.standardReleaseOptions();
const lib = b.addStaticLibrary("zignvim", "src/main.zig");
lib.setBuildMode(mode);
//lib.install();
const exe_uv = b.addExecutable("iotest_uv", "src/io_uv.zig");
exe_uv.linkSystemLibrary("c");
exe_uv.linkSystemLibrary("uv");
exe_uv.setBuildMode(mode);
// exe_uv.install();
const exe = b.addExecutable("iotest", "src/io_test.zig");
exe.setBuildMode(mode);
exe.install();
var main_tests = b.addTest("src/main.zig");
main_tests.setBuildMode(mode);
var msgpack_tests = b.addTest("src/mpack.zig");
msgpack_tests.setBuildMode(mode);
const test_step = b.step("test", "Run library tests");
// test_step.dependOn(&main_tests.step);
test_step.dependOn(&msgpack_tests.step);
const iotest_step = b.step("iotest", "Basic ");
const run = exe.run();
iotest_step.dependOn(&run.step);
}
}