2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-02-19 23:25:27 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-02-19 23:25:27 +03:00
|
|
|
|
2009-09-28 19: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 23:25:27 +03:00
|
|
|
#ifndef cmInstallGenerator_h
|
|
|
|
#define cmInstallGenerator_h
|
|
|
|
|
2012-02-27 20:26:38 +04:00
|
|
|
#include "cmInstallType.h"
|
2009-03-16 17:39:56 +03:00
|
|
|
#include "cmScriptGenerator.h"
|
2006-02-19 23:25:27 +03:00
|
|
|
|
|
|
|
class cmLocalGenerator;
|
2014-06-24 19:18:43 +04:00
|
|
|
class cmMakefile;
|
2006-02-19 23:25:27 +03:00
|
|
|
|
|
|
|
/** \class cmInstallGenerator
|
|
|
|
* \brief Support class for generating install scripts.
|
|
|
|
*
|
|
|
|
*/
|
2009-03-16 17:39:56 +03:00
|
|
|
class cmInstallGenerator: public cmScriptGenerator
|
2006-02-19 23:25:27 +03:00
|
|
|
{
|
|
|
|
public:
|
2014-06-24 18:45:07 +04:00
|
|
|
enum MessageLevel
|
|
|
|
{
|
|
|
|
MessageDefault,
|
2014-06-24 19:18:43 +04:00
|
|
|
MessageAlways,
|
|
|
|
MessageLazy,
|
|
|
|
MessageNever
|
2014-06-24 18:45:07 +04:00
|
|
|
};
|
|
|
|
|
2007-07-02 22:56:57 +04:00
|
|
|
cmInstallGenerator(const char* destination,
|
|
|
|
std::vector<std::string> const& configurations,
|
2014-06-24 18:45:07 +04:00
|
|
|
const char* component,
|
|
|
|
MessageLevel message);
|
2006-02-19 23:25:27 +03:00
|
|
|
virtual ~cmInstallGenerator();
|
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
void AddInstallRule(
|
2015-02-11 19:48:13 +03:00
|
|
|
std::ostream& os,
|
|
|
|
std::string const& dest,
|
|
|
|
cmInstallType type,
|
2007-06-29 00:11:18 +04:00
|
|
|
std::vector<std::string> const& files,
|
|
|
|
bool optional = false,
|
2006-08-17 22:48:54 +04:00
|
|
|
const char* permissions_file = 0,
|
|
|
|
const char* permissions_dir = 0,
|
2006-08-22 00:55:03 +04:00
|
|
|
const char* rename = 0,
|
2007-07-02 19:02:52 +04:00
|
|
|
const char* literal_args = 0,
|
2009-03-16 17:39:56 +03:00
|
|
|
Indent const& indent = Indent()
|
2006-05-05 22:57:19 +04:00
|
|
|
);
|
2006-02-19 23:25:27 +03:00
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
/** Get the install destination as it should appear in the
|
|
|
|
installation script. */
|
2015-02-11 19:48:02 +03:00
|
|
|
std::string ConvertToAbsoluteDestination(std::string const& dest) const;
|
2008-01-28 16:38:36 +03:00
|
|
|
|
|
|
|
/** Test if this generator installs something for a given configuration. */
|
2014-02-10 07:48:34 +04:00
|
|
|
bool InstallsForConfig(const std::string& config);
|
2008-01-28 16:38:36 +03:00
|
|
|
|
2014-06-24 19:40:26 +04:00
|
|
|
/** Select message level from CMAKE_INSTALL_MESSAGE or 'never'. */
|
|
|
|
static MessageLevel SelectMessageLevel(cmMakefile* mf, bool never = false);
|
2014-06-24 19:18:43 +04:00
|
|
|
|
2015-07-28 20:49:16 +03:00
|
|
|
virtual void Compute(cmLocalGenerator*) {}
|
|
|
|
|
2006-02-19 23:25:27 +03:00
|
|
|
protected:
|
2007-07-02 22:56:57 +04:00
|
|
|
virtual void GenerateScript(std::ostream& os);
|
2006-02-19 23:25:27 +03:00
|
|
|
|
2007-07-02 22:56:57 +04:00
|
|
|
std::string CreateComponentTest(const char* component);
|
|
|
|
|
|
|
|
// Information shared by most generator types.
|
|
|
|
std::string Destination;
|
|
|
|
std::string Component;
|
2014-06-24 18:45:07 +04:00
|
|
|
MessageLevel Message;
|
2006-02-19 23:25:27 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|