summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/JSONManifestBuilder.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/JSONManifestBuilder.cc b/src/lib/JSONManifestBuilder.cc
index 9dce796..5983b3c 100644
--- a/src/lib/JSONManifestBuilder.cc
+++ b/src/lib/JSONManifestBuilder.cc
@@ -44,6 +44,13 @@ bool JSONManifestBuilder::BuildTarget(BuildConfig& config) {
nlohmann::json json_obj = nlohmann::json::parse(json);
+ nlohmann::json description = json_obj["description"];
+
+ NeBuild::Logger::info() << "nebuild: installing: " << path << std::endl;
+
+ if (auto res = description.get<std::string>(); !res.empty())
+ NeBuild::Logger::info() << "nebuild: description: " << res << std::endl;
+
std::string compiler = json_obj["compiler_path"].get<std::string>();
std::string command = compiler + " ";