diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-07-25 14:57:33 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-07-25 14:57:33 (GMT) |
commit | a39aff52a033943242296bacc193741b0101377d (patch) | |
tree | 1ed04854e79820eafa28c5a727f6478c46586d12 /Source/CPack/cmCPackDebGenerator.cxx | |
parent | f4ac0f8373aeb96aae4cd24359586bf1a18c7f7b (diff) | |
download | CMake-a39aff52a033943242296bacc193741b0101377d.zip CMake-a39aff52a033943242296bacc193741b0101377d.tar.gz CMake-a39aff52a033943242296bacc193741b0101377d.tar.bz2 |
ENH: add an empty debian package generator, Mathieu volunteered to fill it
:-)
Alex
Diffstat (limited to 'Source/CPack/cmCPackDebGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackDebGenerator.cxx | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/Source/CPack/cmCPackDebGenerator.cxx b/Source/CPack/cmCPackDebGenerator.cxx new file mode 100644 index 0000000..fdc0514 --- /dev/null +++ b/Source/CPack/cmCPackDebGenerator.cxx @@ -0,0 +1,58 @@ +/*========================================================================= + + Program: CMake - Cross-Platform Makefile Generator + Module: $RCSfile$ + Language: C++ + Date: $Date$ + Version: $Revision$ + + Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ +#include "cmCPackDebGenerator.h" + +#include "cmSystemTools.h" +#include "cmMakefile.h" +#include "cmGeneratedFileStream.h" +#include "cmCPackLog.h" + +#include <cmsys/SystemTools.hxx> +#include <cmsys/Glob.hxx> + +//---------------------------------------------------------------------- +cmCPackDebGenerator::cmCPackDebGenerator() +{ +} + +//---------------------------------------------------------------------- +cmCPackDebGenerator::~cmCPackDebGenerator() +{ +} + +//---------------------------------------------------------------------- +int cmCPackDebGenerator::CompressFiles(const char* outFileName, + const char* toplevel, + const std::vector<std::string>& files) +{ + const char* arExecutable = this->GetOption("AR_EXECUTABLE"); + const char* cmakeExecutable = this->GetOption("CMAKE_COMMAND"); + return 1; +} + +//---------------------------------------------------------------------- +int cmCPackDebGenerator::InitializeInternal() +{ + this->ReadListFile("CPackDeb.cmake"); + if (!this->IsSet("AR_EXECUTABLE")) + { + cmCPackLogger(cmCPackLog::LOG_ERROR, "Cannot find ar" << std::endl); + return 0; + } + return this->Superclass::InitializeInternal(); +} + |