From 60affc5c045525ab54234d21f8cceecb77f432b4 Mon Sep 17 00:00:00 2001 From: div72 Date: Fri, 7 Jun 2024 00:53:49 +0300 Subject: [PATCH] build: explicitly include FindPkgConfig for CMake Should fix the `Unknown CMake command "pkg_check_modules".` error on the CI. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 33a19394c4..1d5537c267 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,6 +71,7 @@ include(CheckSymbolExists) include(CheckSSE) include(CheckStrerrorR) +include(FindPkgConfig) include(HunterGate) include(VersionFromGit)