diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-19 22:44:15 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-20 22:52:22 (GMT) |
commit | 6d94078e623d5f1316f1972ffda06ac1d66b6f2f (patch) | |
tree | d1d5d0ec8710fdae937cfbd9627015376bc3c12a /Source/cmGeneratorTarget.h | |
parent | 3ebc62850c7461dca4723b063b5e5f019409db84 (diff) | |
download | CMake-6d94078e623d5f1316f1972ffda06ac1d66b6f2f.zip CMake-6d94078e623d5f1316f1972ffda06ac1d66b6f2f.tar.gz CMake-6d94078e623d5f1316f1972ffda06ac1d66b6f2f.tar.bz2 |
cmGeneratorTarget: Move IsDLLPlatform from cmTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 26b229d..eaec83b 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -196,6 +196,9 @@ public: std::string GetModuleDefinitionFile(const std::string& config) const; + /** Return whether or not the target is for a DLL platform. */ + bool IsDLLPlatform() const; + /** @return whether this target have a well defined output file name. */ bool HaveWellDefinedOutputFiles() const; @@ -646,6 +649,7 @@ private: mutable bool DebugSourcesDone; mutable bool LinkImplementationLanguageIsContextDependent; mutable bool UtilityItemsDone; + bool DLLPlatform; bool ComputePDBOutputDir(const std::string& kind, const std::string& config, std::string& out) const; |