-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.zig
More file actions
28 lines (24 loc) · 1.03 KB
/
Copy pathbuild.zig
File metadata and controls
28 lines (24 loc) · 1.03 KB
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
//! php-zig 框架构建文件
const std = @import("std");
/// 构建辅助:让下游 build 脚本通过 `@import("phpzig").build_php_ext` 复用扩展构建逻辑
pub const build_php_ext = @import("build_php_ext.zig");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
_ = b.addModule("phpzig", .{
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});
// Zig 单元测试(无需 PHP 运行时;cleanup/arena 用 c_allocator,需链接 libc)
const test_mod = b.addModule("test_helpers", .{
.root_source_file = b.path("src/test_helpers.zig"),
.target = target,
.optimize = optimize,
.link_libc = true,
});
const unit_tests = b.addTest(.{ .root_module = test_mod });
const run_unit_tests = b.addRunArtifact(unit_tests);
const test_step = b.step("test", "运行纯 Zig 单元测试");
test_step.dependOn(&run_unit_tests.step);
}