cmake/Source/CPack/cmCPackOSXX11Generator.h

43 lines
1.2 KiB
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#ifndef cmCPackOSXX11Generator_h
#define cmCPackOSXX11Generator_h
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h"
2017-04-14 19:02:05 +02:00
#include <string>
#include "cmCPackGenerator.h"
/** \class cmCPackOSXX11Generator
* \brief A generator for OSX X11 modules
*
* Based on Gimp.app
*/
class cmCPackOSXX11Generator : public cmCPackGenerator
{
public:
cmCPackTypeMacro(cmCPackOSXX11Generator, cmCPackGenerator);
/**
* Construct generator
*/
cmCPackOSXX11Generator();
virtual ~cmCPackOSXX11Generator();
protected:
2016-10-30 18:24:19 +01:00
virtual int InitializeInternal() CM_OVERRIDE;
int PackageFiles() CM_OVERRIDE;
const char* GetPackagingInstallPrefix() CM_OVERRIDE;
const char* GetOutputExtension() CM_OVERRIDE { return ".dmg"; }
2016-07-09 11:21:54 +02:00
// bool CopyCreateResourceFile(const std::string& name,
2015-04-27 22:25:09 +02:00
// const std::string& dir);
bool CopyResourcePlistFile(const std::string& name, const std::string& dir,
2016-07-09 11:21:54 +02:00
const char* outputFileName = 0,
bool copyOnly = false);
std::string InstallPrefix;
};
#endif