1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmCommands.h,v $
6 Date: $Date: 2005/01/21 15:27:51 $
7 Version: $Revision: 1.6 $
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.
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.
16 =========================================================================*/
19 #include "cmStandardIncludes.h"
23 * Global function to return all compiled in commands.
24 * To add a new command edit cmCommands.cxx or cmBootstrapCommands.cxx
25 * and add your command.
26 * It is up to the caller to delete the commands created by this
29 void GetBootstrapCommands(std::list
<cmCommand
*>& commands
);
30 void GetPredefinedCommands(std::list
<cmCommand
*>& commands
);