Merge pull request #190982 from bobvanderlinden/pr-cglm-pkgconfig-fix

cglm: install correct include/lib dir in pkg-config
This commit is contained in:
Ivv 2022-09-15 01:43:36 +02:00 committed by GitHub
commit 36c3f1f027
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,6 +17,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DCMAKE_INSTALL_INCLUDEDIR=include"
"-DCMAKE_INSTALL_LIBDIR=lib"
];
meta = with lib; {
homepage = "https://github.com/recp/cglm";
description = "Highly Optimized Graphics Math (glm) for C";