:meson: install headers + pkg-config

pull/1345/head
Millian Poquet 2018-11-07 23:56:55 +01:00
parent d2e6e1bf58
commit ffe08983dd
1 changed files with 8 additions and 0 deletions

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++'
)