diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-05-18 19:20:31 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-05-18 19:20:31 (GMT) |
commit | 7ec7fb7e95a8859c71d8a2345c88b62e81ac3124 (patch) | |
tree | 869504ba3bfd02caef92eec7c14355442bbafde9 /Source/cmMSProjectGenerator.cxx | |
parent | cb0af952cf1ebaa82eb09bb3b63be681e3d2d3ca (diff) | |
download | CMake-7ec7fb7e95a8859c71d8a2345c88b62e81ac3124.zip CMake-7ec7fb7e95a8859c71d8a2345c88b62e81ac3124.tar.gz CMake-7ec7fb7e95a8859c71d8a2345c88b62e81ac3124.tar.bz2 |
changes for cmake to live outside of the source tree
Diffstat (limited to 'Source/cmMSProjectGenerator.cxx')
-rw-r--r-- | Source/cmMSProjectGenerator.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmMSProjectGenerator.cxx b/Source/cmMSProjectGenerator.cxx index 9a6f4f1..6a0c384 100644 --- a/Source/cmMSProjectGenerator.cxx +++ b/Source/cmMSProjectGenerator.cxx @@ -73,3 +73,12 @@ void cmMSProjectGenerator::SetLocal(bool local) { m_BuildDSW = !local; } + +void cmMSProjectGenerator::ComputeSystemInfo() +{ + // now load the settings + std::string fpath = + cmCacheManager::GetInstance()->GetCacheValue("CMAKE_ROOT"); + fpath += "/CMakeWindowsSystemConfig.cmake"; + m_Makefile->ReadListFile(NULL,fpath.c_str()); +} |