mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 22:58:37 -05:00
bdca8b01d2
#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 (7f29bbe6enabled 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.
79 lines
2.5 KiB
C++
79 lines
2.5 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 <map>
|
|
#include <string>
|
|
|
|
class cmCPackIFWGenerator;
|
|
class cmXMLWriter;
|
|
|
|
/** \class cmCPackIFWCommon
|
|
* \brief A base class for CPack IFW generator implementation subclasses
|
|
*/
|
|
class cmCPackIFWCommon
|
|
{
|
|
public:
|
|
// Constructor
|
|
|
|
/**
|
|
* Construct Part
|
|
*/
|
|
cmCPackIFWCommon();
|
|
|
|
public:
|
|
// Internal implementation
|
|
|
|
const char* GetOption(const std::string& op) const;
|
|
bool IsOn(const std::string& op) const;
|
|
bool IsSetToOff(const std::string& op) const;
|
|
bool IsSetToEmpty(const std::string& op) const;
|
|
|
|
/**
|
|
* Compare \a version with QtIFW framework version
|
|
*/
|
|
bool IsVersionLess(const char* version);
|
|
|
|
/**
|
|
* Compare \a version with QtIFW framework version
|
|
*/
|
|
bool IsVersionGreater(const char* version);
|
|
|
|
/**
|
|
* Compare \a version with QtIFW framework version
|
|
*/
|
|
bool IsVersionEqual(const char* version);
|
|
|
|
/** Expand the list argument containing the map of the key-value pairs.
|
|
* If the number of elements is odd, then the first value is used as the
|
|
* default value with an empty key.
|
|
* Any values with the same keys will be permanently overwritten.
|
|
*/
|
|
static void ExpandListArgument(const std::string& arg,
|
|
std::map<std::string, std::string>& argsOut);
|
|
|
|
/** Expand the list argument containing the multimap of the key-value pairs.
|
|
* If the number of elements is odd, then the first value is used as the
|
|
* default value with an empty key.
|
|
*/
|
|
static void ExpandListArgument(
|
|
const std::string& arg, std::multimap<std::string, std::string>& argsOut);
|
|
|
|
cmCPackIFWGenerator* Generator;
|
|
|
|
protected:
|
|
void WriteGeneratedByToStrim(cmXMLWriter& xout);
|
|
};
|
|
|
|
#define cmCPackIFWLogger(logType, msg) \
|
|
do { \
|
|
std::ostringstream cmCPackLog_msg; \
|
|
cmCPackLog_msg << msg; \
|
|
if (Generator) { \
|
|
Generator->Logger->Log(cmCPackLog::LOG_##logType, __FILE__, __LINE__, \
|
|
cmCPackLog_msg.str().c_str()); \
|
|
} \
|
|
} while (false)
|