Merge topic 'ninja-codeblocks-gui'
76c4430
Ninja: fix building from Codeblocks GUI
This commit is contained in:
commit
b5ab3f0707
|
@ -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