Look at possible include/lib paths for linuxbrew

Fixes #156
This commit is contained in:
Frank Denis 2025-01-29 23:05:34 +01:00
parent 4dd6fbf632
commit d5a2f02bc0

View file

@ -60,11 +60,11 @@ pub fn build(b: *std.Build) !void {
override_pkgconfig = true;
}
for ([_][]const u8{ "/opt/homebrew/include", "/usr/local/include" }) |path| {
for ([_][]const u8{ "/opt/homebrew/include", "/home/linuxbrew/.linuxbrew/include", "/usr/local/include" }) |path| {
std.fs.accessAbsolute(path, .{}) catch continue;
minisign.addSystemIncludePath(.{ .cwd_relative = path });
}
for ([_][]const u8{ "/opt/homebrew/lib", "/usr/local/lib" }) |path| {
for ([_][]const u8{ "/opt/homebrew/lib", "/home/linuxbrew/.linuxbrew/lib", "/usr/local/lib" }) |path| {
std.fs.accessAbsolute(path, .{}) catch continue;
minisign.addLibraryPath(.{ .cwd_relative = path });
}