1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:47:44 +00:00

HackStudio: Allow customizing the actions of the Build & Run buttons

This commit introduces per-project settings that can be customized
through a JSON file placed in '.hackstudio/config.json' in the
project's root
This commit is contained in:
Marco Cutecchia 2022-03-18 23:17:22 +01:00 committed by Andreas Kling
parent 3e6c083754
commit 9096da19f1
7 changed files with 106 additions and 0 deletions

View file

@ -0,0 +1,33 @@
/*
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Error.h>
#include <AK/JsonObject.h>
#include <AK/Optional.h>
#include <AK/OwnPtr.h>
#include <LibCore/Object.h>
namespace HackStudio {
class ProjectConfig {
public:
static ErrorOr<NonnullOwnPtr<ProjectConfig>> try_load_project_config(String path);
static NonnullOwnPtr<ProjectConfig> create_empty();
ProjectConfig(JsonObject);
Optional<String> build_command() const { return read_key("build_command"); }
Optional<String> run_command() const { return read_key("run_command"); }
private:
Optional<String> read_key(String key_name) const;
JsonObject m_config;
};
}