blob: 968ebc7fa516162caf6a3ee1ff9a2a118d67d865 [file] [log] [blame]
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#pragma once
#include <string>
#include <cm/optional>
#include "cmGccDepfileReaderTypes.h"
enum class GccDepfilePrependPaths
{
All,
Deps,
};
/*
* Read dependencies file and prepend prefix to all relative paths
*/
cm::optional<cmGccDepfileContent> cmReadGccDepfile(
char const* filePath, std::string const& prefix = {},
GccDepfilePrependPaths prependPaths = GccDepfilePrependPaths::All);