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"
|
|
|
|
|
2015-10-19 12:13:55 +03:00
|
|
|
class cmGeneratedFileStream;
|
|
|
|
|
2009-01-22 20:12:44 +03:00
|
|
|
/** \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();
|
2011-03-28 19:11:27 +04:00
|
|
|
bool SupportsComponentInstallation() const;
|
|
|
|
|
2009-01-22 20:12:44 +03:00
|
|
|
|
2015-01-05 22:31:31 +03:00
|
|
|
bool CopyFile(std::ostringstream& source, std::ostringstream& target);
|
2014-09-26 22:38:38 +04:00
|
|
|
bool CreateEmptyFile(std::ostringstream& target, size_t size);
|
2015-01-05 22:31:31 +03:00
|
|
|
bool RunCommand(std::ostringstream& command, std::string* output = 0);
|
2009-02-20 18:14:40 +03:00
|
|
|
|
2011-04-01 21:27:34 +04:00
|
|
|
std::string
|
|
|
|
GetComponentInstallDirNameSuffix(const std::string& componentName);
|
2011-03-28 19:11:27 +04:00
|
|
|
|
|
|
|
int CreateDMG(const std::string& src_dir, const std::string& output_file);
|
2009-01-22 20:12:44 +03:00
|
|
|
|
|
|
|
std::string InstallPrefix;
|
2015-10-19 12:13:55 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string slaDirectory;
|
2015-11-24 18:17:53 +03:00
|
|
|
bool singleLicense;
|
2015-10-19 12:13:55 +03:00
|
|
|
|
2016-01-03 00:11:00 +03:00
|
|
|
bool WriteLicense(cmGeneratedFileStream& outputStream, int licenseNumber,
|
|
|
|
std::string licenseLanguage, std::string licenseFile,
|
|
|
|
std::string *error);
|
|
|
|
bool BreakLongLine(const std::string& line,
|
|
|
|
std::vector<std::string>& lines,
|
|
|
|
std::string *error);
|
|
|
|
void EscapeQuotesAndBackslashes(std::string& line);
|
2009-01-22 20:12:44 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|