summaryrefslogtreecommitdiffstats
path: root/Source/cmCustomCommandGenerator.h
diff options
context:
space:
mode:
authorKyle Edwards <kyle.edwards@kitware.com>2020-10-05 16:15:17 (GMT)
committerKyle Edwards <kyle.edwards@kitware.com>2020-10-13 14:18:02 (GMT)
commit596439b1bbac44b4218f65615d93e9fe9bd43922 (patch)
treec009f1f22251d78a23a9ba8effc8b0dfd66d9773 /Source/cmCustomCommandGenerator.h
parentb2c14bc7749c21b8a994ce1d9f4e736f712481b9 (diff)
downloadCMake-596439b1bbac44b4218f65615d93e9fe9bd43922.zip
CMake-596439b1bbac44b4218f65615d93e9fe9bd43922.tar.gz
CMake-596439b1bbac44b4218f65615d93e9fe9bd43922.tar.bz2
cmCustomCommandGenerator: Add option to transform depfile
Diffstat (limited to 'Source/cmCustomCommandGenerator.h')
-rw-r--r--Source/cmCustomCommandGenerator.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmCustomCommandGenerator.h b/Source/cmCustomCommandGenerator.h
index 412eba8..8b5259d 100644
--- a/Source/cmCustomCommandGenerator.h
+++ b/Source/cmCustomCommandGenerator.h
@@ -31,7 +31,7 @@ class cmCustomCommandGenerator
public:
cmCustomCommandGenerator(cmCustomCommand const& cc, std::string config,
- cmLocalGenerator* lg);
+ cmLocalGenerator* lg, bool transformDepfile = true);
cmCustomCommandGenerator(const cmCustomCommandGenerator&) = delete;
cmCustomCommandGenerator& operator=(const cmCustomCommandGenerator&) =
delete;
@@ -45,4 +45,6 @@ public:
std::vector<std::string> const& GetByproducts() const;
std::vector<std::string> const& GetDepends() const;
bool HasOnlyEmptyCommandLines() const;
+ std::string GetFullDepfile() const;
+ std::string GetInternalDepfile() const;
};