17 lines
470 B
Zig
17 lines
470 B
Zig
const std = @import("std");
|
|
const CrossTarget = std.zig.CrossTarget;
|
|
|
|
pub fn build(b: *std.build.Builder) void {
|
|
const target = .{.cpu_arch = .wasm32, .os_tag = .freestanding};
|
|
const optimize = b.standardOptimizeOption(.{});
|
|
|
|
const lib = b.addSharedLibrary(.{
|
|
.name = "greet",
|
|
.root_source_file = .{ .path = "greet.zig" },
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
lib.rdynamic = true;
|
|
b.installArtifact(lib);
|
|
}
|