diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-06-13 06:38:27 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-13 06:38:27 (GMT) |
commit | 0efe4944e1ae18b9204209b3ddf5811905e22357 (patch) | |
tree | ff0c6d700e59444dce059c52e56b61a6be205603 /Source/cmLocalUnixMakefileGenerator3.h | |
parent | bc1211fa7d5c8262b075e010667aed41f5205a75 (diff) | |
download | CMake-0efe4944e1ae18b9204209b3ddf5811905e22357.zip CMake-0efe4944e1ae18b9204209b3ddf5811905e22357.tar.gz CMake-0efe4944e1ae18b9204209b3ddf5811905e22357.tar.bz2 |
cmGlobalGenerator: Add ComputeHomeRelativeOutputPath method.
Fix generation of tgt/fast build targets.
Commit 363caa2f (cmLocalGenerator: De-virtualize Configure().,
2015-05-30) moved the computation of HomeRelativeOutputPath from
Configure-time to Generate-time, because it is only used at
Generate-time. However, that commit caused the member for one
local generator to be computed immediately before generating with
that local generator, whereas previously the members of all local
generators were computed before generating any of them.
The HomeRelativeOutputPath is used by the GetRelativeTargetDirectory
method, which is called by the
cmGlobalUnixMakefileGenerator3::WriteConvenienceRules method. That
method is called by the
cmLocalUnixMakefileGenerator3::WriteLocalMakefile method when generating
for the top-most (ie, the first) local generator. At that point,
the HomeRelativeOutputPath is not yet computed.
Fix that by computing the member just before generating anything.
This will eventually be done in the cmLocalUnixMakefileGenerator3
constructor instead, but further refactoring is needed to make
that possible.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index dcb3016..4e4d146 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -39,6 +39,8 @@ public: cmState::Snapshot snapshot); virtual ~cmLocalUnixMakefileGenerator3(); + virtual void ComputeHomeRelativeOutputPath(); + /** * Generate the makefile for this directory. */ |