swh:1:snp:3cba5856b0ddc3feab6c3c2d096d614b02c883ec
Raw File
Tip revision: 81e27967d9e44dfdde5ff2c8ca2b002a1595fa30 authored by Brad King on 02 November 2020, 14:43:28 UTC
Merge topic 'FindBoost-config-mode' into release-3.19
Tip revision: 81e2796
cmSetCommand.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 Set a CMAKE variable
 *
 * cmSetCommand sets a variable to a value with expansion.
 */
bool cmSetCommand(std::vector<std::string> const& args,
                  cmExecutionStatus& status);
back to top