don't make library building logic public

pull/4543/head
Jan200101 2025-01-03 22:42:29 +01:00
parent 1dc9157727
commit 0493b79caf
No known key found for this signature in database
GPG Key ID: 5B71B1D78B882E05
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;