diff options
author | Brad King <brad.king@kitware.com> | 2007-12-23 20:03:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-12-23 20:03:42 (GMT) |
commit | 430296dc962bad3ada1e9174f529a53ca676c7df (patch) | |
tree | 2a1f617739038882e0bd01ced9f9dc681a60a1f5 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 8769444beb9686c8214589d447381ce8686284e9 (diff) | |
download | CMake-430296dc962bad3ada1e9174f529a53ca676c7df.zip CMake-430296dc962bad3ada1e9174f529a53ca676c7df.tar.gz CMake-430296dc962bad3ada1e9174f529a53ca676c7df.tar.bz2 |
ENH: Moved global inter-target dependency analysis and cycle-prevention code up from cmGlobalUnixMakefileGenerator3 to cmGlobalGenerator. Simplified cmGlobalUnixMakefileGenerator3 to use it. Later other generators may be modified to use it also.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 49a068c..3ceeccc 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -823,7 +823,8 @@ cmLocalUnixMakefileGenerator3 //---------------------------------------------------------------------------- std::string -cmLocalUnixMakefileGenerator3::GetRelativeTargetDirectory(cmTarget& target) +cmLocalUnixMakefileGenerator3 +::GetRelativeTargetDirectory(cmTarget const& target) { std::string dir = this->HomeRelativeOutputPath; dir += this->GetTargetDirectory(target); |