From 1b049c1265977ba13f20797848859a46ade1b75b Mon Sep 17 00:00:00 2001 From: Stefan Hajnoczi Date: Sat, 25 May 2019 09:58:29 +0100 Subject: pkgconfig: install a liburing.pc file pkg-config (https://pkgconfig.freedesktop.org/) makes it easier to build applications that have library dependencies. Libraries ship .pc files containing the compiler and linker flags needed to build successfully. This saves applications from hardcoding these details into their build scripts, especially when these details can change between operating systems or distributions. To build a liburing application: gcc $(pkg-config --cflags --libs liburing) -o myapp myapp.c Signed-off-by: Stefan Hajnoczi Signed-off-by: Jens Axboe --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index e292825..08ba0e0 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,5 @@ config-host.h config-host.mak config.log + +liburing.pc -- cgit