mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
22 lines
517 B
Meson
22 lines
517 B
Meson
project('nlohmann_json',
|
|
'cpp',
|
|
version : '3.5.0',
|
|
license : 'MIT',
|
|
)
|
|
|
|
nlohmann_json_dep = declare_dependency(
|
|
include_directories: include_directories('single_include')
|
|
)
|
|
|
|
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++'
|
|
)
|