zig-ldtk/build.zig

28 lines
858 B
Zig
Raw Permalink Normal View History

const std = @import("std");
pub fn build(b: *std.build.Builder) void {
2024-01-02 21:11:00 -07:00
const target = b.standardTargetOptions(.{});
// Standard release options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
2024-01-02 21:11:00 -07:00
const optimize = b.standardOptimizeOption(.{});
2024-01-02 21:11:00 -07:00
const lib = b.addStaticLibrary(.{
.name = "zig-ldtk",
.root_source_file = .{ .path = "src/main.zig" },
.target = target,
.optimize = optimize,
});
b.installArtifact(lib);
2024-01-02 21:11:00 -07:00
const main_tests = b.addTest(.{
.root_source_file = .{ .path = "src/main.zig" },
.optimize = optimize,
.target = target,
});
const main_tests_run = b.addRunArtifact(main_tests);
const test_step = b.step("test", "Run library tests");
2024-01-02 21:11:00 -07:00
test_step.dependOn(&main_tests_run.step);
}