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