summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-09-19 11:13:54 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-09-24 07:39:39 (GMT)
commit8bfff68642cfba9de42fa854d90a7cecbc507c83 (patch)
tree842a0667714430fd7d9233b22a0d5474d5410875 /Source/cmLocalGenerator.h
parent2c2479fbed07457529156be637540ae5e0b0afe7 (diff)
downloadCMake-8bfff68642cfba9de42fa854d90a7cecbc507c83.zip
CMake-8bfff68642cfba9de42fa854d90a7cecbc507c83.tar.gz
CMake-8bfff68642cfba9de42fa854d90a7cecbc507c83.tar.bz2
cmLocalGenerator: Compute object max path on construction.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r--Source/cmLocalGenerator.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h
index 771131f..6ea414a 100644
--- a/Source/cmLocalGenerator.h
+++ b/Source/cmLocalGenerator.h
@@ -300,7 +300,6 @@ public:
void CreateEvaluationFileOutputs(const std::string& config);
void ProcessEvaluationFiles(std::vector<std::string>& generatedFiles);
- void ComputeObjectMaxPath();
protected:
///! put all the libraries for a target on into the given stream
void OutputLinkLibraries(std::string& linkLibraries,
@@ -360,6 +359,8 @@ private:
bool GetShouldUseOldFlags(bool shared, const std::string &lang) const;
void AddPositionIndependentFlags(std::string& flags, std::string const& l,
int targetType);
+
+ void ComputeObjectMaxPath();
};
#endif