https://github.com/Kitware/CMake
Raw File
Tip revision: 9f72ac36440c6c83a35958037fff258259f4ba28 authored by Brad King on 03 June 2024, 17:32:21 UTC
CMake 3.28.6
Tip revision: 9f72ac3
cmRemoveCommand.h
/* 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 remove command
 *
 * cmRemoveCommand implements the remove CMake command
 */
bool cmRemoveCommand(std::vector<std::string> const& args,
                     cmExecutionStatus& status);
back to top