]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/opentelemetry-cpp/third_party/nlohmann-json/doc/mkdocs/docs/integration/pkg-config.md
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / third_party / nlohmann-json / doc / mkdocs / docs / integration / pkg-config.md
CommitLineData
1e59de90
TL
1# Pkg-config
2
3If you are using bare Makefiles, you can use `pkg-config` to generate the include flags that point to where the library is installed:
4
5```sh
6pkg-config nlohmann_json --cflags
7```
8
9Users of the [Meson build system](package_managers.md#meson) will also be able to use a system-wide library, which will be found by `pkg-config`:
10
11```meson
12json = dependency('nlohmann_json', required: true)
13```