diff options
author | Brad King <brad.king@kitware.com> | 2009-09-03 12:26:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-03 12:26:46 (GMT) |
commit | 1db5c90644c2567af5d10b66d7be6f39441ce8ff (patch) | |
tree | e883e707414fd4e433600ce2df6ef5bedadb9eb7 /Source/cmLocalGenerator.h | |
parent | a6890a1673aec8e3bf6afa7daa8d738ff4d32868 (diff) | |
download | CMake-1db5c90644c2567af5d10b66d7be6f39441ce8ff.zip CMake-1db5c90644c2567af5d10b66d7be6f39441ce8ff.tar.gz CMake-1db5c90644c2567af5d10b66d7be6f39441ce8ff.tar.bz2 |
Factor cmLocalGenerator::Configure object max path
Much of the code in this method was dedicated to computing ObjectMaxPath
after configuring the directory. We move this last step into its own
ComputeObjectMaxPath method for better organization.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 94cf510..de17c86 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -352,6 +352,7 @@ protected: std::string& CreateSafeUniqueObjectFileName(const char* sin, std::string const& dir_max); + void ComputeObjectMaxPath(); void ConfigureRelativePaths(); std::string FindRelativePathTopSource(); |