9 lines
246 B
Meson
9 lines
246 B
Meson
project('nlohmann_json', 'cpp')
|
|
|
|
nlohmann_json_dep = declare_dependency(
|
|
include_directories: include_directories('single_include')
|
|
)
|
|
|
|
nlohmann_json_multiple_headers = declare_dependency(
|
|
include_directories: include_directories('include')
|
|
)
|