CMake/Source/cmWriteFileCommand.cxx

61 lines
1.6 KiB
C++
Raw Normal View History

/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
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.
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 "cmWriteFileCommand.h"
// cmLibraryCommand
bool cmWriteFileCommand::InitialPass(std::vector<std::string> const& argsIn)
{
if(argsIn.size() < 2 )
{
this->SetError("called with incorrect number of arguments");
return false;
}
std::vector<std::string> args;
cmSystemTools::ExpandListArguments(argsIn, args);
std::string message;
std::vector<std::string>::const_iterator i = args.begin();
std::string fileName = *i;
2002-10-29 21:32:37 +03:00
bool overwrite = true;
i++;
for(;i != args.end(); ++i)
{
2002-10-29 21:32:37 +03:00
if ( *i == "APPEND" )
{
overwrite = false;
}
else
{
message += *i;
}
}
2002-10-29 21:32:37 +03:00
std::ofstream file(fileName.c_str(), overwrite?std::ios::out : std::ios::app);
if ( !file )
{
cmSystemTools::Error("Internal CMake error when trying to open file: ",
fileName.c_str());
return false;
}
2002-09-21 15:29:39 +04:00
file << message << std::endl;
file.close();
return true;
}