diff options
author | Stephen Kelly <steveire@gmail.com> | 2011-12-04 15:36:48 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2012-02-22 11:31:49 (GMT) |
commit | edd5303949f9d0e1b4b11e83aecd34bfdb2700ce (patch) | |
tree | e7c4328884cba9f0c5b07fb3ed4c78d39ecbb02a /Source/cmLocalGenerator.h | |
parent | 6a1c5a356911d3b75e60ecad86d7538e6de888f9 (diff) | |
download | CMake-edd5303949f9d0e1b4b11e83aecd34bfdb2700ce.zip CMake-edd5303949f9d0e1b4b11e83aecd34bfdb2700ce.tar.gz CMake-edd5303949f9d0e1b4b11e83aecd34bfdb2700ce.tar.bz2 |
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 0c5b9d0..7e737ef 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 |