mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-03 14:09:31 +03:00

pkg-config allows using the library in build systems that are not cmake, by exporting the same information from the cmake -config files in a buildsystem-neutral format. Fixes #16
11 lines
345 B
PkgConfig
11 lines
345 B
PkgConfig
prefix=@CMAKE_INSTALL_PREFIX@
|
|
libdir=@libdir_for_pc_file@
|
|
includedir=@includedir_for_pc_file@
|
|
|
|
Name: @PROJECT_NAME@
|
|
Description: a compact general purpose allocator with excellent performance
|
|
Version: @PROJECT_VERSION@
|
|
URL: https://github.com/microsoft/mimalloc/
|
|
Libs: -L${libdir} -lmimalloc
|
|
Libs.private: @pc_libraries@
|
|
Cflags: -I${includedir}
|