diff options
Diffstat (limited to 'Source/cmUnsetCommand.h')
-rw-r--r-- | Source/cmUnsetCommand.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Source/cmUnsetCommand.h b/Source/cmUnsetCommand.h new file mode 100644 index 0000000..3faa053 --- /dev/null +++ b/Source/cmUnsetCommand.h @@ -0,0 +1,18 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#pragma once + +#include "cmConfigure.h" // IWYU pragma: keep + +#include <string> +#include <vector> + +class cmExecutionStatus; + +/** + * \brief Unset a CMAKE variable + * + * cmUnsetCommand unsets or removes a variable. + */ +bool cmUnsetCommand(std::vector<std::string> const& args, + cmExecutionStatus& status); |