1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-05 22:02:10 +08:00
CMake/Source/cmFileAPICommand.h
Craig Scott 99b2ccf80d cmake_file_api: New project command
Projects can use the new command to request file API replies for the current
run. No query files are generated, the query is tracked internally. Replies are
created in the file system at generation time in the usual way.

Fixes: #24951
2023-06-05 06:20:50 -04:00

14 lines
379 B
C++

/* 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;
bool cmFileAPICommand(std::vector<std::string> const& args,
cmExecutionStatus& status);