From c7bba36ee3461351fc28a75520b1958a8278effe Mon Sep 17 00:00:00 2001 From: Bas Couwenberg Date: Wed, 13 Mar 2024 15:10:57 +0100 Subject: [PATCH] Fix pkg-config name for gpsd. libgps-dev provides libgps.pc. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1aa5955b..b0bb7b16 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -498,7 +498,7 @@ if (GEOIMAGE) endif() if (GPSD) - list(APPEND PKGCONFIG_REQUIRED_LIBS gpsd) + list(APPEND PKGCONFIG_REQUIRED_LIBS libgps) add_definitions(-DUSE_GPS=1) endif()