diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-01-28 21:10:27 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-06-12 17:01:45 (GMT) |
commit | ea5324cd4b570ea757a6da96a7bc85538943e008 (patch) | |
tree | 1bc6d72eeb8e22602d8ca96223b584dbc38d9d18 /Source/cmMakefile.h | |
parent | df8c3130d6e31558469cd1f0daa63e65cec79af1 (diff) | |
download | CMake-ea5324cd4b570ea757a6da96a7bc85538943e008.zip CMake-ea5324cd4b570ea757a6da96a7bc85538943e008.tar.gz CMake-ea5324cd4b570ea757a6da96a7bc85538943e008.tar.bz2 |
cmMakefile: Port messages for compile features to cmake
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index c665b1f..4fc197d 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -928,11 +928,12 @@ private: std::vector<cmSourceFile*> QtUiFilesWithOptions; - bool AddRequiredTargetCFeature(cmTarget* target, - const std::string& feature) const; + bool AddRequiredTargetCFeature(cmTarget* target, const std::string& feature, + std::string* error = 0) const; bool AddRequiredTargetCxxFeature(cmTarget* target, - const std::string& feature) const; + const std::string& feature, + std::string* error = 0) const; void CheckNeededCLanguage(const std::string& feature, bool& needC90, bool& needC99, bool& needC11) const; |