diff options
author | Brad King <brad.king@kitware.com> | 2021-01-11 09:58:55 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-01-28 12:47:58 -0500 |
commit | e32818dd76879d43b4cd84f7f72cd3f83dbecbd6 (patch) | |
tree | 00158c6f94bdc4b736e2ee91b6ad8a0daa23b138 /Source/cmInstallExportGenerator.cxx | |
parent | eea61268e6f755e70a91770f7f512e29bc6a288c (diff) | |
download | cmake-e32818dd76879d43b4cd84f7f72cd3f83dbecbd6.tar.gz |
cmInstallGenerator: Add backtrace to all install generators
Diffstat (limited to 'Source/cmInstallExportGenerator.cxx')
-rw-r--r-- | Source/cmInstallExportGenerator.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmInstallExportGenerator.cxx b/Source/cmInstallExportGenerator.cxx index 3683adae8b..fdc3f8c1a3 100644 --- a/Source/cmInstallExportGenerator.cxx +++ b/Source/cmInstallExportGenerator.cxx @@ -23,9 +23,10 @@ cmInstallExportGenerator::cmInstallExportGenerator( cmExportSet* exportSet, std::string const& destination, std::string file_permissions, std::vector<std::string> const& configurations, std::string const& component, MessageLevel message, bool exclude_from_all, - std::string filename, std::string name_space, bool exportOld, bool android) + std::string filename, std::string name_space, bool exportOld, bool android, + cmListFileBacktrace backtrace) : cmInstallGenerator(destination, configurations, component, message, - exclude_from_all) + exclude_from_all, std::move(backtrace)) , ExportSet(exportSet) , FilePermissions(std::move(file_permissions)) , FileName(std::move(filename)) |