From e07b096aaf0d229ae074981c3d33515c023a30ee Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 9 Sep 2024 09:43:21 -0700 Subject: [PATCH] meson: Indent code inside an if block for better readability Signed-off-by: Dylan Baker --- meson.build | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/meson.build b/meson.build index 7a9c5ec85..e349362b3 100644 --- a/meson.build +++ b/meson.build @@ -13,12 +13,12 @@ nlohmann_json_multiple_headers = declare_dependency( ) if not meson.is_subproject() -install_headers('single_include/nlohmann/json.hpp', subdir: 'nlohmann') -install_headers('single_include/nlohmann/json_fwd.hpp', subdir: 'nlohmann') + install_headers('single_include/nlohmann/json.hpp', subdir: 'nlohmann') + install_headers('single_include/nlohmann/json_fwd.hpp', subdir: 'nlohmann') -pkgc = import('pkgconfig') -pkgc.generate(name: 'nlohmann_json', - version: meson.project_version(), - description: 'JSON for Modern C++' -) + pkgc = import('pkgconfig') + pkgc.generate(name: 'nlohmann_json', + version: meson.project_version(), + description: 'JSON for Modern C++' + ) endif