Files
qt-creator/src/plugins/mesonprojectmanager/mesonrunconfiguration.cpp
hjk 29aba31741 Meson: Use Aspects more directly in MesonRunConfiguration
Change-Id: I6553d5651ba7006e683bd74c8e48fa3acd8d5246
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
2023-07-06 07:19:42 +00:00

86 lines
2.8 KiB
C++

// Copyright (C) 2020 Alexis Jeandet.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "mesonrunconfiguration.h"
#include "mesonpluginconstants.h"
#include <projectexplorer/buildsystem.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <projectexplorer/runconfigurationaspects.h>
#include <projectexplorer/target.h>
#include <utils/hostosinfo.h>
using namespace ProjectExplorer;
using namespace Utils;
namespace MesonProjectManager::Internal {
class MesonRunConfiguration final : public RunConfiguration
{
public:
MesonRunConfiguration(Target *target, Id id)
: RunConfiguration(target, id)
{
environment.setSupportForBuildEnvironment(target);
executable.setDeviceSelector(target, ExecutableAspect::RunDevice);
arguments.setMacroExpander(macroExpander());
workingDir.setMacroExpander(macroExpander());
workingDir.setEnvironment(&environment);
connect(&useLibraryPaths, &BaseAspect::changed,
&environment, &EnvironmentAspect::environmentChanged);
if (HostOsInfo::isMacHost()) {
connect(&useDyldSuffix, &BaseAspect::changed,
&environment, &EnvironmentAspect::environmentChanged);
environment.addModifier([this](Environment &env) {
if (useDyldSuffix())
env.set(QLatin1String("DYLD_IMAGE_SUFFIX"), QLatin1String("_debug"));
});
} else {
useDyldSuffix.setVisible(false);
}
environment.addModifier([this](Environment &env) {
BuildTargetInfo bti = buildTargetInfo();
if (bti.runEnvModifier)
bti.runEnvModifier(env, useLibraryPaths());
});
setUpdater([this] {
if (!activeBuildSystem())
return;
BuildTargetInfo bti = buildTargetInfo();
terminal.setUseTerminalHint(bti.usesTerminal);
executable.setExecutable(bti.targetFilePath);
workingDir.setDefaultWorkingDirectory(bti.workingDirectory);
emit environment.environmentChanged();
});
connect(target, &Target::buildSystemUpdated, this, &RunConfiguration::update);
}
EnvironmentAspect environment{this};
ExecutableAspect executable{this};
ArgumentsAspect arguments{this};
WorkingDirectoryAspect workingDir{this};
TerminalAspect terminal{this};
UseLibraryPathsAspect useLibraryPaths{this};
UseDyldSuffixAspect useDyldSuffix{this};
};
MesonRunConfigurationFactory::MesonRunConfigurationFactory()
{
registerRunConfiguration<MesonRunConfiguration>("MesonProjectManager.MesonRunConfiguration");
addSupportedProjectType(Constants::Project::ID);
addSupportedTargetDeviceType(ProjectExplorer::Constants::DESKTOP_DEVICE_TYPE);
}
} // MesonProjectManager::Internal