2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc.
|
2009-01-22 20:12:44 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2009-01-22 20:12:44 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2009-01-22 20:12:44 +03:00
|
|
|
|
|
|
|
#ifndef cmCPackDragNDropGenerator_h
|
|
|
|
#define cmCPackDragNDropGenerator_h
|
|
|
|
|
|
|
|
#include "cmCPackGenerator.h"
|
|
|
|
|
|
|
|
/** \class cmCPackDragNDropGenerator
|
|
|
|
* \brief A generator for OSX drag-n-drop installs
|
|
|
|
*/
|
|
|
|
class cmCPackDragNDropGenerator : public cmCPackGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmCPackTypeMacro(cmCPackDragNDropGenerator, cmCPackGenerator);
|
|
|
|
|
|
|
|
cmCPackDragNDropGenerator();
|
|
|
|
virtual ~cmCPackDragNDropGenerator();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual int InitializeInternal();
|
|
|
|
virtual const char* GetOutputExtension();
|
2010-08-11 21:48:39 +04:00
|
|
|
int PackageFiles();
|
2009-01-22 20:12:44 +03:00
|
|
|
|
|
|
|
bool CopyFile(cmOStringStream& source, cmOStringStream& target);
|
|
|
|
bool RunCommand(cmOStringStream& command, std::string* output = 0);
|
2009-02-20 18:14:40 +03:00
|
|
|
|
2010-08-12 00:17:09 +04:00
|
|
|
int CreateDMG();
|
2009-01-22 20:12:44 +03:00
|
|
|
|
|
|
|
std::string InstallPrefix;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|