Merge pull request #1142 from jrakow/develop
meson: fix include directory
This commit is contained in:
commit
515cfc2d89
1 changed files with 5 additions and 3 deletions
|
@ -1,7 +1,9 @@
|
||||||
project('nlohmann_json', 'cpp')
|
project('nlohmann_json', 'cpp')
|
||||||
|
|
||||||
nlohmann_json_inc = include_directories('single_include/nlohmann')
|
|
||||||
|
|
||||||
nlohmann_json_dep = declare_dependency(
|
nlohmann_json_dep = declare_dependency(
|
||||||
include_directories : nlohmann_json_inc
|
include_directories: include_directories('single_include')
|
||||||
|
)
|
||||||
|
|
||||||
|
nlohmann_json_multiple_headers = declare_dependency(
|
||||||
|
include_directories: include_directories('include')
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue