cmake/Source/cmCommands.h

23 lines
708 B
C
Raw Normal View History

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. */
#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
2015-08-17 11:37:30 +02:00
#include <vector>
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
* 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);
#endif