CMake/Source/CPack/cmCPackPackageMakerGenerator.h

55 lines
1.6 KiB
C
Raw Normal View History

2006-01-02 07:21:05 +03:00
/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc. 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.
=========================================================================*/
#ifndef cmCPackPackageMakerGenerator_h
#define cmCPackPackageMakerGenerator_h
2007-11-06 00:55:45 +03:00
#include "cmCPackGenerator.h"
2006-01-02 07:21:05 +03:00
/** \class cmCPackPackageMakerGenerator
* \brief A generator for PackageMaker files
*
* http://developer.apple.com/documentation/Darwin
* /Reference/ManPages/man1/packagemaker.1.html
2006-01-02 07:21:05 +03:00
*/
2007-11-06 00:55:45 +03:00
class cmCPackPackageMakerGenerator : public cmCPackGenerator
2006-01-02 07:21:05 +03:00
{
public:
2007-11-06 00:55:45 +03:00
cmCPackTypeMacro(cmCPackPackageMakerGenerator, cmCPackGenerator);
2006-01-02 07:21:05 +03:00
/**
* Construct generator
*/
cmCPackPackageMakerGenerator();
virtual ~cmCPackPackageMakerGenerator();
protected:
virtual int InitializeInternal();
2006-01-02 07:21:05 +03:00
int CompressFiles(const char* outFileName, const char* toplevel,
const std::vector<std::string>& files);
virtual const char* GetOutputExtension() { return ".dmg"; }
2006-01-02 07:21:05 +03:00
virtual const char* GetOutputPostfix() { return "darwin"; }
bool CopyCreateResourceFile(const char* name);
bool CopyResourcePlistFile(const char* name);
2006-03-03 23:04:28 +03:00
double PackageMakerVersion;
2006-01-02 07:21:05 +03:00
};
#endif