// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include "projectexplorer_export.h" #include namespace Utils { class Id; } namespace ProjectExplorer { class Kit; class PROJECTEXPLORER_EXPORT EnvironmentKitAspect { public: static Utils::Id id(); static Utils::EnvironmentItems buildEnvChanges(const Kit *k); static void setBuildEnvChanges(Kit *k, const Utils::EnvironmentItems &changes); static Utils::EnvironmentItems runEnvChanges(const Kit *k); static void setRunEnvChanges(Kit *k, const Utils::EnvironmentItems &changes); }; } // namespace ProjectExplorer