mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-05 22:02:10 +08:00

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
14 lines
379 B
C++
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);
|