From 370126db38dd67182173234d1699a64f8ab06ec5 Mon Sep 17 00:00:00 2001 From: swirl Date: Fri, 19 Jan 2024 20:34:36 -0800 Subject: [PATCH] [build] cmake: add wpinet dependency to cscore-config.cmake (#6242) Attempting to build with cscore results in the project being unable to find wpinet unless explicitly found with `find_package` earlier. --- cscore/cscore-config.cmake.in | 1 + 1 file changed, 1 insertion(+) diff --git a/cscore/cscore-config.cmake.in b/cscore/cscore-config.cmake.in index da5a71f696..b9f2861511 100644 --- a/cscore/cscore-config.cmake.in +++ b/cscore/cscore-config.cmake.in @@ -1,6 +1,7 @@ include(CMakeFindDependencyMacro) @FILENAME_DEP_REPLACE@ @WPIUTIL_DEP_REPLACE@ +@WPINET_DEP_REPLACE@ find_dependency(OpenCV) @FILENAME_DEP_REPLACE@