diff options
author | Stephen Kelly <steveire@gmail.com> | 2011-12-04 16:36:48 +0100 |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2012-02-22 06:31:49 -0500 |
commit | edd5303949f9d0e1b4b11e83aecd34bfdb2700ce (patch) | |
tree | e7c4328884cba9f0c5b07fb3ed4c78d39ecbb02a /Source/cmLocalGenerator.h | |
parent | 6a1c5a356911d3b75e60ecad86d7538e6de888f9 (diff) | |
download | cmake-edd5303949f9d0e1b4b11e83aecd34bfdb2700ce.tar.gz |
Refactor GetIncludeFlags to take includes instead of fetching them
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 0c5b9d0741..7e737efeb3 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -146,8 +146,8 @@ public: ///! Append flags to a string. virtual void AppendFlags(std::string& flags, const char* newFlags); ///! Get the include flags for the current makefile and language - const char* GetIncludeFlags(const char* lang, - bool forResponseFile = false); + const char* GetIncludeFlags(const std::vector<std::string> &includes, + const char* lang, bool forResponseFile = false); /** * Encode a list of preprocessor definitions for the compiler |