diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-16 10:25:44 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-16 10:27:00 +0100 |
| commit | 67f502af0e8194d4dfd9010c297e51b40a85e7fc (patch) | |
| tree | 81a27a594e5cfac79bcb05c6c28fe314d68e613c /dev/BuildKit | |
| parent | 1350d6381de4c2b2c56a69f0dc20ce54fab7be8b (diff) | |
feat: wip TOML support for NeBuild TOML files.
fix: JSON: fix broken JSON implementation.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/BuildKit')
| -rw-r--r-- | dev/BuildKit/TOMLManifestBuilder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/BuildKit/TOMLManifestBuilder.h b/dev/BuildKit/TOMLManifestBuilder.h index 10a8200..9c4a3a0 100644 --- a/dev/BuildKit/TOMLManifestBuilder.h +++ b/dev/BuildKit/TOMLManifestBuilder.h @@ -27,7 +27,7 @@ class TOMLManifestBuilder final NEBUILD_MANIFEST_BUILDER { /// @param arg_val filename path. /// @retval true build succeeded. /// @retval false failed to build. - bool BuildTarget(int arg_sz, const char* arg_val, const bool dry_run = false) override; + bool BuildTarget(const std::string& arg_val, const bool dry_run = false) override; const char* BuildSystem() override; }; } // namespace NeBuild
\ No newline at end of file |
