summaryrefslogtreecommitdiffstats
path: root/Source/cmcmd.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-06-08 21:58:33 (GMT)
committerBrad King <brad.king@kitware.com>2021-06-09 14:09:58 (GMT)
commit7291f312545d4a22339a4f9763ea61e16507c8a3 (patch)
treec9ec37b15c1ef0304e7af23a600d58eb8b163471 /Source/cmcmd.cxx
parenta6de8ec51b5afdef747e0dfd8f5d67e2b92429c0 (diff)
downloadCMake-7291f312545d4a22339a4f9763ea61e16507c8a3.zip
CMake-7291f312545d4a22339a4f9763ea61e16507c8a3.tar.gz
CMake-7291f312545d4a22339a4f9763ea61e16507c8a3.tar.bz2
cmTransformDepfile: Add support for MSBuild AdditionalInputs format
Diffstat (limited to 'Source/cmcmd.cxx')
-rw-r--r--Source/cmcmd.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmcmd.cxx b/Source/cmcmd.cxx
index 84ac189..1f4c0b8 100644
--- a/Source/cmcmd.cxx
+++ b/Source/cmcmd.cxx
@@ -1531,6 +1531,8 @@ int cmcmd::ExecuteCMakeCommand(std::vector<std::string> const& args,
format = cmDepfileFormat::GccDepfile;
} else if (args[3] == "makedepfile") {
format = cmDepfileFormat::MakeDepfile;
+ } else if (args[3] == "MSBuildAdditionalInputs") {
+ format = cmDepfileFormat::MSBuildAdditionalInputs;
} else {
return 1;
}