diff options
author | David Cole <david.cole@kitware.com> | 2008-06-17 16:44:18 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2008-06-17 16:44:18 (GMT) |
commit | 9a98928bd9862714ccbfe62158e76760efa324ca (patch) | |
tree | 421773013aa96ec338b660e600797f1055f5253d /Source/CPack/cmCPackGenerator.cxx | |
parent | 80714fb42f96a3486b8411cc28c0107a5aba1055 (diff) | |
download | CMake-9a98928bd9862714ccbfe62158e76760efa324ca.zip CMake-9a98928bd9862714ccbfe62158e76760efa324ca.tar.gz CMake-9a98928bd9862714ccbfe62158e76760efa324ca.tar.bz2 |
COMP: Fix errors and warnings from continuous dashboards running different compilers...
Diffstat (limited to 'Source/CPack/cmCPackGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackGenerator.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/CPack/cmCPackGenerator.cxx b/Source/CPack/cmCPackGenerator.cxx index 396bd9e..d177bae 100644 --- a/Source/CPack/cmCPackGenerator.cxx +++ b/Source/CPack/cmCPackGenerator.cxx @@ -245,6 +245,7 @@ int cmCPackGenerator::InstallProject() int cmCPackGenerator::InstallProjectViaInstallCommands( bool setDestDir, const char* tempInstallDirectory) { + (void) setDestDir; const char* installCommands = this->GetOption("CPACK_INSTALL_COMMANDS"); if ( installCommands && *installCommands ) { @@ -1199,6 +1200,7 @@ bool cmCPackGenerator::SupportsComponentInstallation() const cmCPackInstallationType* cmCPackGenerator::GetInstallationType(const char *projectName, const char *name) { + (void) projectName; bool hasInstallationType = this->InstallationTypes.count(name) != 0; cmCPackInstallationType *installType = &this->InstallationTypes[name]; if (!hasInstallationType) @@ -1311,6 +1313,7 @@ cmCPackGenerator::GetComponent(const char *projectName, const char *name) cmCPackComponentGroup* cmCPackGenerator::GetComponentGroup(const char *projectName, const char *name) { + (void) projectName; std::string macroPrefix = "CPACK_COMPONENT_GROUP_" + cmsys::SystemTools::UpperCase(name); bool hasGroup = this->ComponentGroups.count(name) != 0; |