diff options
author | David Cole <david.cole@kitware.com> | 2012-05-24 17:37:54 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2012-05-24 17:37:54 (GMT) |
commit | 59bdb879e8355537a30aa5a39b72ad54146d2c9b (patch) | |
tree | 23fc51c3b277658428f693a3b615abe1f5243581 /Source/cmInstallCommand.h | |
parent | 1e3dde2ddb20457d6a5ca3399d3add46f37c2516 (diff) | |
parent | b71e731b9b91f9f79ab49838baae5bb5ab42c30e (diff) | |
download | CMake-59bdb879e8355537a30aa5a39b72ad54146d2c9b.zip CMake-59bdb879e8355537a30aa5a39b72ad54146d2c9b.tar.gz CMake-59bdb879e8355537a30aa5a39b72ad54146d2c9b.tar.bz2 |
Merge topic 'MakeDefaultInstallComponentNameConfigurable'
b71e731 -add docs for ${CMAKE_INSTALL_DEFAULT_COMPONENT_NAME}
7ced073 make default install component name configurable
b6fba35 -strip trailing whitespace
Diffstat (limited to 'Source/cmInstallCommand.h')
-rw-r--r-- | Source/cmInstallCommand.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmInstallCommand.h b/Source/cmInstallCommand.h index 3403c38..bf9fd9e 100644 --- a/Source/cmInstallCommand.h +++ b/Source/cmInstallCommand.h @@ -337,10 +337,12 @@ private: bool HandleFilesMode(std::vector<std::string> const& args); bool HandleDirectoryMode(std::vector<std::string> const& args); bool HandleExportMode(std::vector<std::string> const& args); - bool MakeFilesFullPath(const char* modeName, + bool MakeFilesFullPath(const char* modeName, const std::vector<std::string>& relFiles, std::vector<std::string>& absFiles); bool CheckCMP0006(bool& failure); + + std::string DefaultComponentName; }; |