mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 05:38:24 -05:00
253aff6c94
This MR extend the support of 'DEPFILE' to buildsystem version 1. Issue: #20286
18 lines
433 B
C++
18 lines
433 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 <string>
|
|
|
|
enum class cmDepfileFormat
|
|
{
|
|
GccDepfile,
|
|
VsTlog,
|
|
MakeDepfile
|
|
};
|
|
|
|
class cmLocalGenerator;
|
|
|
|
bool cmTransformDepfile(cmDepfileFormat format, const cmLocalGenerator& lg,
|
|
const std::string& infile, const std::string& outfile);
|