summaryrefslogtreecommitdiffstats
path: root/Source/cmTransformDepfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmTransformDepfile.h')
-rw-r--r--Source/cmTransformDepfile.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Source/cmTransformDepfile.h b/Source/cmTransformDepfile.h
new file mode 100644
index 0000000..792c1aa
--- /dev/null
+++ b/Source/cmTransformDepfile.h
@@ -0,0 +1,14 @@
+/* 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,
+};
+
+bool cmTransformDepfile(cmDepfileFormat format, const std::string& prefix,
+ const std::string& infile, const std::string& outfile);