diff options
author | Brad King <brad.king@kitware.com> | 2004-10-26 14:15:49 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2004-10-26 14:15:49 (GMT) |
commit | 16e86a3ea9ed2b1ba595aaeb2798aa8cfc0a70b8 (patch) | |
tree | db9b738d7e27c28be7df5683ea70dd3dadbd69bc /Source/cmLocalGenerator.h | |
parent | 2bad658304ead4aae1aa4aedf963ba00a5a34ea3 (diff) | |
download | CMake-16e86a3ea9ed2b1ba595aaeb2798aa8cfc0a70b8.zip CMake-16e86a3ea9ed2b1ba595aaeb2798aa8cfc0a70b8.tar.gz CMake-16e86a3ea9ed2b1ba595aaeb2798aa8cfc0a70b8.tar.bz2 |
ENH: Split part of GetIncludeFlags method into separate GetIncludeDirectories method.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 02f902e..670e093 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -105,6 +105,10 @@ protected: ///! Get the include flags for the current makefile and language const char* GetIncludeFlags(const char* lang); + + /** Get the include flags for the current makefile and language. */ + void GetIncludeDirectories(std::vector<std::string>& dirs); + ///! for existing files convert to output path and short path if spaces std::string ConvertToOutputForExisting(const char* p); |