summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-05-15 09:49:02 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-05-20 14:11:35 (GMT)
commitb6dedf034e33dfafcb804c01691a080701ee680a (patch)
tree0ab0da3fe7075804f3046f3a3438464ce042bcd6 /Source/cmMakefile.h
parent8dd129dfbb8f8aeefa333a0bfa5f44d835b6913e (diff)
downloadCMake-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.h5
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;
};
//----------------------------------------------------------------------------