2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-02-23 18:40:13 +03:00
|
|
|
#ifndef cmCommands_h
|
|
|
|
#define cmCommands_h
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-08-18 01:24:24 +03:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
2001-02-23 18:40:13 +03:00
|
|
|
|
2015-04-12 03:44:41 +03:00
|
|
|
#include <vector>
|
2015-01-12 23:17:55 +03:00
|
|
|
|
2001-02-23 18:40:13 +03:00
|
|
|
class cmCommand;
|
|
|
|
/**
|
|
|
|
* Global function to return all compiled in commands.
|
2013-06-14 16:35:52 +04:00
|
|
|
* To add a new command edit cmCommands.cxx or cmBootstrapCommands[12].cxx
|
2005-01-21 18:27:51 +03:00
|
|
|
* and add your command.
|
2001-02-23 18:40:13 +03:00
|
|
|
* It is up to the caller to delete the commands created by this
|
|
|
|
* call.
|
|
|
|
*/
|
2015-04-12 03:44:41 +03:00
|
|
|
void GetBootstrapCommands1(std::vector<cmCommand*>& commands);
|
|
|
|
void GetBootstrapCommands2(std::vector<cmCommand*>& commands);
|
|
|
|
void GetPredefinedCommands(std::vector<cmCommand*>& commands);
|
2001-02-23 18:40:13 +03:00
|
|
|
|
|
|
|
#endif
|