diff options
author | Brad King <brad.king@kitware.com> | 2009-02-27 11:23:14 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-02-27 11:23:14 -0500 |
commit | 1d3308156e1fc1646873b22317265c61288e9e42 (patch) | |
tree | ff65855bca8ae897c19ce112d54d654bab2a049c /Source/cmGlobalGenerator.cxx | |
parent | 99b37665c91e91d70576298fef7bab71f794c985 (diff) | |
download | cmake-1d3308156e1fc1646873b22317265c61288e9e42.tar.gz |
ENH: Enforce unique binary directories
The second argument of add_subdirectory must name a unique binary
directory or the build files will clobber each other. This enforces
uniqueness with an error message.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 4fc26f60db..0103a855b8 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -732,18 +732,22 @@ void cmGlobalGenerator::Configure() this->ProjectMap.clear(); this->RuleHashes.clear(); this->DirectoryContentMap.clear(); + this->BinaryDirectories.clear(); // start with this directory cmLocalGenerator *lg = this->CreateLocalGenerator(); this->LocalGenerators.push_back(lg); // set the Start directories + cmMakefile* mf = lg->GetMakefile(); lg->GetMakefile()->SetStartDirectory (this->CMakeInstance->GetStartDirectory()); lg->GetMakefile()->SetStartOutputDirectory (this->CMakeInstance->GetStartOutputDirectory()); lg->GetMakefile()->MakeStartDirectoriesCurrent(); + this->BinaryDirectories.insert(mf->GetStartOutputDirectory()); + // now do it lg->Configure(); |