diff options
author | Brad King <brad.king@kitware.com> | 2018-10-17 11:25:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-10-18 16:46:48 (GMT) |
commit | dd4f8b2a48c7962dfa9cf856c36aa1c235248b2d (patch) | |
tree | 6b975471ae8090876313ea63b8bf30474ed8ad21 /Source/cmInstallTargetGenerator.cxx | |
parent | 753ab3c978fa763fc5b7d9fc3d08b1a4d7b46e5e (diff) | |
download | CMake-dd4f8b2a48c7962dfa9cf856c36aa1c235248b2d.zip CMake-dd4f8b2a48c7962dfa9cf856c36aa1c235248b2d.tar.gz CMake-dd4f8b2a48c7962dfa9cf856c36aa1c235248b2d.tar.bz2 |
install: Record TARGET mode backtraces internally
Diffstat (limited to 'Source/cmInstallTargetGenerator.cxx')
-rw-r--r-- | Source/cmInstallTargetGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmInstallTargetGenerator.cxx b/Source/cmInstallTargetGenerator.cxx index 8b8f79b..ea3d522 100644 --- a/Source/cmInstallTargetGenerator.cxx +++ b/Source/cmInstallTargetGenerator.cxx @@ -24,7 +24,7 @@ cmInstallTargetGenerator::cmInstallTargetGenerator( const std::string& targetName, const char* dest, bool implib, const char* file_permissions, std::vector<std::string> const& configurations, const char* component, MessageLevel message, bool exclude_from_all, - bool optional) + bool optional, cmListFileBacktrace const& backtrace) : cmInstallGenerator(dest, configurations, component, message, exclude_from_all) , TargetName(targetName) @@ -32,6 +32,7 @@ cmInstallTargetGenerator::cmInstallTargetGenerator( , FilePermissions(file_permissions) , ImportLibrary(implib) , Optional(optional) + , Backtrace(backtrace) { this->ActionsPerConfig = true; this->NamelinkMode = NamelinkModeNone; |