summaryrefslogtreecommitdiff
path: root/include/clang/Frontend/DependencyOutputOptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/Frontend/DependencyOutputOptions.h')
-rw-r--r--include/clang/Frontend/DependencyOutputOptions.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/clang/Frontend/DependencyOutputOptions.h b/include/clang/Frontend/DependencyOutputOptions.h
index 1e22c227fcea2..83976c36048ff 100644
--- a/include/clang/Frontend/DependencyOutputOptions.h
+++ b/include/clang/Frontend/DependencyOutputOptions.h
@@ -25,7 +25,7 @@ public:
/// dependency, which can avoid some 'make'
/// problems.
unsigned AddMissingHeaderDeps : 1; ///< Add missing headers to dependency list
-
+
/// The file to write dependency output to.
std::string OutputFile;
@@ -39,6 +39,9 @@ public:
/// must contain at least one entry.
std::vector<std::string> Targets;
+ /// \brief The file to write GraphViz-formatted header dependencies to.
+ std::string DOTOutputFile;
+
public:
DependencyOutputOptions() {
IncludeSystemHeaders = 0;