From ba6dc53d24e89ec56f1e93906805b9bb29f5690e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Wilmet?= Date: Tue, 3 Jan 2023 16:00:00 +0100 Subject: [PATCH] guide: add references to autoconf-archive, CMake and Meson The guide already contains information for use with Autotools. Nowadays autoconf-archive contains additional macros for pkg-config (don't list them all, because the list could change, just a link to the autoconf-archive project should be enough). Add also information about CMake and Meson. In alphabetical order: - Autotools - CMake - Meson --- pkg-config-guide.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkg-config-guide.html b/pkg-config-guide.html index c666fe5..ffbf169 100644 --- a/pkg-config-guide.html +++ b/pkg-config-guide.html @@ -360,6 +360,15 @@ $ pkg-config --modversion hello pkg-config --cflags and pkg-config --libs. +

autoconf-archive + contains additional macros useful for pkg-config handling.

+ +

With the CMake build system you can use + the FindPkgConfig module.

+ +

With the Meson build system you can + use the Pkgconfig module.

+

Frequently asked questions