change from defineCMacro to addCMacro

This commit is contained in:
𒀳 Scribe of the Ziggurat𒅆𒂍𒉪 2024-12-24 16:58:47 +10:00
parent 8206bda64a
commit f460f5f517

View File

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