diff options
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index bc4e74b..01aeffd 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -213,12 +213,12 @@ public: configuration. This is valid during generation only. */ cmTargetManifest const& GetTargetManifest() { return this->TargetManifest; } - /** Get the content of a directory on disk including the target - files to be generated. This may be called only during the - generation step. It is intended for use only by - cmComputeLinkInformation. */ + /** Get the content of a directory. Directory listings are loaded + from disk at most once and cached. During the generation step + the content will include the target files to be built even if + they do not yet exist. */ std::set<cmStdString> const& GetDirectoryContent(std::string const& dir, - bool needDisk); + bool needDisk = true); void AddTarget(cmTargets::value_type &v); |