diff options
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 9e9bbe4..57f2eb0 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1428,9 +1428,10 @@ cmTarget cmGlobalGenerator::CreateGlobalTarget( target.SetType(cmTarget::GLOBAL_TARGET, name); target.SetInAll(false); - std::vector<std::string> fileDepends; + std::vector<std::string> no_outputs; + std::vector<std::string> no_depends; // Store the custom command in the target. - cmCustomCommand cc(0, fileDepends, *commandLines, 0, 0); + cmCustomCommand cc(no_outputs, no_depends, *commandLines, 0, 0); target.GetPostBuildCommands().push_back(cc); target.SetProperty("EchoString", message); if ( depends_on_all ) @@ -1453,3 +1454,10 @@ void cmGlobalGenerator::AppendDirectoryForConfig(const char*, const char*, // this method to append the subdirectory for the given build // configuration. } + +//---------------------------------------------------------------------------- +void cmGlobalGenerator::CheckMultipleOutputs(cmMakefile*, bool) +{ + // Only certain generators need this check. They define this + // method. +} |