mirror of
https://github.com/nlohmann/json
synced 2024-11-09 22:20:05 +00:00
14 lines
300 B
Meson
14 lines
300 B
Meson
project('nlohmann_json',
|
|
'cpp',
|
|
version : '3.3.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')
|
|
)
|