~ubuntu-branches/ubuntu/jaunty/cmake/jaunty-security

« back to all changes in this revision

Viewing changes to Source/cmInstallFilesCommand.h

  • Committer: Bazaar Package Importer
  • Author(s): A. Maitland Bottoms
  • Date: 2006-06-18 16:34:11 UTC
  • mfrom: (1.4.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060618163411-pi234s3v6jwlcmof
Tags: 2.4.2-1
* New upstream release (Closes: #338324)
* Put cmake .vim files into /usr/share/vim/addons/plugin/
  where they can be used. (Closes: #366663)
* Install cmake-mode.el so it can be used. (Closes: #366664)
* Ensure cmake FindKDE locates KDE libraries on Debian
  based distributions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  Program:   CMake - Cross-Platform Makefile Generator
4
4
  Module:    $RCSfile: cmInstallFilesCommand.h,v $
5
5
  Language:  C++
6
 
  Date:      $Date: 2005/11/23 17:33:38 $
7
 
  Version:   $Revision: 1.13.2.1 $
 
6
  Date:      $Date: 2006/03/15 16:02:04 $
 
7
  Version:   $Revision: 1.16 $
8
8
 
9
9
  Copyright (c) 2002 Kitware, Inc., Insight Consortium.  All rights reserved.
10
10
  See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
52
52
   */
53
53
  virtual const char* GetTerseDocumentation() 
54
54
    {
55
 
    return "Create install rules for files.";
 
55
    return "Old installation command.  Use the INSTALL command.";
56
56
    }
57
57
  
58
58
  /**
69
69
  virtual const char* GetFullDocumentation()
70
70
    {
71
71
    return
72
 
      "  INSTALL_FILES(<dir> extension file file ...)\n"      
 
72
      "This command has been superceded by the INSTALL command.  It "
 
73
      "is provided for compatibility with older CMake code.  "
 
74
      "The FILES form is directly replaced by the FILES form of the "
 
75
      "INSTALL command.  The regexp form can be expressed "
 
76
      "more clearly using the GLOB form of the FILE command.\n"
 
77
      "  INSTALL_FILES(<dir> extension file file ...)\n"
73
78
      "Create rules to install the listed files with the given extension "
74
79
      "into the given directory.  "
75
80
      "Only files existing in the current source tree or its corresponding "
95
100
  std::string FindInstallSource(const char* name) const;
96
101
  
97
102
 private:
98
 
  std::string m_TargetName;
99
 
  std::vector<std::string> m_FinalArgs;
100
 
  bool m_IsFilesForm;
 
103
  std::string TargetName;
 
104
  std::vector<std::string> FinalArgs;
 
105
  bool IsFilesForm;
101
106
};
102
107
 
103
108