1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmInstallFilesGenerator.h,v $
6 Date: $Date: 2008-12-18 15:06:09 $
7 Version: $Revision: 1.9 $
9 Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
10 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
17 #ifndef cmInstallFilesGenerator_h
18 #define cmInstallFilesGenerator_h
20 #include "cmInstallGenerator.h"
22 /** \class cmInstallFilesGenerator
23 * \brief Generate file installation rules.
25 class cmInstallFilesGenerator
: public cmInstallGenerator
28 cmInstallFilesGenerator(std::vector
<std::string
> const& files
,
29 const char* dest
, bool programs
,
30 const char* file_permissions
,
31 std::vector
<std::string
> const& configurations
,
32 const char* component
,
34 bool optional
= false);
35 virtual ~cmInstallFilesGenerator();
38 virtual void GenerateScriptActions(std::ostream
& os
, Indent
const& indent
);
39 std::vector
<std::string
> Files
;
41 std::string FilePermissions
;