Merge pull request #1464 from elvisoric/update_meson_install_step

Disable installation when used as meson subproject. #1463
This commit is contained in:
Niels Lohmann 2019-02-10 21:48:20 +01:00 committed by GitHub
commit eee3bc0c79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,6 +12,7 @@ nlohmann_json_multiple_headers = declare_dependency(
include_directories: include_directories('include')
)
if not meson.is_subproject()
install_headers('single_include/nlohmann/json.hpp', subdir: 'nlohmann')
pkgc = import('pkgconfig')
@ -19,3 +20,4 @@ pkgc.generate(name: 'nlohmann_json',
version: meson.project_version(),
description: 'JSON for Modern C++'
)
endif