diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-05-15 09:49:02 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-05-20 14:11:35 (GMT) |
commit | b6dedf034e33dfafcb804c01691a080701ee680a (patch) | |
tree | 0ab0da3fe7075804f3046f3a3438464ce042bcd6 /Source/cmMakefile.h | |
parent | 8dd129dfbb8f8aeefa333a0bfa5f44d835b6913e (diff) | |
download | CMake-b6dedf034e33dfafcb804c01691a080701ee680a.zip CMake-b6dedf034e33dfafcb804c01691a080701ee680a.tar.gz CMake-b6dedf034e33dfafcb804c01691a080701ee680a.tar.bz2 |
cmMakefile: Extract CheckNeeded{C,Cxx}Language methods.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index be384e6..40e44a5 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -1110,6 +1110,11 @@ private: bool AddRequiredTargetCxxFeature(cmTarget *target, const std::string& feature) const; + + void CheckNeededCLanguage(const std::string& feature, bool& needC90, + bool& needC99, bool& needC11) const; + void CheckNeededCxxLanguage(const std::string& feature, bool& needCxx98, + bool& needCxx11) const; }; //---------------------------------------------------------------------------- |