summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallDirectoryGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-01-11 14:58:55 (GMT)
committerBrad King <brad.king@kitware.com>2021-01-28 17:47:58 (GMT)
commite32818dd76879d43b4cd84f7f72cd3f83dbecbd6 (patch)
tree00158c6f94bdc4b736e2ee91b6ad8a0daa23b138 /Source/cmInstallDirectoryGenerator.h
parenteea61268e6f755e70a91770f7f512e29bc6a288c (diff)
downloadCMake-e32818dd76879d43b4cd84f7f72cd3f83dbecbd6.zip
CMake-e32818dd76879d43b4cd84f7f72cd3f83dbecbd6.tar.gz
CMake-e32818dd76879d43b4cd84f7f72cd3f83dbecbd6.tar.bz2
cmInstallGenerator: Add backtrace to all install generators
Diffstat (limited to 'Source/cmInstallDirectoryGenerator.h')
-rw-r--r--Source/cmInstallDirectoryGenerator.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/Source/cmInstallDirectoryGenerator.h b/Source/cmInstallDirectoryGenerator.h
index 7c707bd..0f91a59 100644
--- a/Source/cmInstallDirectoryGenerator.h
+++ b/Source/cmInstallDirectoryGenerator.h
@@ -9,6 +9,7 @@
#include <vector>
#include "cmInstallGenerator.h"
+#include "cmListFileCache.h"
#include "cmScriptGenerator.h"
class cmLocalGenerator;
@@ -19,14 +20,12 @@ class cmLocalGenerator;
class cmInstallDirectoryGenerator : public cmInstallGenerator
{
public:
- cmInstallDirectoryGenerator(std::vector<std::string> const& dirs,
- std::string const& dest,
- std::string file_permissions,
- std::string dir_permissions,
- std::vector<std::string> const& configurations,
- std::string const& component,
- MessageLevel message, bool exclude_from_all,
- std::string literal_args, bool optional = false);
+ cmInstallDirectoryGenerator(
+ std::vector<std::string> const& dirs, std::string const& dest,
+ std::string file_permissions, std::string dir_permissions,
+ std::vector<std::string> const& configurations,
+ std::string const& component, MessageLevel message, bool exclude_from_all,
+ std::string literal_args, bool optional, cmListFileBacktrace backtrace);
~cmInstallDirectoryGenerator() override;
bool Compute(cmLocalGenerator* lg) override;