From 0760932c4532cdfcb15a68cbf5a16d0845d0e9f7 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 30 Jan 2026 08:06:09 +0100 Subject: feat: Windows DLL support, descriptions support. Signed-off-by: Amlal El Mahrouss --- src/lib/JSONManifestBuilder.cc | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src') 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(); !res.empty()) + NeBuild::Logger::info() << "nebuild: description: " << res << std::endl; + std::string compiler = json_obj["compiler_path"].get(); std::string command = compiler + " "; -- cgit v1.2.3