Merge pull request #1345 from mpoquet/feature/meson-install-pkgconfig

Allow installation via Meson
This commit is contained in:
Niels Lohmann 2018-11-08 18:39:26 +01:00 committed by GitHub
commit f86090aafc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,3 +11,11 @@ nlohmann_json_dep = declare_dependency(
nlohmann_json_multiple_headers = declare_dependency(
include_directories: include_directories('include')
)
install_headers('single_include/nlohmann/json.hpp', subdir: 'nlohmann')
pkgc = import('pkgconfig')
pkgc.generate(name: 'nlohmann_json',
version: meson.project_version(),
description: 'JSON for Modern C++'
)