diff options
author | Brad King <brad.king@kitware.com> | 2006-01-05 22:16:22 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-01-05 22:16:22 (GMT) |
commit | 8dc1de6efd4d4edd010be56ddb57c22d8c0b5294 (patch) | |
tree | b91a4d0fd03b0bae12ac6272927a61a919bf158e /Source/cmDependsC.h | |
parent | bdbb7f84bc85c27aa49133f060e3407aa3990eea (diff) | |
download | CMake-8dc1de6efd4d4edd010be56ddb57c22d8c0b5294.zip CMake-8dc1de6efd4d4edd010be56ddb57c22d8c0b5294.tar.gz CMake-8dc1de6efd4d4edd010be56ddb57c22d8c0b5294.tar.bz2 |
BUG: Fix for scanning generated headers included with double-quotes. Also fixed double-quote include support to not use the special quoted location when a full path is given on the include line.
Diffstat (limited to 'Source/cmDependsC.h')
-rw-r--r-- | Source/cmDependsC.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmDependsC.h b/Source/cmDependsC.h index 687131d..f7167e8 100644 --- a/Source/cmDependsC.h +++ b/Source/cmDependsC.h @@ -53,6 +53,9 @@ protected: bool FileExistsOrIsGenerated(const std::string& fname, std::set<cmStdString>& scanned, std::set<cmStdString>& dependencies); + bool FileIsGenerated(const std::string& fname, + std::set<cmStdString>& scanned, + std::set<cmStdString>& dependencies); // The include file search path. std::vector<std::string> const* m_IncludePath; |