Skip to content

Commit

Permalink
Add version and license to meson.build
Browse files Browse the repository at this point in the history
  • Loading branch information
Kostiantyn Ponomarenko committed Sep 20, 2018
1 parent e4bc98d commit 8799759
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
project('nlohmann_json', 'cpp')
project('nlohmann_json',
'cpp',
version : '3.2.0',
license : 'MIT',
)

nlohmann_json_dep = declare_dependency(
include_directories: include_directories('single_include')
include_directories: include_directories('single_include')
)

nlohmann_json_multiple_headers = declare_dependency(
include_directories: include_directories('include')
include_directories: include_directories('include')
)

0 comments on commit 8799759

Please sign in to comment.