diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2018-04-03 10:45:16 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2018-04-03 15:20:30 (GMT) |
commit | ccc38fa509301a135e68542f9965f3ea9f0547b7 (patch) | |
tree | 7c8f83fd67b8c012113f0f6977c63c5bbf56e6fc /Source/cmQtAutoGeneratorMocUic.cxx | |
parent | 719b24c87244ac612cfdc85da0e75140b87df673 (diff) | |
download | CMake-ccc38fa509301a135e68542f9965f3ea9f0547b7.zip CMake-ccc38fa509301a135e68542f9965f3ea9f0547b7.tar.gz CMake-ccc38fa509301a135e68542f9965f3ea9f0547b7.tar.bz2 |
Autogen: Protected calls to cmFilePathChecksum
Closes #17861
Closes #17862
Diffstat (limited to 'Source/cmQtAutoGeneratorMocUic.cxx')
-rw-r--r-- | Source/cmQtAutoGeneratorMocUic.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmQtAutoGeneratorMocUic.cxx b/Source/cmQtAutoGeneratorMocUic.cxx index c9dec10..543bdf6 100644 --- a/Source/cmQtAutoGeneratorMocUic.cxx +++ b/Source/cmQtAutoGeneratorMocUic.cxx @@ -676,7 +676,7 @@ void cmQtAutoGeneratorMocUic::JobMocT::Process(WorkerT& wrk) BuildFile += '/'; BuildFile += IncludeString; } else { - std::string rel = wrk.Base().FilePathChecksum.getPart(SourceFile); + std::string rel = wrk.FileSys().GetFilePathChecksum(SourceFile); rel += "/moc_"; rel += wrk.FileSys().GetFilenameWithoutLastExtension(SourceFile); rel += ".cpp"; @@ -1444,7 +1444,7 @@ bool cmQtAutoGeneratorMocUic::Init(cmMakefile* makefile) // ------------------------ // Init file path checksum generator - Base_.FilePathChecksum.setupParentDirs( + FileSys().setupFilePathChecksum( Base().CurrentSourceDir, Base().CurrentBinaryDir, Base().ProjectSourceDir, Base().ProjectBinaryDir); |