2006-02-20 02:47:13 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
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 "cmInstallFilesGenerator.h"
|
|
|
|
|
|
|
|
#include "cmTarget.h"
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmInstallFilesGenerator
|
|
|
|
::cmInstallFilesGenerator(std::vector<std::string> const& files,
|
2006-03-04 02:44:32 +03:00
|
|
|
const char* dest, bool programs,
|
2006-08-17 22:48:54 +04:00
|
|
|
const char* file_permissions,
|
2006-05-05 22:57:19 +04:00
|
|
|
std::vector<std::string> const& configurations,
|
2006-03-30 22:33:48 +04:00
|
|
|
const char* component,
|
2006-10-05 19:31:57 +04:00
|
|
|
const char* rename,
|
|
|
|
bool optional):
|
2006-03-04 02:44:32 +03:00
|
|
|
Files(files), Destination(dest), Programs(programs),
|
2006-08-17 22:48:54 +04:00
|
|
|
FilePermissions(file_permissions), Configurations(configurations),
|
2006-10-05 19:31:57 +04:00
|
|
|
Component(component), Rename(rename), Optional(optional)
|
2006-02-20 02:47:13 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmInstallFilesGenerator
|
|
|
|
::~cmInstallFilesGenerator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmInstallFilesGenerator::GenerateScript(std::ostream& os)
|
|
|
|
{
|
|
|
|
// Write code to install the files.
|
|
|
|
for(std::vector<std::string>::const_iterator fi = this->Files.begin();
|
|
|
|
fi != this->Files.end(); ++fi)
|
|
|
|
{
|
2006-03-04 02:44:32 +03:00
|
|
|
const char* no_properties = 0;
|
2006-08-17 22:48:54 +04:00
|
|
|
const char* no_dir_permissions = 0;
|
2006-02-20 02:47:13 +03:00
|
|
|
this->AddInstallRule(os, this->Destination.c_str(),
|
|
|
|
(this->Programs
|
|
|
|
? cmTarget::INSTALL_PROGRAMS
|
2006-03-04 02:44:32 +03:00
|
|
|
: cmTarget::INSTALL_FILES), fi->c_str(),
|
2006-10-05 19:31:57 +04:00
|
|
|
this->Optional, no_properties,
|
2006-08-17 22:48:54 +04:00
|
|
|
this->FilePermissions.c_str(), no_dir_permissions,
|
2006-05-05 22:57:19 +04:00
|
|
|
this->Configurations,
|
2006-03-30 22:33:48 +04:00
|
|
|
this->Component.c_str(),
|
|
|
|
this->Rename.c_str());
|
2006-02-20 02:47:13 +03:00
|
|
|
}
|
|
|
|
}
|