Ninja: fix building from Codeblocks GUI
Many thx to Chuck Frayman BUG: 13652
This commit is contained in:
parent
0c1f291a27
commit
76c4430971
|
@ -811,6 +811,11 @@ std::string cmExtraCodeBlocksGenerator::BuildMakeCommand(
|
||||||
command += " VERBOSE=1 ";
|
command += " VERBOSE=1 ";
|
||||||
command += target;
|
command += target;
|
||||||
}
|
}
|
||||||
|
else if (strcmp(this->GlobalGenerator->GetName(), "Ninja")==0)
|
||||||
|
{
|
||||||
|
command += " -v ";
|
||||||
|
command += target;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
std::string makefileName = cmSystemTools::ConvertToOutputPath(makefile);
|
std::string makefileName = cmSystemTools::ConvertToOutputPath(makefile);
|
||||||
|
|
Loading…
Reference in New Issue