~ubuntu-branches/ubuntu/quantal/cmake/quantal

« back to all changes in this revision

Viewing changes to Source/cmSetSourceFilesPropertiesCommand.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2012-04-30 12:14:32 UTC
  • mfrom: (3.1.30 sid)
  • Revision ID: package-import@ubuntu.com-20120430121432-rqh2fjl3zcblehh5
Tags: 2.8.8-2ubuntu1
* Merge from Debian unstable, remaining changes:
  - Add xfail_compiler_flag.diff: Mark compiler flag tests as expected
    failures.
  - Add ubuntu_qt_import_dir_variable.diff: define QT_IMPORTS_DIR even
    when that dir does not exist.
* Remove increase_ctest_test_timeout.diff, merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
  /**
33
33
   * The name of the command as specified in CMakeList.txt.
34
34
   */
35
 
  virtual const char* GetName() { return "set_source_files_properties";}
 
35
  virtual const char* GetName() const { return "set_source_files_properties";}
36
36
 
37
37
  /**
38
38
   * Succinct documentation.
39
39
   */
40
 
  virtual const char* GetTerseDocumentation() 
 
40
  virtual const char* GetTerseDocumentation() const
41
41
    {
42
42
    return "Source files can have properties that affect how they are built.";
43
43
    }
45
45
  /**
46
46
   * Longer documentation.
47
47
   */
48
 
  virtual const char* GetFullDocumentation()
 
48
  virtual const char* GetFullDocumentation() const
49
49
    {
50
50
      return
51
51
        "  set_source_files_properties([file1 [file2 [...]]]\n"