From 2f27f317a73928f18315fad62e28f767bb74ff69 Mon Sep 17 00:00:00 2001 From: Maxime <672982+maximegmd@users.noreply.github.com> Date: Sun, 28 Apr 2024 22:42:37 +0200 Subject: [PATCH] Fix linking protobuf-cpp (#3899) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix linking protobuf-cpp * Update xmake.lua --------- Co-authored-by: Jérôme Leclercq --- packages/p/protobuf-cpp/xmake.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/p/protobuf-cpp/xmake.lua b/packages/p/protobuf-cpp/xmake.lua index c170d5388..869934b46 100644 --- a/packages/p/protobuf-cpp/xmake.lua +++ b/packages/p/protobuf-cpp/xmake.lua @@ -31,9 +31,9 @@ package("protobuf-cpp") add_deps("cmake") if is_plat("windows") then - add_links("libprotobuf") + add_links("libprotobuf", "libprotoc", "utf8_range", "utf8_validity") else - add_links("protobuf") + add_links("protobuf", "protoc", "utf8_range", "utf8_validity") end if is_plat("linux") then