diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2016-12-31 12:04:38 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-01-10 11:49:16 (GMT) |
commit | 94c319f93309ff4cddd0280cdcbd48b50492db36 (patch) | |
tree | 0811b161a100d228ff3832516b4b92b5516bc906 /Source/cmQtAutoGenerators.h | |
parent | 966be439e07131c3ff84175c1a9e3b6336908d8e (diff) | |
download | CMake-94c319f93309ff4cddd0280cdcbd48b50492db36.zip CMake-94c319f93309ff4cddd0280cdcbd48b50492db36.tar.gz CMake-94c319f93309ff4cddd0280cdcbd48b50492db36.tar.bz2 |
AUTOGEN: Generators: Use separate header lists for MOC and UIC
This is necessary for the skipMoc and skipUic lists to work properly.
Diffstat (limited to 'Source/cmQtAutoGenerators.h')
-rw-r--r-- | Source/cmQtAutoGenerators.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h index dac23d9..1036cb7 100644 --- a/Source/cmQtAutoGenerators.h +++ b/Source/cmQtAutoGenerators.h @@ -55,13 +55,15 @@ private: std::map<std::string, std::string>& includedMocs, std::map<std::string, std::vector<std::string> >& includedUis, bool relaxed); - void SearchHeadersForCppFile( + void SearchHeadersForSourceFile( const std::string& absFilename, const std::vector<std::string>& headerExtensions, - std::set<std::string>& absHeaders); + std::set<std::string>& absHeadersMoc, + std::set<std::string>& absHeadersUic); void ParseHeaders( - const std::set<std::string>& absHeaders, + const std::set<std::string>& absHeadersMoc, + const std::set<std::string>& absHeadersUic, const std::map<std::string, std::string>& includedMocs, std::map<std::string, std::string>& notIncludedMocs, std::map<std::string, std::vector<std::string> >& includedUis); |