diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-07-25 15:41:25 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-07-25 15:41:25 (GMT) |
commit | 8796bfcbaf35d9de8320ce625dcaf0a59aab81a6 (patch) | |
tree | 8402a6f1651e4f1ef2339db423ec9b9eacdf3a52 /Source/CPack/cmCPackDebGenerator.cxx | |
parent | a39aff52a033943242296bacc193741b0101377d (diff) | |
download | CMake-8796bfcbaf35d9de8320ce625dcaf0a59aab81a6.zip CMake-8796bfcbaf35d9de8320ce625dcaf0a59aab81a6.tar.gz CMake-8796bfcbaf35d9de8320ce625dcaf0a59aab81a6.tar.bz2 |
COMP: silence warnings
Alex
Diffstat (limited to 'Source/CPack/cmCPackDebGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackDebGenerator.cxx | 5 |
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; } |