diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:43 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:44 (GMT) |
commit | 90bad039c44195b742740613a34b90697254fdd2 (patch) | |
tree | 433c97a085e7f88a4347050a0aec0dedccb37dfb /Source/cmTarget.h | |
parent | 803a7982b4403c690d7b7fa8c49d00a5abae3471 (diff) | |
download | CMake-90bad039c44195b742740613a34b90697254fdd2.zip CMake-90bad039c44195b742740613a34b90697254fdd2.tar.gz CMake-90bad039c44195b742740613a34b90697254fdd2.tar.bz2 |
cmGeneratorTarget: Move CheckPropertyCompatibility from cmTarget.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index e3410aa..8af74ef 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -590,6 +590,14 @@ public: return this->LinkLibrariesForVS6;} #endif + enum CompatibleType + { + BoolType, + StringType, + NumberMinType, + NumberMaxType + }; + private: bool HandleLocationPropertyPolicy(cmMakefile* context) const; @@ -754,9 +762,6 @@ private: struct CompileInfo; CompileInfo const* GetCompileInfo(const std::string& config) const; - void CheckPropertyCompatibility(cmComputeLinkInformation *info, - const std::string& config) const; - LinkInterface const* GetImportLinkInterface(const std::string& config, cmTarget const* head, bool usage_requirements_only) const; |