92 lines
2.4 KiB
Zig
92 lines
2.4 KiB
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const target = b.standardTargetOptions(.{});
|
|
const optimize = b.standardOptimizeOption(.{});
|
|
|
|
const mod = b.addModule("lua", .{
|
|
.target = target,
|
|
.optimize = optimize,
|
|
.root_source_file = b.path("src/lua.zig"),
|
|
.link_libc = true,
|
|
});
|
|
|
|
const luac = b.addSharedLibrary(.{
|
|
.name = "luac",
|
|
.target = target,
|
|
.optimize = optimize,
|
|
.link_libc = true,
|
|
});
|
|
b.installArtifact(luac);
|
|
|
|
luac.addCSourceFiles(.{
|
|
.root = b.path("lua/src/"),
|
|
.files = &.{
|
|
"lapi.c",
|
|
"lmathlib.c",
|
|
"lauxlib.c",
|
|
"lbaselib.c",
|
|
"lcode.c",
|
|
"lcorolib.c",
|
|
"lctype.c",
|
|
"ldblib.c",
|
|
"ldebug.c",
|
|
"ldo.c",
|
|
"ldump.c",
|
|
"lfunc.c",
|
|
"lgc.c",
|
|
"linit.c",
|
|
"liolib.c",
|
|
"llex.c",
|
|
"lmem.c",
|
|
"loadlib.c",
|
|
"lobject.c",
|
|
"lopcodes.c",
|
|
"loslib.c",
|
|
"lparser.c",
|
|
"lstate.c",
|
|
"lstring.c",
|
|
"lstrlib.c",
|
|
"ltable.c",
|
|
"ltablib.c",
|
|
"ltm.c",
|
|
"lundump.c",
|
|
"lutf8lib.c",
|
|
"lvm.c",
|
|
"lzio.c",
|
|
},
|
|
});
|
|
|
|
luac.addCSourceFile(.{ .file = b.path("src/limited_io.c") });
|
|
|
|
if (target.result.os.tag == .windows) {
|
|
luac.addCSourceFile(.{ .file = b.path("src/minidumpsetup.cpp") });
|
|
if (target.result.abi != .msvc)
|
|
luac.linkLibCpp();
|
|
luac.linkLibC();
|
|
} else {
|
|
luac.addCSourceFile(.{ .file = b.path("src/minidumpstub.cpp") });
|
|
}
|
|
|
|
luac.addIncludePath(b.path("lua/src/"));
|
|
luac.addIncludePath(b.path("src/"));
|
|
|
|
mod.addIncludePath(b.path("lua/src/"));
|
|
mod.addIncludePath(b.path("src/"));
|
|
|
|
mod.linkLibrary(luac);
|
|
|
|
const run_step = b.step("test", "");
|
|
const tests = b.addExecutable(.{
|
|
.name = "run-lua",
|
|
.target = target,
|
|
.optimize = optimize,
|
|
.root_source_file = b.path("test/test-lua.zig"),
|
|
.link_libc = true,
|
|
});
|
|
|
|
tests.root_module.addImport("lua", mod);
|
|
const runArtifact = b.addRunArtifact(tests);
|
|
run_step.dependOn(&runArtifact.step);
|
|
}
|