2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-02-19 18:47:13 -05:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-02-19 18:47:13 -05:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2006-02-19 18:47:13 -05:00
|
|
|
#include "cmInstallFilesGenerator.h"
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmInstallFilesGenerator
|
|
|
|
::cmInstallFilesGenerator(std::vector<std::string> const& files,
|
2006-03-03 18:44:32 -05:00
|
|
|
const char* dest, bool programs,
|
2006-08-17 14:48:54 -04:00
|
|
|
const char* file_permissions,
|
2006-05-05 14:57:19 -04:00
|
|
|
std::vector<std::string> const& configurations,
|
2006-03-30 13:33:48 -05:00
|
|
|
const char* component,
|
2006-10-05 11:31:57 -04:00
|
|
|
const char* rename,
|
|
|
|
bool optional):
|
2007-07-02 14:56:57 -04:00
|
|
|
cmInstallGenerator(dest, configurations, component),
|
|
|
|
Files(files), Programs(programs),
|
|
|
|
FilePermissions(file_permissions),
|
|
|
|
Rename(rename), Optional(optional)
|
2006-02-19 18:47:13 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmInstallFilesGenerator
|
|
|
|
::~cmInstallFilesGenerator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2007-07-02 14:56:57 -04:00
|
|
|
void cmInstallFilesGenerator::GenerateScriptActions(std::ostream& os,
|
|
|
|
Indent const& indent)
|
2006-02-19 18:47:13 -05:00
|
|
|
{
|
|
|
|
// Write code to install the files.
|
2007-06-28 16:11:18 -04:00
|
|
|
const char* no_dir_permissions = 0;
|
2008-01-28 08:38:36 -05:00
|
|
|
this->AddInstallRule(os,
|
2007-06-28 16:11:18 -04:00
|
|
|
(this->Programs
|
2012-02-27 11:26:38 -05:00
|
|
|
? cmInstallType_PROGRAMS
|
|
|
|
: cmInstallType_FILES),
|
2007-06-28 16:11:18 -04:00
|
|
|
this->Files,
|
2009-04-27 13:20:57 -04:00
|
|
|
this->Optional,
|
2007-06-28 16:11:18 -04:00
|
|
|
this->FilePermissions.c_str(), no_dir_permissions,
|
2007-07-02 14:56:57 -04:00
|
|
|
this->Rename.c_str(), 0, indent);
|
2006-02-19 18:47:13 -05:00
|
|
|
}
|