CMake/Source/cmConfigureFileCommand.cxx

106 lines
2.5 KiB
C++
Raw Normal View History

2001-04-27 22:25:42 +04:00
/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
2001-04-27 22:25:42 +04:00
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
2001-04-27 22:25:42 +04:00
2002-01-21 23:30:43 +03:00
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.
2001-04-27 22:25:42 +04:00
=========================================================================*/
2001-05-08 02:11:16 +04:00
#include "cmConfigureFileCommand.h"
2001-04-27 22:25:42 +04:00
#include <cmsys/RegularExpression.hxx>
2001-05-08 02:11:16 +04:00
// cmConfigureFileCommand
bool cmConfigureFileCommand::InitialPass(std::vector<std::string> const& args)
2001-04-27 22:25:42 +04:00
{
2001-05-08 02:11:16 +04:00
if(args.size() < 2 )
2001-04-27 22:25:42 +04:00
{
this->SetError("called with incorrect number of arguments, expected 2");
return false;
}
m_InputFile = args[0];
m_OuputFile = args[1];
2001-05-08 02:11:16 +04:00
m_CopyOnly = false;
2001-06-22 19:15:18 +04:00
m_EscapeQuotes = false;
// for CMake 2.0 and earlier CONFIGURE_FILE defaults to the FinalPass,
// after 2.0 it only does InitialPass
m_Immediate = false;
const char* versionValue
= m_Makefile->GetRequiredDefinition("CMAKE_BACKWARDS_COMPATIBILITY");
if (atof(versionValue) > 2.0)
{
m_Immediate = true;
}
m_AtOnly = false;
for(unsigned int i=2;i < args.size();++i)
2001-05-08 02:11:16 +04:00
{
if(args[i] == "COPYONLY")
2001-05-09 17:52:21 +04:00
{
m_CopyOnly = true;
2001-05-09 17:52:21 +04:00
}
else if(args[i] == "ESCAPE_QUOTES")
2001-06-22 19:15:18 +04:00
{
m_EscapeQuotes = true;
2001-06-22 19:15:18 +04:00
}
else if(args[i] == "@ONLY")
{
m_AtOnly = true;
}
else if(args[i] == "IMMEDIATE")
2001-06-22 19:15:18 +04:00
{
m_Immediate = true;
2001-06-22 19:15:18 +04:00
}
2001-05-08 02:11:16 +04:00
}
// If we were told to copy the file immediately, then do it on the
// first pass (now).
if(m_Immediate)
{
if ( !this->ConfigureFile() )
{
this->SetError("Problem configuring file");
return false;
}
}
2001-04-27 22:25:42 +04:00
return true;
}
2001-05-08 02:11:16 +04:00
void cmConfigureFileCommand::FinalPass()
{
if(!m_Immediate)
{
this->ConfigureFile();
}
}
int cmConfigureFileCommand::ConfigureFile()
2001-04-27 22:25:42 +04:00
{
std::string inFile = m_InputFile;
if (!cmSystemTools::FileIsFullPath(inFile.c_str()))
{
inFile = m_Makefile->GetStartDirectory();
inFile += "/";
inFile += m_InputFile;
}
return m_Makefile->ConfigureFile(inFile.c_str(),
m_OuputFile.c_str(),
m_CopyOnly,
m_AtOnly,
m_EscapeQuotes);
2001-04-27 22:25:42 +04:00
}