diff options
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index aab9582..96cdb5e 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -488,7 +488,15 @@ private: #endif // Cache target output paths for each configuration. - struct OutputInfo; + struct OutputInfo + { + std::string OutDir; + std::string ImpDir; + std::string PdbDir; + bool empty() const + { return OutDir.empty() && ImpDir.empty() && PdbDir.empty(); } + }; + OutputInfo const* GetOutputInfo(const std::string& config) const; bool ComputeOutputDir(const std::string& config, |