Skip to content

Commit

Permalink
Merge pull request #1142 from jrakow/develop
Browse files Browse the repository at this point in the history
meson: fix include directory
  • Loading branch information
nlohmann authored Jun 24, 2018
2 parents 6245772 + ec2ebd5 commit 515cfc2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
project('nlohmann_json', 'cpp')

nlohmann_json_inc = include_directories('single_include/nlohmann')

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')
)

0 comments on commit 515cfc2

Please sign in to comment.