zig: change from defineCMacro to addCMacro

Closes #465
This commit is contained in:
𒀳 Scribe of the Ziggurat𒅆𒂍𒉪 2024-12-24 16:58:47 +10:00 committed by John McNamara
parent d0644c5f1e
commit 713d9fd724

View File

@ -34,7 +34,7 @@ pub fn build(b: *std.Build) void {
else => lib.root_module.strip = true,
}
if (tests)
lib.defineCMacro("TESTING", null);
lib.root_module.addCMacro("TESTING", "");
lib.addCSourceFiles(.{
.files = &.{
"src/vml.c",
@ -107,7 +107,7 @@ pub fn build(b: *std.Build) void {
.flags = cflags,
})
else
lib.defineCMacro("USE_STANDARD_TMPFILE", null);
lib.root_module.addCMacro("USE_STANDARD_TMPFILE", "");
lib.addIncludePath(b.path("include"));
lib.addIncludePath(b.path("third_party"));
@ -283,7 +283,7 @@ fn buildTest(b: *std.Build, info: BuildInfo) void {
.optimize = info.lib.root_module.optimize.?,
.target = info.lib.root_module.resolved_target.?,
});
exe.defineCMacro("TESTING", null);
exe.root_module.addCMacro("TESTING", "");
exe.addCSourceFile(.{
.file = b.path(info.path),
.flags = cflags,