mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
Fix some of the semantics of the depfile, add error handling, and refactor cmGccDepfileLexerHelper.
10 lines
298 B
C
10 lines
298 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 <cm/optional>
|
|
|
|
#include "cmGccDepfileReaderTypes.h"
|
|
|
|
cm::optional<cmGccDepfileContent> cmReadGccDepfile(const char* filePath);
|