summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-07-25 15:41:25 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-07-25 15:41:25 (GMT)
commit8796bfcbaf35d9de8320ce625dcaf0a59aab81a6 (patch)
tree8402a6f1651e4f1ef2339db423ec9b9eacdf3a52
parenta39aff52a033943242296bacc193741b0101377d (diff)
downloadCMake-8796bfcbaf35d9de8320ce625dcaf0a59aab81a6.zip
CMake-8796bfcbaf35d9de8320ce625dcaf0a59aab81a6.tar.gz
CMake-8796bfcbaf35d9de8320ce625dcaf0a59aab81a6.tar.bz2
COMP: silence warnings
Alex
-rw-r--r--Source/CPack/cmCPackDebGenerator.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/CPack/cmCPackDebGenerator.cxx b/Source/CPack/cmCPackDebGenerator.cxx
index fdc0514..6354d4c 100644
--- a/Source/CPack/cmCPackDebGenerator.cxx
+++ b/Source/CPack/cmCPackDebGenerator.cxx
@@ -41,6 +41,11 @@ int cmCPackDebGenerator::CompressFiles(const char* outFileName,
{
const char* arExecutable = this->GetOption("AR_EXECUTABLE");
const char* cmakeExecutable = this->GetOption("CMAKE_COMMAND");
+ (void) outFileName;
+ (void) toplevel;
+ (void) files;
+ (void) arExecutable;
+ (void) cmakeExecutable;
return 1;
}