diff options
author | Brad King <brad.king@kitware.com> | 2007-07-02 18:56:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-07-02 18:56:57 (GMT) |
commit | 7f29f8966d672a2f8ef50b2249f6d826d1702bdc (patch) | |
tree | 3508ba83985e80094c6f68518dc49cdf6f9f910c /Source/cmInstallFilesGenerator.h | |
parent | fda7753f5ccac7ed2d3c9822e55cebd42c4467d2 (diff) | |
download | CMake-7f29f8966d672a2f8ef50b2249f6d826d1702bdc.zip CMake-7f29f8966d672a2f8ef50b2249f6d826d1702bdc.tar.gz CMake-7f29f8966d672a2f8ef50b2249f6d826d1702bdc.tar.bz2 |
ENH: Further cleanup of installation script generation. The per-component and per-configuration testing is now done in cmake code instead of in the FILE(INSTALL) command. The generation of the cmake code to do these tests is centralized in cmInstallGenerator. Old-style shared library versioning and component/config support code has been removed from FILE(INSTALL). This commit is surrounded by the tags CMake-InstallGeneratorCleanup2-pre and CMake-InstallGeneratorCleanup2-post.
Diffstat (limited to 'Source/cmInstallFilesGenerator.h')
-rw-r--r-- | Source/cmInstallFilesGenerator.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmInstallFilesGenerator.h b/Source/cmInstallFilesGenerator.h index bf672a3..d8a740d 100644 --- a/Source/cmInstallFilesGenerator.h +++ b/Source/cmInstallFilesGenerator.h @@ -35,12 +35,11 @@ public: virtual ~cmInstallFilesGenerator(); protected: - virtual void GenerateScript(std::ostream& os); + typedef cmInstallGeneratorIndent Indent; + virtual void GenerateScriptActions(std::ostream& os, Indent const& indent); std::vector<std::string> Files; bool Programs; std::string FilePermissions; - std::vector<std::string> Configurations; - std::string Component; std::string Rename; bool Optional; }; |