static: set default_library flag for meson in makeStaticLibrary

Adds support for building static libraries with meson.
This commit is contained in:
Matthew Bauer 2019-05-08 21:52:59 -04:00
parent 7c7ccd51f4
commit fea2422398

View file

@ -60,6 +60,7 @@ rec {
"--enable-static"
"--disable-shared"
];
mesonFlags = (args.mesonFlags or []) ++ [ "-Ddefault_library=static" ];
});
};