https://github.com/Kitware/CMake
Revision 655b52af1dbf9f3dcaed0561e55556f65ed85c84 authored by Craig Scott on 28 March 2020, 07:04:58 UTC, committed by Kitware Robot on 28 March 2020, 07:05:10 UTC
c8fd26eb57 Help: Move Ninja Multi-Config variable details into their respective pages

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4532
2 parent s cc86c92 + c8fd26e
Raw File
Tip revision: 655b52af1dbf9f3dcaed0561e55556f65ed85c84 authored by Craig Scott on 28 March 2020, 07:04:58 UTC
Merge topic 'ninja-multi-doc-variable-update'
Tip revision: 655b52a
cmCMakePolicyCommand.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#ifndef cmCMakePolicyCommand_h
#define cmCMakePolicyCommand_h

#include "cmConfigure.h" // IWYU pragma: keep

#include <string>
#include <vector>

class cmExecutionStatus;

/**
 * \brief Set how CMake should handle policies
 *
 * cmCMakePolicyCommand sets how CMake should deal with backwards
 * compatibility policies.
 */
bool cmCMakePolicyCommand(std::vector<std::string> const& args,
                          cmExecutionStatus& status);

#endif
back to top