mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
change from defineCMacro to addCMacro
This commit is contained in:
parent
8206bda64a
commit
f460f5f517
@ -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,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user