summaryrefslogtreecommitdiff
path: root/Source/cmLocalUnixMakefileGenerator3.h
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-03-11 20:29:03 +0100
committerSebastian Holtermann <sebholt@xwmw.org>2019-03-12 11:02:09 +0100
commit60a407b01c40921bed2fd30336fc09b9ad48e154 (patch)
treeb133a6b234fa27ada9f3d6c4de607ae3796c93b8 /Source/cmLocalUnixMakefileGenerator3.h
parentaddd1ce4024498b00499f971ef065537209b51a6 (diff)
downloadcmake-60a407b01c40921bed2fd30336fc09b9ad48e154.tar.gz
cmLocalUnixMakefileGenerator3: Pass strings instead of recomputing them
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h
index ced2dbd461..ba882da080 100644
--- a/Source/cmLocalUnixMakefileGenerator3.h
+++ b/Source/cmLocalUnixMakefileGenerator3.h
@@ -231,7 +231,8 @@ protected:
// Helper methods for dependency updates.
bool ScanDependencies(
- const std::string& targetDir,
+ std::string const& targetDir, std::string const& dependFile,
+ std::string const& internalDependFile,
std::map<std::string, cmDepends::DependencyVector>& validDeps);
void CheckMultipleOutputs(bool verbose);