summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-04-12 13:36:18 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-04-12 13:36:18 (GMT)
commitee7fbdf0588d9aabcd69d57a934f3681d60eff05 (patch)
treeed86e01d973d06cdfc7d48bdfe7eb212081c0f65 /Source
parentf33c633c400fd053c8cd8575717f2eea8c73b16e (diff)
downloadCMake-ee7fbdf0588d9aabcd69d57a934f3681d60eff05.zip
CMake-ee7fbdf0588d9aabcd69d57a934f3681d60eff05.tar.gz
CMake-ee7fbdf0588d9aabcd69d57a934f3681d60eff05.tar.bz2
BUG: local gen was setting proj dir when it shouldnt
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalGenerator.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index c84ce41..db90108 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -41,13 +41,6 @@ cmLocalGenerator::~cmLocalGenerator()
void cmLocalGenerator::Configure()
{
- // set the PROJECT_SOURCE_DIR and PROJECT_BIN_DIR to default values
- // just in case the project does not include a PROJECT command
- m_Makefile->AddDefinition("PROJECT_BINARY_DIR",
- m_Makefile->GetHomeOutputDirectory());
- m_Makefile->AddDefinition("PROJECT_SOURCE_DIR",
- m_Makefile->GetHomeDirectory());
-
// find & read the list file
std::string currentStart = m_Makefile->GetStartDirectory();
currentStart += "/CMakeLists.txt";