2012-07-07 21:54:16 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2012 Nicolas Despres <nicolas.despres@gmail.com>
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
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.
|
|
|
|
============================================================================*/
|
|
|
|
#ifndef cmOSXBundleGenerator_h
|
|
|
|
#define cmOSXBundleGenerator_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
2012-07-16 19:34:22 +04:00
|
|
|
#include "cmSourceFile.h"
|
2012-07-07 21:54:16 +04:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
class cmTarget;
|
|
|
|
class cmMakefile;
|
|
|
|
class cmLocalGenerator;
|
|
|
|
|
|
|
|
class cmOSXBundleGenerator
|
|
|
|
{
|
|
|
|
public:
|
2012-07-16 18:00:40 +04:00
|
|
|
static void PrepareTargetProperties(cmTarget* target);
|
|
|
|
|
2012-07-07 21:54:16 +04:00
|
|
|
cmOSXBundleGenerator(cmTarget* target,
|
|
|
|
std::string targetNameOut,
|
|
|
|
const char* configName);
|
|
|
|
|
|
|
|
void CreateAppBundle(std::string& targetName, std::string& outpath);
|
|
|
|
void CreateFramework(std::string const& targetName);
|
2012-07-16 18:00:40 +04:00
|
|
|
void CreateCFBundle(std::string& targetName, std::string& outpath);
|
2012-07-07 21:54:16 +04:00
|
|
|
|
2012-07-18 14:17:39 +04:00
|
|
|
struct MacOSXContentGeneratorType
|
2012-07-16 19:34:22 +04:00
|
|
|
{
|
2012-07-18 14:17:39 +04:00
|
|
|
virtual ~MacOSXContentGeneratorType() {}
|
2012-07-16 19:34:22 +04:00
|
|
|
virtual void operator()(cmSourceFile& source, const char* pkgloc) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
void GenerateMacOSXContentStatements(
|
|
|
|
std::vector<cmSourceFile*> const& sources,
|
|
|
|
MacOSXContentGeneratorType* generator);
|
2012-07-17 01:03:40 +04:00
|
|
|
std::string InitMacOSXContentDirectory(const char* pkgloc);
|
2012-07-16 19:34:22 +04:00
|
|
|
|
2012-07-07 21:54:16 +04:00
|
|
|
std::string GetMacContentDirectory() const
|
|
|
|
{ return this->MacContentDirectory; }
|
|
|
|
std::string GetFrameworkVersion() const
|
|
|
|
{ return this->FrameworkVersion; }
|
|
|
|
void SetMacContentFolders(std::set<cmStdString>* macContentFolders)
|
|
|
|
{ this->MacContentFolders = macContentFolders; }
|
|
|
|
|
2012-07-16 21:42:56 +04:00
|
|
|
private:
|
|
|
|
bool MustSkip();
|
|
|
|
|
2012-07-07 21:54:16 +04:00
|
|
|
private:
|
|
|
|
cmTarget* Target;
|
|
|
|
cmMakefile* Makefile;
|
|
|
|
cmLocalGenerator* LocalGenerator;
|
|
|
|
std::string TargetNameOut;
|
|
|
|
const char* ConfigName;
|
|
|
|
std::string MacContentDirectory;
|
|
|
|
std::string FrameworkVersion;
|
|
|
|
std::set<cmStdString>* MacContentFolders;
|
|
|
|
};
|
|
|
|
|
2012-07-18 14:17:39 +04:00
|
|
|
|
2012-07-07 21:54:16 +04:00
|
|
|
#endif
|