High-level wrapper around Flecs, a powerful ECS (Entity Component System) library, written in Zig language
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.4 KiB

1 year ago
const std = @import("std");
pub fn build(b: *std.Build) !void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const module = b.createModule(.{
.source_file = .{ .path = "src/main.zig" },
});
try b.modules.put(b.dupe("flecs-zig-ble"), module);
const lib = b.addStaticLibrary(.{
.name = "flecs-zig-ble",
.root_source_file = .{ .path = "src/main.zig" },
.target = target,
.optimize = optimize,
});
setupFlecs(lib);
lib.installHeader("libs/flecs/flecs.h", "flecs.h");
1 year ago
b.installArtifact(lib);
const main_tests = b.addTest(.{
.root_source_file = .{ .path = "test/main.zig" },
// Has to be specified so tests can run autodoc tests from src/.
.main_pkg_path = .{ .path = "." },
1 year ago
.target = target,
.optimize = optimize,
});
setupFlecs(main_tests);
1 year ago
const run_main_tests = b.addRunArtifact(main_tests);
const test_step = b.step("test", "Run library tests");
test_step.dependOn(&run_main_tests.step);
}
fn setupFlecs(step: *std.Build.CompileStep) void {
step.linkLibC();
step.addIncludePath(.{ .path = "libs/flecs" });
step.addCSourceFile(.{
.file = .{ .path = "libs/flecs/flecs.c" },
.flags = &.{"-fno-sanitize=undefined"},
});
if (step.target.isWindows())
step.linkSystemLibraryName("ws2_32");
1 year ago
}