diff options
author | Brad King <brad.king@kitware.com> | 2011-03-15 18:07:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-03-17 21:56:13 (GMT) |
commit | 9a0b9bc8b756bcb027485d72fb9619c8e10f5a0a (patch) | |
tree | 5afc4348887308de45cfc01ad573ac9f3b221805 /Source/cmLocalUnixMakefileGenerator3.h | |
parent | 6e8a67f99a34f2166ee838eb68968ae200830cac (diff) | |
download | CMake-9a0b9bc8b756bcb027485d72fb9619c8e10f5a0a.zip CMake-9a0b9bc8b756bcb027485d72fb9619c8e10f5a0a.tar.gz CMake-9a0b9bc8b756bcb027485d72fb9619c8e10f5a0a.tar.bz2 |
Optionally pass include directories with response files
Create platform option CMAKE_<lang>_USE_RESPONSE_FILE_FOR_INCLUDES to
enable use of response files for passing the list of include directories
to compiler command lines.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index 790eff1..9ff6e5e 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -320,6 +320,8 @@ protected: void AppendRuleDepend(std::vector<std::string>& depends, const char* ruleFileName); + void AppendRuleDepends(std::vector<std::string>& depends, + std::vector<std::string> const& ruleFiles); void AppendCustomDepends(std::vector<std::string>& depends, const std::vector<cmCustomCommand>& ccs); void AppendCustomDepend(std::vector<std::string>& depends, |