https://github.com/Kitware/CMake
Revision a218d67f500614ddd6a2ddcf9f55ad964243673f authored by Brad King on 11 August 2020, 12:56:52 UTC, committed by Kitware Robot on 11 August 2020, 12:57:00 UTC
491dddfbde Bootstrap: Add support for Ninja

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3652
2 parent s 3fb9e3c + 491dddf
Raw File
Tip revision: a218d67f500614ddd6a2ddcf9f55ad964243673f authored by Brad King on 11 August 2020, 12:56:52 UTC
Merge topic 'bootstrap-ninja'
Tip revision: a218d67
cmProjectCommand.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#ifndef cmProjectCommand_h
#define cmProjectCommand_h

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

#include <string>
#include <vector>

class cmExecutionStatus;

bool cmProjectCommand(std::vector<std::string> const& args,
                      cmExecutionStatus& status);

#endif
back to top