blob: c6a48c4c53ec5e5f519b65d3785a97e09be728af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/*=========================================================================
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()
{
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;
}
std::string fpath =
m_Makefile->GetDefinition("CMAKE_ROOT");
fpath += "/Templates/CMakeWindowsSystemConfig.cmake";
m_Makefile->ReadListFile(NULL,fpath.c_str());
}
|