forked from qt-creator/qt-creator
Fix missing symbols in Meson plugin
Amends 3cf8a37c7d
Change-Id: Ied585d199f40d0e8ac75ca74201e549cbcc68b55
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -236,7 +236,7 @@ static MesonTools::Tool_t findTool(const Id &id, ToolType toolType)
|
|||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
MesonTools::Tool_t autoDetectedTool(ToolType toolType)
|
MesonTools::Tool_t MesonTools::autoDetectedTool(ToolType toolType)
|
||||||
{
|
{
|
||||||
for (const auto &tool : s_tools) {
|
for (const auto &tool : s_tools) {
|
||||||
if (tool->autoDetected() && tool->toolType() == toolType)
|
if (tool->autoDetected() && tool->toolType() == toolType)
|
||||||
@@ -247,7 +247,7 @@ MesonTools::Tool_t autoDetectedTool(ToolType toolType)
|
|||||||
|
|
||||||
static void fixAutoDetected(ToolType toolType)
|
static void fixAutoDetected(ToolType toolType)
|
||||||
{
|
{
|
||||||
MesonTools::Tool_t autoDetected = autoDetectedTool(toolType);
|
MesonTools::Tool_t autoDetected = MesonTools::autoDetectedTool(toolType);
|
||||||
if (!autoDetected) {
|
if (!autoDetected) {
|
||||||
QStringList exeNames;
|
QStringList exeNames;
|
||||||
QString toolName;
|
QString toolName;
|
||||||
|
Reference in New Issue
Block a user