summaryrefslogtreecommitdiffstats
path: root/Source/cmMSProjectGenerator.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-09-12 15:49:10 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-09-12 15:49:10 (GMT)
commitc8c89b653fb49befaa8f0771523b5254ea1a7d7e (patch)
tree74850ae8fb020aa610dfa7fee0b5e10bd96d9d15 /Source/cmMSProjectGenerator.cxx
parent271e6ec3741e58d319e1c08142802f19bcebb73c (diff)
downloadCMake-c8c89b653fb49befaa8f0771523b5254ea1a7d7e.zip
CMake-c8c89b653fb49befaa8f0771523b5254ea1a7d7e.tar.gz
CMake-c8c89b653fb49befaa8f0771523b5254ea1a7d7e.tar.bz2
new arch
Diffstat (limited to 'Source/cmMSProjectGenerator.cxx')
-rw-r--r--Source/cmMSProjectGenerator.cxx125
1 files changed, 0 insertions, 125 deletions
diff --git a/Source/cmMSProjectGenerator.cxx b/Source/cmMSProjectGenerator.cxx
deleted file mode 100644
index 9d0768e..0000000
--- a/Source/cmMSProjectGenerator.cxx
+++ /dev/null
@@ -1,125 +0,0 @@
-/*=========================================================================
-
- Program: Insight Segmentation & Registration Toolkit
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
-
- Copyright (c) 2002 Insight Consortium. All rights reserved.
- See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
-
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
-
-=========================================================================*/
-#include "cmMSProjectGenerator.h"
-#include "cmDSWWriter.h"
-#include "cmDSPWriter.h"
-#include "cmCacheManager.h"
-
-cmMSProjectGenerator::cmMSProjectGenerator()
-{
- m_DSWWriter = 0;
- m_DSPWriter = 0;
- BuildDSWOn();
-}
-
-void cmMSProjectGenerator::GenerateMakefile()
-{
- this->EnableLanguage("CXX");
- if(m_BuildDSW)
- {
- delete m_DSWWriter;
- m_DSWWriter = 0;
- m_DSWWriter = new cmDSWWriter(m_Makefile);
- m_DSWWriter->OutputDSWFile();
- }
- else
- {
- delete m_DSPWriter;
- m_DSPWriter = 0;
- m_DSPWriter = new cmDSPWriter(m_Makefile);
- m_DSPWriter->OutputDSPFile();
- }
-}
-
-cmMSProjectGenerator::~cmMSProjectGenerator()
-{
- delete m_DSPWriter;
- delete m_DSWWriter;
-}
-
-void cmMSProjectGenerator::SetLocal(bool local)
-{
- m_BuildDSW = !local;
-}
-
-void cmMSProjectGenerator::EnableLanguage(const char*)
-{
- // now load the settings
- if(!m_Makefile->GetDefinition("CMAKE_ROOT"))
- {
- cmSystemTools::Error(
- "CMAKE_ROOT has not been defined, bad GUI or driver program");
- return;
- }
- if(!this->GetLanguageEnabled("CXX"))
- {
- std::string fpath =
- m_Makefile->GetDefinition("CMAKE_ROOT");
- fpath += "/Templates/CMakeWindowsSystemConfig.cmake";
- m_Makefile->ReadListFile(NULL,fpath.c_str());
- this->SetLanguageEnabled("CXX");
- }
-}
-
-int cmMSProjectGenerator::TryCompile(const char *srcdir,
- const char *bindir,
- const char *projectName)
-{
- // now build the test
- std::string makeCommand = m_Makefile->GetDefinition("CMAKE_MAKE_PROGRAM");
- if(makeCommand.size() == 0)
- {
- cmSystemTools::Error(
- "Generator cannot find the appropriate make command.");
- return 1;
- }
- makeCommand = cmSystemTools::ConvertToOutputPath(makeCommand.c_str());
- std::string lowerCaseCommand = makeCommand;
- cmSystemTools::LowerCase(lowerCaseCommand);
-
- /**
- * Run an executable command and put the stdout in output.
- */
- std::string output;
-
- std::string cwd = cmSystemTools::GetCurrentWorkingDirectory();
- cmSystemTools::ChangeDirectory(bindir);
-
- // if there are spaces in the makeCommand, assume a full path
- // and convert it to a path with no spaces in it as the
- // RunCommand does not like spaces
-#if defined(_WIN32) && !defined(__CYGWIN__)
- if(makeCommand.find(' ') != std::string::npos)
- {
- cmSystemTools::GetShortPath(makeCommand.c_str(), makeCommand);
- }
-#endif
- makeCommand += " ";
- makeCommand += projectName;
- makeCommand += ".dsw /MAKE \"ALL_BUILD - Debug\" /REBUILD";
-
- if (!cmSystemTools::RunCommand(makeCommand.c_str(), output))
- {
- cmSystemTools::Error("Generator: execution of msdev failed.");
- // return to the original directory
- cmSystemTools::ChangeDirectory(cwd.c_str());
- return 1;
- }
- cmSystemTools::ChangeDirectory(cwd.c_str());
- return 0;
-}
-