2001-01-11 22:55:47 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2001-04-27 16:01:17 +04:00
|
|
|
Copyright (c) 2001 Insight Consortium
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
* The name of the Insight Consortium, nor the names of any consortium members,
|
|
|
|
nor of any contributors, may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
* Modified source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS''
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2001-01-11 22:55:47 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
2001-06-06 21:48:13 +04:00
|
|
|
#include "cmDSWWriter.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
#include "cmStandardIncludes.h"
|
2000-08-29 23:26:29 +04:00
|
|
|
#include "cmSystemTools.h"
|
2001-06-06 21:48:13 +04:00
|
|
|
#include "cmDSPWriter.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
#include "cmMSProjectGenerator.h"
|
2001-04-30 18:44:00 +04:00
|
|
|
#include "cmCacheManager.h"
|
2000-08-29 23:26:29 +04:00
|
|
|
|
|
|
|
|
2001-06-06 21:48:13 +04:00
|
|
|
cmDSWWriter::cmDSWWriter(cmMakefile* m)
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
|
|
|
m_Makefile = m;
|
|
|
|
}
|
|
|
|
|
2000-09-21 21:45:08 +04:00
|
|
|
// output the DSW file
|
2001-06-06 21:48:13 +04:00
|
|
|
void cmDSWWriter::OutputDSWFile()
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-02-23 03:24:43 +03:00
|
|
|
// if this is an out of source build, create the output directory
|
2001-02-15 21:30:13 +03:00
|
|
|
if(strcmp(m_Makefile->GetStartOutputDirectory(),
|
2001-01-05 19:41:20 +03:00
|
|
|
m_Makefile->GetHomeDirectory()) != 0)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-02-15 21:30:13 +03:00
|
|
|
if(!cmSystemTools::MakeDirectory(m_Makefile->GetStartOutputDirectory()))
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-02-23 03:24:43 +03:00
|
|
|
cmSystemTools::Error("Error creating output directory for DSW file",
|
|
|
|
m_Makefile->GetStartOutputDirectory());
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
}
|
2001-02-23 03:24:43 +03:00
|
|
|
// create the dsw file name
|
2000-08-29 23:26:29 +04:00
|
|
|
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-06-22 01:55:28 +04:00
|
|
|
if(strlen(m_Makefile->GetProjectName()))
|
|
|
|
{
|
|
|
|
fname += m_Makefile->GetProjectName();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fname += "Project";
|
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
fname += ".dsw";
|
|
|
|
std::ofstream fout(fname.c_str());
|
|
|
|
if(!fout)
|
|
|
|
{
|
2001-02-23 03:24:43 +03:00
|
|
|
cmSystemTools::Error("Error can not open DSW file for write: "
|
|
|
|
,fname.c_str());
|
2000-08-29 23:26:29 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->WriteDSWFile(fout);
|
|
|
|
}
|
|
|
|
|
2000-09-12 13:30:35 +04:00
|
|
|
|
|
|
|
// Write a DSW file to the stream
|
2001-06-06 21:48:13 +04:00
|
|
|
void cmDSWWriter::WriteDSWFile(std::ostream& fout)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2000-09-12 13:30:35 +04:00
|
|
|
// Write out the header for a DSW file
|
2000-08-29 23:26:29 +04:00
|
|
|
this->WriteDSWHeader(fout);
|
2001-02-23 03:24:43 +03:00
|
|
|
|
|
|
|
// Create a list of cmMakefile created from all the
|
|
|
|
// CMakeLists.txt files that are in sub directories of
|
|
|
|
// this one.
|
|
|
|
std::vector<cmMakefile*> allListFiles;
|
2001-05-02 00:55:32 +04:00
|
|
|
// add this makefile to the list
|
|
|
|
allListFiles.push_back(m_Makefile);
|
|
|
|
// add a special target that depends on ALL projects for easy build
|
|
|
|
// of Debug only
|
2001-05-04 23:50:26 +04:00
|
|
|
m_Makefile->AddUtilityCommand("ALL_BUILD", "echo \"Build all projects\"", false);
|
2001-05-02 00:55:32 +04:00
|
|
|
m_Makefile->FindSubDirectoryCMakeListsFiles(allListFiles);
|
2001-02-23 03:24:43 +03:00
|
|
|
// For each cmMakefile, create a DSP for it, and
|
|
|
|
// add it to this DSW file
|
|
|
|
for(std::vector<cmMakefile*>::iterator k = allListFiles.begin();
|
|
|
|
k != allListFiles.end(); ++k)
|
2000-09-12 13:30:35 +04:00
|
|
|
{
|
2001-02-23 03:24:43 +03:00
|
|
|
cmMakefile* mf = *k;
|
2001-06-04 18:18:03 +04:00
|
|
|
cmMSProjectGenerator* pg = 0;
|
|
|
|
// if not this makefile, then create a new generator
|
|
|
|
if(m_Makefile != mf)
|
|
|
|
{
|
|
|
|
// Create an MS generator with DSW off, so it only creates dsp files
|
|
|
|
pg = new cmMSProjectGenerator;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pg = (cmMSProjectGenerator*)m_Makefile->GetMakefileGenerator();
|
|
|
|
}
|
|
|
|
// make sure the generator is building dsp files
|
2001-02-23 03:24:43 +03:00
|
|
|
pg->BuildDSWOff();
|
|
|
|
mf->SetMakefileGenerator(pg);
|
|
|
|
mf->GenerateMakefile();
|
|
|
|
// Get the source directory from the makefile
|
|
|
|
std::string dir = mf->GetStartDirectory();
|
2000-09-12 13:30:35 +04:00
|
|
|
// Get the home directory with the trailing slash
|
2001-01-05 19:41:20 +03:00
|
|
|
std::string homedir = m_Makefile->GetHomeDirectory();
|
2000-09-12 13:30:35 +04:00
|
|
|
homedir += "/";
|
2001-02-23 03:24:43 +03:00
|
|
|
// remove the home directory and / from the source directory
|
|
|
|
// this gives a relative path
|
2000-09-12 13:30:35 +04:00
|
|
|
cmSystemTools::ReplaceString(dir, homedir.c_str(), "");
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2001-06-06 21:48:13 +04:00
|
|
|
// Get the list of create dsp files names from the cmDSPWriter, more
|
2000-09-12 13:30:35 +04:00
|
|
|
// than one dsp could have been created per input CMakeLists.txt file
|
2001-04-11 22:59:02 +04:00
|
|
|
// for each target
|
2001-06-05 02:24:43 +04:00
|
|
|
std::vector<std::string> dspnames =
|
2001-06-06 21:48:13 +04:00
|
|
|
pg->GetDSPWriter()->GetCreatedProjectNames();
|
|
|
|
cmTargets &tgts = pg->GetDSPWriter()->GetMakefile()->GetTargets();
|
2001-05-04 19:30:46 +04:00
|
|
|
cmTargets::iterator l = tgts.begin();
|
2001-04-11 22:59:02 +04:00
|
|
|
for(std::vector<std::string>::iterator si = dspnames.begin();
|
2001-05-23 20:02:47 +04:00
|
|
|
l != tgts.end(); ++l)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-05-02 00:55:32 +04:00
|
|
|
// special handling for the current makefile
|
|
|
|
if(mf == m_Makefile)
|
|
|
|
{
|
|
|
|
dir = "."; // no subdirectory for project generated
|
|
|
|
// if this is the special ALL_BUILD utility, then
|
|
|
|
// make it depend on every other non UTILITY project.
|
|
|
|
// This is done by adding the names to the GetUtilities
|
|
|
|
// vector on the makefile
|
|
|
|
if(l->first == "ALL_BUILD")
|
|
|
|
{
|
|
|
|
for(std::vector<cmMakefile*>::iterator a = allListFiles.begin();
|
|
|
|
a != allListFiles.end(); ++a)
|
|
|
|
{
|
|
|
|
const cmTargets &atgts = (*a)->GetTargets();
|
|
|
|
for(cmTargets::const_iterator al = atgts.begin();
|
|
|
|
al != atgts.end(); ++al)
|
|
|
|
{
|
2001-05-04 23:50:26 +04:00
|
|
|
if(al->second.IsInAll())
|
2001-05-02 00:55:32 +04:00
|
|
|
{
|
2001-05-04 19:30:46 +04:00
|
|
|
l->second.GetLinkLibraries().push_back(
|
|
|
|
cmTarget::LinkLibraries::value_type(al->first, cmTarget::GENERAL));
|
2001-05-02 00:55:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-09-12 13:30:35 +04:00
|
|
|
// Write the project into the DSW file
|
2001-07-31 19:29:21 +04:00
|
|
|
if ((l->second.GetType() != cmTarget::INSTALL_FILES)
|
|
|
|
&& (l->second.GetType() != cmTarget::INSTALL_PROGRAMS))
|
2001-05-23 20:02:47 +04:00
|
|
|
{
|
|
|
|
this->WriteProject(fout, si->c_str(), dir.c_str(),
|
2001-06-06 21:48:13 +04:00
|
|
|
pg->GetDSPWriter(),l->second);
|
2001-05-23 20:02:47 +04:00
|
|
|
++si;
|
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
2001-02-23 03:24:43 +03:00
|
|
|
// delete the cmMakefile which also deletes the cmMSProjectGenerator
|
2001-05-02 00:55:32 +04:00
|
|
|
if(mf != m_Makefile)
|
|
|
|
{
|
|
|
|
delete mf;
|
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
2000-09-12 13:30:35 +04:00
|
|
|
// Write the footer for the DSW file
|
2000-08-29 23:26:29 +04:00
|
|
|
this->WriteDSWFooter(fout);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-23 03:24:43 +03:00
|
|
|
// Write a dsp file into the DSW file,
|
|
|
|
// Note, that dependencies from executables to
|
|
|
|
// the libraries it uses are also done here
|
2001-06-06 21:48:13 +04:00
|
|
|
void cmDSWWriter::WriteProject(std::ostream& fout,
|
2000-09-12 13:30:35 +04:00
|
|
|
const char* dspname,
|
2000-09-27 23:01:19 +04:00
|
|
|
const char* dir,
|
2001-06-06 21:48:13 +04:00
|
|
|
cmDSPWriter* project,
|
2001-06-07 22:52:29 +04:00
|
|
|
const cmTarget& target
|
2001-05-02 00:55:32 +04:00
|
|
|
)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-02-19 23:13:48 +03:00
|
|
|
fout << "#########################################################"
|
|
|
|
"######################\n\n";
|
2000-08-29 23:26:29 +04:00
|
|
|
fout << "Project: \"" << dspname << "\"="
|
|
|
|
<< dir << "\\" << dspname << ".dsp - Package Owner=<4>\n\n";
|
|
|
|
fout << "Package=<5>\n{{{\n}}}\n\n";
|
|
|
|
fout << "Package=<4>\n";
|
|
|
|
fout << "{{{\n";
|
2001-02-28 00:50:51 +03:00
|
|
|
|
|
|
|
// insert Begin Project Dependency Project_Dep_Name project stuff here
|
2001-04-30 18:44:00 +04:00
|
|
|
cmTarget::LinkLibraries::const_iterator j, jend;
|
2001-06-07 22:52:29 +04:00
|
|
|
j = target.GetLinkLibraries().begin();
|
|
|
|
jend = target.GetLinkLibraries().end();
|
2001-04-27 00:22:53 +04:00
|
|
|
for(;j!= jend; ++j)
|
2000-09-27 23:01:19 +04:00
|
|
|
{
|
2001-04-27 00:22:53 +04:00
|
|
|
if(j->first != dspname)
|
2000-09-27 23:01:19 +04:00
|
|
|
{
|
2001-07-02 23:38:02 +04:00
|
|
|
if (target.GetType() != cmTarget::STATIC_LIBRARY)
|
2001-03-01 01:50:15 +03:00
|
|
|
{
|
2001-04-30 18:44:00 +04:00
|
|
|
// is the library part of this DSW ? If so add dependency
|
|
|
|
const char* cacheValue
|
2001-08-08 19:54:46 +04:00
|
|
|
= m_Makefile->GetDefinition(j->first.c_str());
|
2001-04-30 18:44:00 +04:00
|
|
|
if(cacheValue)
|
|
|
|
{
|
|
|
|
fout << "Begin Project Dependency\n";
|
|
|
|
fout << "Project_Dep_Name " << j->first << "\n";
|
|
|
|
fout << "End Project Dependency\n";
|
|
|
|
}
|
2001-03-01 01:50:15 +03:00
|
|
|
}
|
2000-09-27 23:01:19 +04:00
|
|
|
}
|
|
|
|
}
|
2001-04-27 00:22:53 +04:00
|
|
|
|
2001-06-07 22:52:29 +04:00
|
|
|
std::set<std::string>::const_iterator i, end;
|
2001-03-09 18:53:32 +03:00
|
|
|
// write utility dependencies.
|
2001-06-07 22:52:29 +04:00
|
|
|
i = target.GetUtilities().begin();
|
|
|
|
end = target.GetUtilities().end();
|
2001-03-09 18:53:32 +03:00
|
|
|
for(;i!= end; ++i)
|
|
|
|
{
|
|
|
|
if(*i != dspname)
|
|
|
|
{
|
|
|
|
fout << "Begin Project Dependency\n";
|
|
|
|
fout << "Project_Dep_Name " << *i << "\n";
|
|
|
|
fout << "End Project Dependency\n";
|
|
|
|
}
|
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
fout << "}}}\n\n";
|
|
|
|
}
|
|
|
|
|
2001-02-23 03:24:43 +03:00
|
|
|
// Standard end of dsw file
|
2001-06-06 21:48:13 +04:00
|
|
|
void cmDSWWriter::WriteDSWFooter(std::ostream& fout)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-02-19 23:13:48 +03:00
|
|
|
fout << "######################################################"
|
|
|
|
"#########################\n\n";
|
2000-08-29 23:26:29 +04:00
|
|
|
fout << "Global:\n\n";
|
|
|
|
fout << "Package=<5>\n{{{\n}}}\n\n";
|
|
|
|
fout << "Package=<3>\n{{{\n}}}\n\n";
|
2001-02-19 23:13:48 +03:00
|
|
|
fout << "#####################################################"
|
|
|
|
"##########################\n\n";
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-23 03:24:43 +03:00
|
|
|
// ouput standard header for dsw file
|
2001-06-06 21:48:13 +04:00
|
|
|
void cmDSWWriter::WriteDSWHeader(std::ostream& fout)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
|
|
|
fout << "Microsoft Developer Studio Workspace File, Format Version 6.00\n";
|
|
|
|
fout << "# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\n\n";
|
|
|
|
}
|