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

« back to all changes in this revision

Viewing changes to Source/cmIncludeExternalMSProjectCommand.h

  • Committer: Bazaar Package Importer
  • Author(s): A. Maitland Bottoms
  • Date: 2005-03-02 09:22:44 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050302092244-y6o9j8wr27vqcqvx
Tags: 2.0.5-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*=========================================================================
 
2
 
 
3
  Program:   CMake - Cross-Platform Makefile Generator
 
4
  Module:    $RCSfile: cmIncludeExternalMSProjectCommand.h,v $
 
5
  Language:  C++
 
6
  Date:      $Date: 2003/08/10 22:30:53 $
 
7
  Version:   $Revision: 1.5 $
 
8
 
 
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.
 
11
 
 
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.
 
15
 
 
16
=========================================================================*/
1
17
#ifndef cmIncludeExternalMSProjectCommand_h
2
18
#define cmIncludeExternalMSProjectCommand_h
3
19
 
4
 
#include "cmStandardIncludes.h"
5
20
#include "cmCommand.h"
6
21
 
7
22
/** \class cmIncludeExternalMSProjectCommand
47
62
  virtual const char* GetFullDocumentation()
48
63
    {
49
64
    return
50
 
      "INCLUDE_EXTERNAL_MSPROJECT(projectname location dep1 dep2 ...) Includes an external Microsoft project in the workspace file. Does nothing on UNIX currently\n";
 
65
      "  INCLUDE_EXTERNAL_MSPROJECT(projectname location\n"
 
66
      "                             dep1 dep2 ...)\n"
 
67
      "Includes an external Microsoft project in the generated workspace "
 
68
      "file.  Currently does nothing on UNIX.";
51
69
    }
52
70
  
53
71
  cmTypeMacro(cmIncludeExternalMSProjectCommand, cmCommand);