From 257d0337f08770699c3f003cffcf4dfbd7c9d240 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Fri, 1 Sep 2023 13:54:16 +0200 Subject: [PATCH] build: lexbor is now under vendor/ --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index 62c4e783..56649a37 100644 --- a/build.zig +++ b/build.zig @@ -76,7 +76,7 @@ fn common( fn linkLexbor(step: *std.build.LibExeObjStep) void { // cmake . -DLEXBOR_BUILD_SHARED=OFF - const lib_path = "../lexbor/liblexbor_static.a"; + const lib_path = "vendor/lexbor/liblexbor_static.a"; step.addObjectFile(lib_path); - step.addIncludePath("../lexbor/source"); + step.addIncludePath("vendor/lexbor/source"); }