json/meson.build

24 lines
553 B
Meson
Raw Normal View History

2018-09-21 02:54:10 +08:00
project('nlohmann_json',
'cpp',
2022-01-03 05:35:35 +08:00
version : '3.10.5',
2018-09-21 02:54:10 +08:00
license : 'MIT',
)
2017-05-08 21:35:00 +08:00
nlohmann_json_dep = declare_dependency(
2018-09-21 02:54:10 +08:00
include_directories: include_directories('single_include')
2018-06-24 22:53:02 +08:00
)
nlohmann_json_multiple_headers = declare_dependency(
2018-09-21 02:54:10 +08:00
include_directories: include_directories('include')
2017-05-08 21:35:00 +08:00
)
2018-11-08 06:56:55 +08:00
if not meson.is_subproject()
2018-11-08 06:56:55 +08:00
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++'
)
endif