mirror of
https://github.com/Kitware/CMake.git
synced 2025-05-08 22:37:04 +08:00

#pragma once is a widely supported compiler pragma, even though it is not part of the C++ standard. Many of the issues keeping #pragma once from being standardized (distributed filesystems, build farms, hard links, etc.) do not apply to CMake - it is easy to build CMake on a single machine. CMake also does not install any header files which can be consumed by other projects (though cmCPluginAPI.h has been deliberately omitted from this conversion in case anyone is still using it.) Finally, #pragma once has been required to build CMake since at least August 2017 (7f29bbe6 enabled server mode unconditionally, which had been using #pragma once since September 2016 (b13d3e0d)). The fact that we now require C++11 filters out old compilers, and it is unlikely that there is a compiler which supports C++11 but does not support #pragma once.
83 lines
2.3 KiB
C++
83 lines
2.3 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#pragma once
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "cmCPackGenerator.h"
|
|
|
|
class cmGeneratedFileStream;
|
|
class cmXMLWriter;
|
|
|
|
/** \class cmCPackDragNDropGenerator
|
|
* \brief A generator for OSX drag-n-drop installs
|
|
*/
|
|
class cmCPackDragNDropGenerator : public cmCPackGenerator
|
|
{
|
|
public:
|
|
cmCPackTypeMacro(cmCPackDragNDropGenerator, cmCPackGenerator);
|
|
|
|
cmCPackDragNDropGenerator();
|
|
~cmCPackDragNDropGenerator() override;
|
|
|
|
protected:
|
|
int InitializeInternal() override;
|
|
const char* GetOutputExtension() override;
|
|
int PackageFiles() override;
|
|
bool SupportsComponentInstallation() const override;
|
|
|
|
bool CopyFile(std::ostringstream& source, std::ostringstream& target);
|
|
bool CreateEmptyFile(std::ostringstream& target, size_t size);
|
|
bool RunCommand(std::ostringstream& command, std::string* output = 0);
|
|
|
|
std::string GetComponentInstallDirNameSuffix(
|
|
const std::string& componentName) override;
|
|
|
|
int CreateDMG(const std::string& src_dir, const std::string& output_file);
|
|
|
|
private:
|
|
std::string slaDirectory;
|
|
bool singleLicense;
|
|
|
|
struct RezDict
|
|
{
|
|
std::string Name;
|
|
size_t ID;
|
|
std::vector<unsigned char> Data;
|
|
};
|
|
|
|
struct RezArray
|
|
{
|
|
std::string Key;
|
|
std::vector<RezDict> Entries;
|
|
};
|
|
|
|
struct RezDoc
|
|
{
|
|
RezArray LPic = { "LPic", {} };
|
|
RezArray Menu = { "STR#", {} };
|
|
RezArray Text = { "TEXT", {} };
|
|
RezArray RTF = { "RTF ", {} };
|
|
};
|
|
|
|
void WriteRezXML(std::string const& file, RezDoc const& rez);
|
|
void WriteRezArray(cmXMLWriter& xml, RezArray const& array);
|
|
void WriteRezDict(cmXMLWriter& xml, RezDict const& dict);
|
|
|
|
bool WriteLicense(RezDoc& rez, size_t licenseNumber,
|
|
std::string licenseLanguage,
|
|
const std::string& licenseFile, std::string* error);
|
|
void EncodeLicense(RezDict& dict, std::vector<std::string> const& lines);
|
|
void EncodeMenu(RezDict& dict, std::vector<std::string> const& lines);
|
|
bool ReadFile(std::string const& file, std::vector<std::string>& lines,
|
|
std::string* error);
|
|
bool BreakLongLine(const std::string& line, std::vector<std::string>& lines,
|
|
std::string* error);
|
|
};
|