From a0e32a0df9ec8232bee8230f3ae55fcb94e3aecd Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Thu, 20 Jun 2024 20:54:38 -0700 Subject: [PATCH] Remove find_dependency(Protobuf) line from wpiutil --- cmake/allwpilib_patch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/allwpilib_patch.py b/cmake/allwpilib_patch.py index cdad7a29..2f340c9a 100755 --- a/cmake/allwpilib_patch.py +++ b/cmake/allwpilib_patch.py @@ -74,6 +74,7 @@ def fix(lines): lines = [ line for line in lines + if not re.search(r"find_dependency(Protobuf)", line) if not re.search(r"find_package(Protobuf REQUIRED)", line) and "$" not in line and not re.search(r"#include \"\w+\.pb\.h\"", line)