2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2006-02-10 14:11:12 -05:00
|
|
|
#ifndef cmListCommand_h
|
|
|
|
#define cmListCommand_h
|
|
|
|
|
2017-08-25 20:39:02 +02:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2017-04-11 21:42:35 +02:00
|
|
|
|
2016-10-25 20:35:04 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class cmExecutionStatus;
|
|
|
|
|
2019-08-04 14:42:52 +02:00
|
|
|
/**
|
2006-02-10 14:11:12 -05:00
|
|
|
* \brief Common list operations
|
|
|
|
*
|
|
|
|
*/
|
2019-08-04 14:42:52 +02:00
|
|
|
bool cmListCommand(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus& status);
|
2006-02-10 14:11:12 -05:00
|
|
|
|
|
|
|
#endif
|