12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /*=========================================================================
- 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& args)
- {
- if(args.size() < 2 )
- {
- this->SetError("called with incorrect number of arguments");
- return false;
- }
- std::string message;
- std::vector<std::string>::const_iterator i = args.begin();
- std::string fileName = *i;
- bool overwrite = true;
- i++;
- for(;i != args.end(); ++i)
- {
- if ( *i == "APPEND" )
- {
- overwrite = false;
- }
- else
- {
- message += *i;
- }
- }
- std::string dir = cmSystemTools::GetFilenamePath(fileName);
- cmSystemTools::MakeDirectory(dir.c_str());
- std::ofstream file(fileName.c_str(), overwrite?std::ios::out : std::ios::app);
- if ( !file )
- {
- std::string error = "Internal CMake error when trying to open file: ";
- error += fileName.c_str();
- this->SetError(error.c_str());
- return false;
- }
- file << message << std::endl;
- file.close();
- return true;
- }
|