2001-01-11 22:55:47 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2000 National Library of Medicine
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See COPYRIGHT.txt for copyright details.
|
|
|
|
|
|
|
|
=========================================================================*/
|
2000-08-29 23:26:29 +04:00
|
|
|
#include "cmDSPMakefile.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
#include "cmStandardIncludes.h"
|
2000-08-29 23:26:29 +04:00
|
|
|
#include "cmSystemTools.h"
|
2001-02-27 01:17:34 +03:00
|
|
|
#include "cmRegularExpression.h"
|
2001-02-28 00:50:51 +03:00
|
|
|
#include "cmCacheManager.h"
|
2001-02-23 03:24:43 +03:00
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
cmDSPMakefile::~cmDSPMakefile()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2000-08-30 21:35:41 +04:00
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
cmDSPMakefile::cmDSPMakefile(cmMakefile*mf)
|
|
|
|
{
|
|
|
|
m_Makefile = mf;
|
|
|
|
}
|
2000-08-30 21:35:41 +04:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
void cmDSPMakefile::OutputDSPFile()
|
|
|
|
{
|
2001-02-23 03:24:43 +03:00
|
|
|
// If not an in source build, then create the output directory
|
|
|
|
if(strcmp(m_Makefile->GetStartOutputDirectory(),
|
|
|
|
m_Makefile->GetHomeDirectory()) != 0)
|
|
|
|
{
|
|
|
|
if(!cmSystemTools::MakeDirectory(m_Makefile->GetStartOutputDirectory()))
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Error creating directory ",
|
|
|
|
m_Makefile->GetStartOutputDirectory());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup /I and /LIBPATH options for the resulting DSP file
|
2001-01-05 19:41:20 +03:00
|
|
|
std::vector<std::string>& includes = m_Makefile->GetIncludeDirectories();
|
2000-09-12 13:30:35 +04:00
|
|
|
std::vector<std::string>::iterator i;
|
|
|
|
for(i = includes.begin(); i != includes.end(); ++i)
|
|
|
|
{
|
|
|
|
m_IncludeOptions += "/I \"";
|
2000-09-21 21:45:08 +04:00
|
|
|
m_IncludeOptions += *i;
|
2000-09-12 13:30:35 +04:00
|
|
|
m_IncludeOptions += "\" ";
|
|
|
|
}
|
2001-01-05 19:41:20 +03:00
|
|
|
std::vector<std::string>& libs = m_Makefile->GetLinkLibraries();
|
2000-09-12 13:30:35 +04:00
|
|
|
for(i = libs.begin(); i != libs.end(); ++i)
|
|
|
|
{
|
2001-03-10 00:56:38 +03:00
|
|
|
m_LibraryOptions += " ";
|
|
|
|
m_LibraryOptions += *i;
|
|
|
|
m_LibraryOptions += ".lib ";
|
2000-09-12 13:30:35 +04:00
|
|
|
}
|
2001-01-05 19:41:20 +03:00
|
|
|
std::vector<std::string>& libswin32 = m_Makefile->GetLinkLibrariesWin32();
|
2000-09-12 13:30:35 +04:00
|
|
|
for(i = libswin32.begin(); i != libswin32.end(); ++i)
|
|
|
|
{
|
2001-03-10 00:56:38 +03:00
|
|
|
m_LibraryOptions += " ";
|
|
|
|
m_LibraryOptions += *i;
|
|
|
|
m_LibraryOptions += ".lib ";
|
2000-09-12 13:30:35 +04:00
|
|
|
}
|
2001-01-05 19:41:20 +03:00
|
|
|
std::vector<std::string>& libdirs = m_Makefile->GetLinkDirectories();
|
2000-09-12 13:30:35 +04:00
|
|
|
for(i = libdirs.begin(); i != libdirs.end(); ++i)
|
|
|
|
{
|
2001-03-10 00:56:38 +03:00
|
|
|
m_LibraryOptions += " /LIBPATH:\"";
|
|
|
|
m_LibraryOptions += *i;
|
|
|
|
m_LibraryOptions += "/$(OUTDIR)\" ";
|
2000-09-12 13:30:35 +04:00
|
|
|
}
|
2001-03-10 00:56:38 +03:00
|
|
|
m_LibraryOptions += "/STACK:10000000 ";
|
2001-02-23 03:24:43 +03:00
|
|
|
|
|
|
|
// Create the DSP or set of DSP's for libraries and executables
|
2001-02-15 21:30:13 +03:00
|
|
|
if(strlen(m_Makefile->GetLibraryName()) != 0)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-02-28 00:50:51 +03:00
|
|
|
const char* cacheValue
|
|
|
|
= cmCacheManager::GetInstance()->GetCacheValue("BUILD_SHARED_LIBS");
|
|
|
|
if(cacheValue && strcmp(cacheValue,"0"))
|
|
|
|
{
|
|
|
|
this->SetBuildType(DLL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->SetBuildType(STATIC_LIBRARY);
|
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
this->CreateSingleDSP();
|
|
|
|
}
|
2001-02-15 21:30:13 +03:00
|
|
|
// if there are executables build them
|
|
|
|
if (m_Makefile->HasExecutables())
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
|
|
|
this->CreateExecutableDSPFiles();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void cmDSPMakefile::CreateExecutableDSPFiles()
|
|
|
|
{
|
2001-01-05 19:41:20 +03:00
|
|
|
std::vector<cmClassFile>& Classes = m_Makefile->GetClasses();
|
|
|
|
for(int i = 0; i < Classes.size(); ++i)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-01-05 19:41:20 +03:00
|
|
|
cmClassFile& classfile = Classes[i];
|
2001-02-15 21:30:13 +03:00
|
|
|
if (classfile.m_IsExecutable)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-02-15 21:30:13 +03:00
|
|
|
std::string fname = m_Makefile->GetStartOutputDirectory();
|
|
|
|
fname += "/";
|
|
|
|
fname += classfile.m_ClassName;
|
|
|
|
fname += ".dsp";
|
|
|
|
std::ofstream fout(fname.c_str());
|
|
|
|
if(!fout)
|
|
|
|
{
|
2001-02-23 03:24:43 +03:00
|
|
|
cmSystemTools::Error("Error Writing ",
|
|
|
|
fname.c_str());
|
2001-02-15 21:30:13 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Makefile->SetLibraryName(classfile.m_ClassName.c_str());
|
|
|
|
this->SetBuildType(EXECUTABLE);
|
|
|
|
std::string pname = m_Makefile->GetLibraryName();
|
|
|
|
m_CreatedProjectNames.push_back(pname);
|
|
|
|
|
|
|
|
this->WriteDSPHeader(fout);
|
|
|
|
this->WriteDSPBeginGroup(fout, "Source Files", "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat");
|
|
|
|
this->WriteDSPBuildRule(fout, classfile.m_FullPath.c_str());
|
|
|
|
this->WriteDSPEndGroup(fout);
|
|
|
|
this->WriteDSPBuildRule(fout);
|
|
|
|
this->WriteDSPFooter(fout);
|
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmDSPMakefile::CreateSingleDSP()
|
|
|
|
{
|
|
|
|
std::string fname;
|
2001-02-15 21:30:13 +03:00
|
|
|
fname = m_Makefile->GetStartOutputDirectory();
|
2000-08-29 23:26:29 +04:00
|
|
|
fname += "/";
|
2001-01-05 19:41:20 +03:00
|
|
|
fname += m_Makefile->GetLibraryName();
|
2000-08-29 23:26:29 +04:00
|
|
|
fname += ".dsp";
|
|
|
|
m_CreatedProjectNames.clear();
|
2001-01-05 19:41:20 +03:00
|
|
|
std::string pname = m_Makefile->GetLibraryName();
|
2000-08-29 23:26:29 +04:00
|
|
|
m_CreatedProjectNames.push_back(pname);
|
|
|
|
std::ofstream fout(fname.c_str());
|
|
|
|
if(!fout)
|
|
|
|
{
|
2001-02-23 03:24:43 +03:00
|
|
|
cmSystemTools::Error("Error Writing ",
|
|
|
|
fname.c_str());
|
2000-08-30 21:35:41 +04:00
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
this->WriteDSPFile(fout);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmDSPMakefile::WriteDSPBuildRule(std::ostream& fout)
|
|
|
|
{
|
|
|
|
std::string dspname = *(m_CreatedProjectNames.end()-1);
|
|
|
|
dspname += ".dsp";
|
2001-02-15 21:30:13 +03:00
|
|
|
std::string makefileIn = m_Makefile->GetStartDirectory();
|
2000-08-29 23:26:29 +04:00
|
|
|
makefileIn += "/";
|
2000-08-30 21:35:41 +04:00
|
|
|
makefileIn += "CMakeLists.txt";
|
2001-01-05 19:41:20 +03:00
|
|
|
std::string dsprule = m_Makefile->GetHomeDirectory();
|
2000-08-31 22:15:58 +04:00
|
|
|
dsprule += "/CMake/Source/CMakeSetupCMD ";
|
2000-08-29 23:26:29 +04:00
|
|
|
dsprule += makefileIn;
|
|
|
|
dsprule += " -DSP -H";
|
2001-01-05 19:41:20 +03:00
|
|
|
dsprule += m_Makefile->GetHomeDirectory();
|
2001-02-15 21:30:13 +03:00
|
|
|
dsprule += " -S";
|
|
|
|
dsprule += m_Makefile->GetStartDirectory();
|
2000-08-29 23:26:29 +04:00
|
|
|
dsprule += " -O";
|
2001-02-15 21:30:13 +03:00
|
|
|
dsprule += m_Makefile->GetStartOutputDirectory();
|
2000-08-29 23:26:29 +04:00
|
|
|
dsprule += " -B";
|
2001-02-15 21:30:13 +03:00
|
|
|
dsprule += m_Makefile->GetHomeOutputDirectory();
|
2001-02-27 01:17:34 +03:00
|
|
|
|
2001-03-20 21:20:59 +03:00
|
|
|
std::set<std::string> depends;
|
|
|
|
std::set<std::string> outputs;
|
|
|
|
outputs.insert(outputs.begin(), dspname);
|
|
|
|
fout << "# Begin Source File\n\n";
|
|
|
|
fout << "SOURCE=" << makefileIn.c_str() << "\n\n";
|
|
|
|
this->WriteCustomRule(fout, dsprule.c_str(), depends, outputs);
|
|
|
|
fout << "# End Source File\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmDSPMakefile::AddDSPBuildRule(cmSourceGroup& sourceGroup)
|
|
|
|
{
|
|
|
|
std::string dspname = *(m_CreatedProjectNames.end()-1);
|
|
|
|
dspname += ".dsp";
|
|
|
|
std::string makefileIn = m_Makefile->GetStartDirectory();
|
|
|
|
makefileIn += "/";
|
|
|
|
makefileIn += "CMakeLists.txt";
|
|
|
|
std::string dsprule = m_Makefile->GetHomeDirectory();
|
|
|
|
dsprule += "/CMake/Source/CMakeSetupCMD ";
|
|
|
|
dsprule += makefileIn;
|
|
|
|
dsprule += " -DSP -H";
|
|
|
|
dsprule += m_Makefile->GetHomeDirectory();
|
|
|
|
dsprule += " -S";
|
|
|
|
dsprule += m_Makefile->GetStartDirectory();
|
|
|
|
dsprule += " -O";
|
|
|
|
dsprule += m_Makefile->GetStartOutputDirectory();
|
|
|
|
dsprule += " -B";
|
|
|
|
dsprule += m_Makefile->GetHomeOutputDirectory();
|
|
|
|
|
2001-02-27 01:17:34 +03:00
|
|
|
std::vector<std::string> depends;
|
2001-03-20 21:20:59 +03:00
|
|
|
std::vector<std::string> outputs;
|
|
|
|
outputs.push_back(dspname);
|
|
|
|
sourceGroup.AddCustomCommand(makefileIn.c_str(), dsprule.c_str(),
|
|
|
|
depends, outputs);
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
|
2001-03-20 21:20:59 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
void cmDSPMakefile::WriteDSPFile(std::ostream& fout)
|
|
|
|
{
|
2001-03-20 21:20:59 +03:00
|
|
|
// Write the DSP file's header.
|
2000-08-29 23:26:29 +04:00
|
|
|
this->WriteDSPHeader(fout);
|
2001-03-20 21:20:59 +03:00
|
|
|
|
|
|
|
// We may be modifying the source groups temporarily, so make a copy.
|
|
|
|
std::vector<cmSourceGroup> sourceGroups = m_Makefile->GetSourceGroups();
|
|
|
|
|
|
|
|
// Find the group in which the CMakeLists.txt source belongs, and add
|
|
|
|
// the rule to generate this DSP file.
|
|
|
|
for(std::vector<cmSourceGroup>::reverse_iterator sg = sourceGroups.rbegin();
|
|
|
|
sg != sourceGroups.rend(); ++sg)
|
|
|
|
{
|
|
|
|
if(sg->Matches("CMakeLists.txt"))
|
|
|
|
{
|
|
|
|
this->AddDSPBuildRule(*sg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop through every source group.
|
|
|
|
for(std::vector<cmSourceGroup>::const_iterator sg = sourceGroups.begin();
|
|
|
|
sg != sourceGroups.end(); ++sg)
|
|
|
|
{
|
|
|
|
const std::vector<std::string>& sources = sg->GetSources();
|
|
|
|
const cmSourceGroup::CustomCommands& customCommands = sg->GetCustomCommands();
|
|
|
|
// If the group is empty, don't write it at all.
|
|
|
|
if(sources.empty() && customCommands.empty())
|
|
|
|
{ continue; }
|
|
|
|
|
|
|
|
// If the group has a name, write the header.
|
|
|
|
std::string name = sg->GetName();
|
|
|
|
if(name != "")
|
|
|
|
{
|
|
|
|
this->WriteDSPBeginGroup(fout, name.c_str(), "");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop through each source in the source group.
|
|
|
|
for(std::vector<std::string>::const_iterator s = sources.begin();
|
|
|
|
s != sources.end(); ++s)
|
|
|
|
{
|
|
|
|
this->WriteDSPBuildRule(fout, s->c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop through each custom command in the source group.
|
|
|
|
for(cmSourceGroup::CustomCommands::const_iterator cc =
|
|
|
|
customCommands.begin(); cc != customCommands.end(); ++ cc)
|
|
|
|
{
|
|
|
|
std::string source = cc->first;
|
|
|
|
const cmSourceGroup::Commands& commands = cc->second;
|
|
|
|
|
|
|
|
fout << "# Begin Source File\n\n";
|
|
|
|
fout << "SOURCE=" << source << "\n\n";
|
|
|
|
|
|
|
|
// Loop through every command generating code from the current source.
|
|
|
|
for(cmSourceGroup::Commands::const_iterator c = commands.begin();
|
|
|
|
c != commands.end(); ++c)
|
|
|
|
{
|
|
|
|
std::string command = c->first;
|
|
|
|
const cmSourceGroup::CommandFiles& commandFiles = c->second;
|
|
|
|
this->WriteCustomRule(fout, command.c_str(), commandFiles.m_Depends,
|
|
|
|
commandFiles.m_Outputs);
|
|
|
|
}
|
|
|
|
|
|
|
|
fout << "# End Source File\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the group has a name, write the footer.
|
|
|
|
if(name != "")
|
|
|
|
{
|
|
|
|
this->WriteDSPEndGroup(fout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the DSP file's footer.
|
2000-08-29 23:26:29 +04:00
|
|
|
this->WriteDSPFooter(fout);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmDSPMakefile::WriteCustomRule(std::ostream& fout,
|
2001-02-27 01:17:34 +03:00
|
|
|
const char* command,
|
2001-03-20 21:20:59 +03:00
|
|
|
const std::set<std::string>& depends,
|
|
|
|
const std::set<std::string>& outputs)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-02-27 01:17:34 +03:00
|
|
|
std::vector<std::string>::iterator i;
|
|
|
|
for(i = m_Configurations.begin(); i != m_Configurations.end(); ++i)
|
|
|
|
{
|
|
|
|
if (i == m_Configurations.begin())
|
|
|
|
{
|
|
|
|
fout << "!IF \"$(CFG)\" == " << i->c_str() << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fout << "!ELSEIF \"$(CFG)\" == " << i->c_str() << std::endl;
|
|
|
|
}
|
|
|
|
fout << "# Begin Custom Build\n\n";
|
2001-03-20 21:20:59 +03:00
|
|
|
|
|
|
|
// Write a rule for every output generated by this command.
|
|
|
|
for(std::set<std::string>::const_iterator output = outputs.begin();
|
|
|
|
output != outputs.end(); ++output)
|
2001-02-27 01:17:34 +03:00
|
|
|
{
|
2001-03-20 21:20:59 +03:00
|
|
|
fout << "\"" << output->c_str()
|
|
|
|
<< "\" : \"$(SOURCE)\" \"$(INTDIR)\" \"$(OUTDIR)\"";
|
|
|
|
// Write out all the dependencies for this rule.
|
|
|
|
for(std::set<std::string>::const_iterator d = depends.begin();
|
|
|
|
d != depends.end(); ++d)
|
|
|
|
{
|
|
|
|
fout << " \"" << d->c_str() << "\"";
|
|
|
|
}
|
2001-03-20 21:48:23 +03:00
|
|
|
fout << "\n " << command << "\n\n";
|
2001-02-27 01:17:34 +03:00
|
|
|
}
|
2001-03-20 21:20:59 +03:00
|
|
|
|
2001-02-27 01:17:34 +03:00
|
|
|
fout << "# End Custom Build\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
fout << "!ENDIF\n\n";
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmDSPMakefile::WriteDSPBeginGroup(std::ostream& fout,
|
|
|
|
const char* group,
|
|
|
|
const char* filter)
|
|
|
|
{
|
|
|
|
fout << "# Begin Group \"" << group << "\"\n"
|
|
|
|
"# PROP Default_Filter \"" << filter << "\"\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmDSPMakefile::WriteDSPEndGroup(std::ostream& fout)
|
|
|
|
{
|
|
|
|
fout << "# End Group\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cmDSPMakefile::SetBuildType(BuildType b)
|
|
|
|
{
|
2001-03-01 01:50:15 +03:00
|
|
|
m_BuildType = b;
|
2000-08-29 23:26:29 +04:00
|
|
|
switch(b)
|
|
|
|
{
|
|
|
|
case STATIC_LIBRARY:
|
2001-01-05 19:41:20 +03:00
|
|
|
m_DSPHeaderTemplate = m_Makefile->GetHomeDirectory();
|
2000-08-30 21:35:41 +04:00
|
|
|
m_DSPHeaderTemplate += "/CMake/Source/staticLibHeader.dsptemplate";
|
2001-01-05 19:41:20 +03:00
|
|
|
m_DSPFooterTemplate = m_Makefile->GetHomeDirectory();
|
2000-08-30 21:35:41 +04:00
|
|
|
m_DSPFooterTemplate += "/CMake/Source/staticLibFooter.dsptemplate";
|
2000-08-29 23:26:29 +04:00
|
|
|
break;
|
|
|
|
case DLL:
|
2001-01-05 19:41:20 +03:00
|
|
|
m_DSPHeaderTemplate = m_Makefile->GetHomeDirectory();
|
2000-08-30 21:35:41 +04:00
|
|
|
m_DSPHeaderTemplate += "/CMake/Source/DLLHeader.dsptemplate";
|
2001-01-05 19:41:20 +03:00
|
|
|
m_DSPFooterTemplate = m_Makefile->GetHomeDirectory();
|
2000-08-30 21:35:41 +04:00
|
|
|
m_DSPFooterTemplate += "/CMake/Source/DLLFooter.dsptemplate";
|
2000-08-29 23:26:29 +04:00
|
|
|
break;
|
|
|
|
case EXECUTABLE:
|
2001-01-05 19:41:20 +03:00
|
|
|
m_DSPHeaderTemplate = m_Makefile->GetHomeDirectory();
|
2000-08-30 21:35:41 +04:00
|
|
|
m_DSPHeaderTemplate += "/CMake/Source/EXEHeader.dsptemplate";
|
2001-01-05 19:41:20 +03:00
|
|
|
m_DSPFooterTemplate = m_Makefile->GetHomeDirectory();
|
2000-08-30 21:35:41 +04:00
|
|
|
m_DSPFooterTemplate += "/CMake/Source/EXEFooter.dsptemplate";
|
2000-08-29 23:26:29 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2001-02-27 01:17:34 +03:00
|
|
|
// once the build type is set, determine what configurations are
|
|
|
|
// possible
|
|
|
|
std::ifstream fin(m_DSPHeaderTemplate.c_str());
|
|
|
|
cmRegularExpression reg("# Name ");
|
|
|
|
if(!fin)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Error Reading ", m_DSPHeaderTemplate.c_str());
|
|
|
|
}
|
2001-04-06 16:28:57 +04:00
|
|
|
|
|
|
|
// reset m_Configurations
|
|
|
|
m_Configurations.erase(m_Configurations.begin(), m_Configurations.end());
|
|
|
|
// now add all the configurations possible
|
2001-02-27 01:17:34 +03:00
|
|
|
char buffer[2048];
|
|
|
|
while(fin)
|
|
|
|
{
|
|
|
|
fin.getline(buffer, 2048);
|
|
|
|
std::string line = buffer;
|
|
|
|
cmSystemTools::ReplaceString(line, "OUTPUT_LIBNAME",
|
|
|
|
m_Makefile->GetLibraryName());
|
|
|
|
if (reg.find(line))
|
|
|
|
{
|
|
|
|
m_Configurations.push_back(line.substr(reg.end()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
|
|
|
|
void cmDSPMakefile::WriteDSPHeader(std::ostream& fout)
|
|
|
|
{
|
|
|
|
std::ifstream fin(m_DSPHeaderTemplate.c_str());
|
|
|
|
if(!fin)
|
|
|
|
{
|
2001-02-23 03:24:43 +03:00
|
|
|
cmSystemTools::Error("Error Reading ", m_DSPHeaderTemplate.c_str());
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
char buffer[2048];
|
2001-01-12 22:05:11 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
while(fin)
|
|
|
|
{
|
|
|
|
fin.getline(buffer, 2048);
|
|
|
|
std::string line = buffer;
|
2001-03-10 00:56:38 +03:00
|
|
|
cmSystemTools::ReplaceString(line, "CM_LIBRARIES",
|
|
|
|
m_LibraryOptions.c_str());
|
2000-08-29 23:26:29 +04:00
|
|
|
cmSystemTools::ReplaceString(line, "BUILD_INCLUDES",
|
|
|
|
m_IncludeOptions.c_str());
|
|
|
|
cmSystemTools::ReplaceString(line, "OUTPUT_LIBNAME",
|
2001-01-05 19:41:20 +03:00
|
|
|
m_Makefile->GetLibraryName());
|
2000-08-29 23:26:29 +04:00
|
|
|
cmSystemTools::ReplaceString(line,
|
2001-01-12 22:05:11 +03:00
|
|
|
"EXTRA_DEFINES",
|
|
|
|
m_Makefile->GetDefineFlags());
|
2000-08-29 23:26:29 +04:00
|
|
|
fout << line.c_str() << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmDSPMakefile::WriteDSPFooter(std::ostream& fout)
|
|
|
|
{
|
|
|
|
std::ifstream fin(m_DSPFooterTemplate.c_str());
|
|
|
|
if(!fin)
|
|
|
|
{
|
2001-02-23 03:24:43 +03:00
|
|
|
cmSystemTools::Error("Error Reading ",
|
|
|
|
m_DSPFooterTemplate.c_str());
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
char buffer[2048];
|
|
|
|
while(fin)
|
|
|
|
{
|
|
|
|
fin.getline(buffer, 2048);
|
|
|
|
fout << buffer << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmDSPMakefile::WriteDSPBuildRule(std::ostream& fout, const char* path)
|
|
|
|
{
|
|
|
|
fout << "# Begin Source File\n\n";
|
|
|
|
fout << "SOURCE="
|
|
|
|
<< path << "\n";
|
|
|
|
fout << "# End Source File\n";
|
|
|
|
}
|