YuZu-EA/externals/vcpkg/buildtrees/nlohmann-json/src/v3.10.5-ba9f97ed19.clean/meson.build
guilhemjeh dde3987d5c Backup
2024-03-04 21:15:51 +01:00

24 lines
553 B
Meson
Executable File

project('nlohmann_json',
'cpp',
version : '3.10.5',
license : 'MIT',
)
nlohmann_json_dep = declare_dependency(
include_directories: include_directories('single_include')
)
nlohmann_json_multiple_headers = declare_dependency(
include_directories: include_directories('include')
)
if not meson.is_subproject()
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