diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-21 20:34:13 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-21 20:34:13 (GMT) |
commit | a2b757aa2d6addbdbbaebaa2054e6998b1632534 (patch) | |
tree | ec1eb352368b78c8c9ea1de87a995a997e6224d9 /Source/cmake.cxx | |
parent | 3a200bf9093462109038ed6664001dd4b1b33e06 (diff) | |
download | CMake-a2b757aa2d6addbdbbaebaa2054e6998b1632534.zip CMake-a2b757aa2d6addbdbbaebaa2054e6998b1632534.tar.gz CMake-a2b757aa2d6addbdbbaebaa2054e6998b1632534.tar.bz2 |
ENH: better ability to find cmake program
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index f015024..f7b21b5 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -133,7 +133,25 @@ void cmake::AddCMakePaths(const std::vector<std::string>& args) std::string cMakeSelf = args[0]; cmSystemTools::ConvertToUnixSlashes(cMakeSelf); cMakeSelf = cmSystemTools::FindProgram(cMakeSelf.c_str()); - +#ifdef CMAKE_BUILD_DIR + if(!cmSystemTools::FileExists(cMakeSelf.c_str())) + { + cMakeSelf = CMAKE_BUILD_DIR; + cMakeSelf += "/Source/cmake"; + } +#endif +#ifdef CMAKE_PREFIX + if(!cmSystemTools::FileExists(cMakeSelf.c_str())) + { + cMakeSelf = CMAKE_PREFIX "/bin/cmake"; + } +#endif + if(!cmSystemTools::FileExists(cMakeSelf.c_str())) + { + cmSystemTools::Error("CMAKE can not find the command line program cmake. " + "Attempted path: ", cMakeSelf.c_str()); + return; + } // Save the value in the cache cmCacheManager::GetInstance()->AddCacheEntry ("CMAKE_COMMAND", |