diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-02-15 17:30:01 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-02-15 17:30:01 (GMT) |
commit | 731e1ed9cf0ca1b09ebabb71d9c0bb13d062bb1d (patch) | |
tree | b1831aced10b7ae589d3e6816abf38b38fe31bc6 /Source/cmMakefileTargetGenerator.cxx | |
parent | 141ad7645e4c6d8841f346ecd0fb40383fa3a733 (diff) | |
download | CMake-731e1ed9cf0ca1b09ebabb71d9c0bb13d062bb1d.zip CMake-731e1ed9cf0ca1b09ebabb71d9c0bb13d062bb1d.tar.gz CMake-731e1ed9cf0ca1b09ebabb71d9c0bb13d062bb1d.tar.bz2 |
ENH: fix build error for mac
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index 87bef28..039f8b7 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -715,7 +715,7 @@ std::string cmMakefileTargetGenerator::GetFrameworkFlags() #else std::set<cmStdString> emitted; std::vector<std::string> includes; - this->GetIncludeDirectories(includes); + this->LocalGenerator->GetIncludeDirectories(includes); std::vector<std::string>::iterator i; // check all include directories for frameworks as this // will already have added a -F for the framework |