summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-03-15 19:33:47 (GMT)
committerBrad King <brad.king@kitware.com>2001-03-15 19:33:47 (GMT)
commitf84972610ece8f7a82e8505625021ffbab5514e5 (patch)
treebd4cc2e8716ef4eed5af0097a18957156662dcef /Source/cmMakefile.cxx
parent354992c522048c8e1bfd3b786841e7be4ca2ef9f (diff)
downloadCMake-f84972610ece8f7a82e8505625021ffbab5514e5.zip
CMake-f84972610ece8f7a82e8505625021ffbab5514e5.tar.gz
CMake-f84972610ece8f7a82e8505625021ffbab5514e5.tar.bz2
BUG: Moved definition of CMAKE_SOURCE_DIR and CMAKE_BINARY_DIR to be as soon as their information is known.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index f38cda2..815421f 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -388,11 +388,7 @@ std::string cmMakefile::GetParentListFileName(const char *currentFileName)
void cmMakefile::ExpandVariables()
{
- // make sure binary and source dir are defined
- this->AddDefinition("CMAKE_BINARY_DIR", this->GetHomeOutputDirectory());
- this->AddDefinition("CMAKE_SOURCE_DIR", this->GetHomeDirectory());
-
- // Now expand varibles in the include and link strings
+ // Now expand varibles in the include and link strings
std::vector<std::string>::iterator j, begin, end;
begin = m_IncludeDirectories.begin();
end = m_IncludeDirectories.end();