summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallSubdirectoryGenerator.cxx
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/cmInstallSubdirectoryGenerator.cxx
parenteea61268e6f755e70a91770f7f512e29bc6a288c (diff)
downloadCMake-e32818dd76879d43b4cd84f7f72cd3f83dbecbd6.zip
CMake-e32818dd76879d43b4cd84f7f72cd3f83dbecbd6.tar.gz
CMake-e32818dd76879d43b4cd84f7f72cd3f83dbecbd6.tar.bz2
cmInstallGenerator: Add backtrace to all install generators
Diffstat (limited to 'Source/cmInstallSubdirectoryGenerator.cxx')
-rw-r--r--Source/cmInstallSubdirectoryGenerator.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmInstallSubdirectoryGenerator.cxx b/Source/cmInstallSubdirectoryGenerator.cxx
index 12bc92b..76806e5 100644
--- a/Source/cmInstallSubdirectoryGenerator.cxx
+++ b/Source/cmInstallSubdirectoryGenerator.cxx
@@ -14,9 +14,10 @@
#include "cmSystemTools.h"
cmInstallSubdirectoryGenerator::cmInstallSubdirectoryGenerator(
- cmMakefile* makefile, std::string binaryDirectory, bool excludeFromAll)
+ cmMakefile* makefile, std::string binaryDirectory, bool excludeFromAll,
+ cmListFileBacktrace backtrace)
: cmInstallGenerator("", std::vector<std::string>(), "", MessageDefault,
- excludeFromAll)
+ excludeFromAll, std::move(backtrace))
, Makefile(makefile)
, BinaryDirectory(std::move(binaryDirectory))
{