don't make library building logic public

This commit is contained in:
Jan200101
2025-01-03 22:42:29 +01:00
parent 1dc9157727
commit 0493b79caf
3 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ pub fn build(b: *std.Build) !void {
}
}
pub fn buildLib(b: *std.Build, module: *std.Build.Module, options: anytype) !*std.Build.Step.Compile {
fn buildLib(b: *std.Build, module: *std.Build.Module, options: anytype) !*std.Build.Step.Compile {
const target = options.target;
const optimize = options.optimize;

View File

@ -71,7 +71,7 @@ pub fn build(b: *std.Build) !void {
}
}
pub fn buildLib(b: *std.Build, module: *std.Build.Module, options: anytype) !*std.Build.Step.Compile {
fn buildLib(b: *std.Build, module: *std.Build.Module, options: anytype) !*std.Build.Step.Compile {
const target = options.target;
const optimize = options.optimize;

View File

@ -53,7 +53,7 @@ pub fn build(b: *std.Build) !void {
}
}
pub fn buildLib(b: *std.Build, module: *std.Build.Module, options: anytype) !*std.Build.Step.Compile {
fn buildLib(b: *std.Build, module: *std.Build.Module, options: anytype) !*std.Build.Step.Compile {
const target = options.target;
const optimize = options.optimize;