diff options
Diffstat (limited to 'src/JSONManifestBuilder.cc')
| -rw-r--r-- | src/JSONManifestBuilder.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/JSONManifestBuilder.cc b/src/JSONManifestBuilder.cc index e5db6b8..37cefbc 100644 --- a/src/JSONManifestBuilder.cc +++ b/src/JSONManifestBuilder.cc @@ -4,7 +4,6 @@ // ============================================================= // #include <JSONManifestBuilder.h> -#include <json.h> #include <sstream> #include <iostream> @@ -17,7 +16,7 @@ using JSON = nlohmann::json; /// @param arg_val filename path (must be a valid JSON file). /// @retval true succeeded building. /// @retval false failed to build. -bool JSONManifestBuilder::Build(int arg_sz, const char* arg_val) +bool JSONManifestBuilder::buildTarget(int arg_sz, const char* arg_val) { std::string path; @@ -150,3 +149,8 @@ bool JSONManifestBuilder::Build(int arg_sz, const char* arg_val) return true; } + +const char* JSONManifestBuilder::buildSystem() +{ + return "json"; +} |
