2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2012-07-07 19:54:16 +02:00
|
|
|
#ifndef cmOSXBundleGenerator_h
|
|
|
|
#define cmOSXBundleGenerator_h
|
|
|
|
|
2017-04-11 22:00:21 +02:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2012-07-07 19:54:16 +02:00
|
|
|
|
|
|
|
#include <set>
|
2016-04-29 10:53:13 -04:00
|
|
|
#include <string>
|
2016-09-01 20:59:28 +02:00
|
|
|
#include <vector>
|
2012-07-07 19:54:16 +02:00
|
|
|
|
2012-10-10 21:32:37 +02:00
|
|
|
class cmGeneratorTarget;
|
2016-09-01 20:59:28 +02:00
|
|
|
class cmLocalGenerator;
|
|
|
|
class cmMakefile;
|
|
|
|
class cmSourceFile;
|
2012-07-07 19:54:16 +02:00
|
|
|
|
|
|
|
class cmOSXBundleGenerator
|
|
|
|
{
|
|
|
|
public:
|
2019-01-21 17:15:21 +01:00
|
|
|
cmOSXBundleGenerator(cmGeneratorTarget* target, std::string configName);
|
2012-07-07 19:54:16 +02:00
|
|
|
|
2013-05-05 20:19:05 -06:00
|
|
|
// create an app bundle at a given root, and return
|
|
|
|
// the directory within the bundle that contains the executable
|
|
|
|
void CreateAppBundle(const std::string& targetName, std::string& root);
|
|
|
|
|
|
|
|
// create a framework at a given root
|
2016-05-16 10:34:04 -04:00
|
|
|
void CreateFramework(const std::string& targetName, const std::string& root);
|
2013-05-05 20:19:05 -06:00
|
|
|
|
2013-06-01 22:47:18 -06:00
|
|
|
// create a cf bundle at a given root
|
2016-05-16 10:34:04 -04:00
|
|
|
void CreateCFBundle(const std::string& targetName, const std::string& root);
|
2012-07-07 19:54:16 +02:00
|
|
|
|
2012-07-18 12:17:39 +02:00
|
|
|
struct MacOSXContentGeneratorType
|
2012-07-16 17:34:22 +02:00
|
|
|
{
|
2019-01-22 23:44:50 +01:00
|
|
|
virtual ~MacOSXContentGeneratorType() = default;
|
2014-03-12 23:45:43 +01:00
|
|
|
virtual void operator()(cmSourceFile const& source,
|
|
|
|
const char* pkgloc) = 0;
|
2012-07-16 17:34:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void GenerateMacOSXContentStatements(
|
2014-03-12 23:06:05 +01:00
|
|
|
std::vector<cmSourceFile const*> const& sources,
|
2012-07-16 17:34:22 +02:00
|
|
|
MacOSXContentGeneratorType* generator);
|
2012-07-16 23:03:40 +02:00
|
|
|
std::string InitMacOSXContentDirectory(const char* pkgloc);
|
2012-07-16 17:34:22 +02:00
|
|
|
|
2014-02-10 00:21:34 -05:00
|
|
|
void SetMacContentFolders(std::set<std::string>* macContentFolders)
|
2016-05-16 10:34:04 -04:00
|
|
|
{
|
|
|
|
this->MacContentFolders = macContentFolders;
|
|
|
|
}
|
2012-07-07 19:54:16 +02:00
|
|
|
|
2012-07-16 19:42:56 +02:00
|
|
|
private:
|
|
|
|
bool MustSkip();
|
|
|
|
|
2012-07-07 19:54:16 +02:00
|
|
|
private:
|
2014-02-06 11:24:37 +01:00
|
|
|
cmGeneratorTarget* GT;
|
2012-07-07 19:54:16 +02:00
|
|
|
cmMakefile* Makefile;
|
|
|
|
cmLocalGenerator* LocalGenerator;
|
2014-02-09 22:48:34 -05:00
|
|
|
std::string ConfigName;
|
2014-02-10 00:21:34 -05:00
|
|
|
std::set<std::string>* MacContentFolders;
|
2012-07-07 19:54:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|