diff options
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.cxx')
-rw-r--r-- | Source/cmExtraCodeBlocksGenerator.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx index 9995b51..a84b28d 100644 --- a/Source/cmExtraCodeBlocksGenerator.cxx +++ b/Source/cmExtraCodeBlocksGenerator.cxx @@ -418,6 +418,13 @@ std::string cmExtraCodeBlocksGenerator::BuildMakeCommand( command += "" "; command += target; } + else if (strcmp(this->GlobalGenerator->GetName(), "MinGW Makefiles")==0) + { + command += " -f "; + command += makefile; + command += " "; + command += target; + } else { command += " -f ""; |