From 85c9544fa4c9625b9656d9bd765e54f8e639287f Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Wed, 8 Sep 2021 19:07:09 +0530 Subject: [PATCH] pkgconfig: Add missing entries This adds prefix, exec_prefix and libdir fields --- CMake/catch2.pc.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMake/catch2.pc.in b/CMake/catch2.pc.in index 3ac9fbd1..2ad128ed 100644 --- a/CMake/catch2.pc.in +++ b/CMake/catch2.pc.in @@ -1,4 +1,7 @@ +prefix=@CMAKE_INSTALL_PREFIX@ +exec_prefix=${prefix} includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ +libdir=@CMAKE_INSTALL_FULL_LIBDIR@ Name: Catch2 Description: A modern, C++-native, header-only, test framework for C++11