diff options
author | Brad King <brad.king@kitware.com> | 2016-02-09 15:10:15 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-02-09 15:10:15 (GMT) |
commit | 3b8c0fbfd787fc21137b0e2f511e7c91b3e70227 (patch) | |
tree | e26136e90d9b8de322979130c584093051ba2f1b /Source/cmInstallFilesCommand.cxx | |
parent | 8aec0f955a5e6a11cea6004a31fbe88760db939f (diff) | |
parent | 586e56d0ef8c9bda2e5c24371ad7bb0b95a4395f (diff) | |
download | CMake-3b8c0fbfd787fc21137b0e2f511e7c91b3e70227.zip CMake-3b8c0fbfd787fc21137b0e2f511e7c91b3e70227.tar.gz CMake-3b8c0fbfd787fc21137b0e2f511e7c91b3e70227.tar.bz2 |
Merge topic 'install-EXCLUDE_FROM_ALL'
586e56d0 Help: Add notes for topic 'install-EXCLUDE_FROM_ALL'
d321c196 Tests: Add cases for install() command EXCLUDE_FROM_ALL option
18ce97c4 install: Add EXCLUDE_FROM_ALL option (#14921)
Diffstat (limited to 'Source/cmInstallFilesCommand.cxx')
-rw-r--r-- | Source/cmInstallFilesCommand.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmInstallFilesCommand.cxx b/Source/cmInstallFilesCommand.cxx index 68557bd..d3d258e 100644 --- a/Source/cmInstallFilesCommand.cxx +++ b/Source/cmInstallFilesCommand.cxx @@ -122,6 +122,7 @@ void cmInstallFilesCommand::CreateInstallGenerator() const // Use a file install generator. const char* no_permissions = ""; const char* no_rename = ""; + bool no_exclude_from_all = false; std::string no_component = this->Makefile->GetSafeDefinition( "CMAKE_INSTALL_DEFAULT_COMPONENT_NAME"); std::vector<std::string> no_configurations; @@ -131,7 +132,8 @@ void cmInstallFilesCommand::CreateInstallGenerator() const new cmInstallFilesGenerator(this->Files, destination.c_str(), false, no_permissions, no_configurations, - no_component.c_str(), message, no_rename)); + no_component.c_str(), message, + no_exclude_from_all, no_rename)); } |