blob: 436f4d3bea3bd8c7ddf3c31b5f78b81ac7e47459 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmCPackIFWCommon.h"
#include "cmCPackGenerator.h"
#include "cmCPackIFWGenerator.h"
#include "cmCPackLog.h" // IWYU pragma: keep
#include "cmSystemTools.h"
#include "cmTimestamp.h"
#include "cmVersionConfig.h"
#include "cmXMLWriter.h"
#include <sstream>
cmCPackIFWCommon::cmCPackIFWCommon()
: Generator(CM_NULLPTR)
{
}
const char* cmCPackIFWCommon::GetOption(const std::string& op) const
{
return this->Generator ? this->Generator->cmCPackGenerator::GetOption(op)
: CM_NULLPTR;
}
bool cmCPackIFWCommon::IsOn(const std::string& op) const
{
return this->Generator ? this->Generator->cmCPackGenerator::IsOn(op) : false;
}
bool cmCPackIFWCommon::IsSetToOff(const std::string& op) const
{
return this->Generator ? this->Generator->cmCPackGenerator::IsSetToOff(op)
: false;
}
bool cmCPackIFWCommon::IsSetToEmpty(const std::string& op) const
{
return this->Generator ? this->Generator->cmCPackGenerator::IsSetToEmpty(op)
: false;
}
bool cmCPackIFWCommon::IsVersionLess(const char* version)
{
if (!this->Generator) {
return false;
}
return cmSystemTools::VersionCompare(
cmSystemTools::OP_LESS, this->Generator->FrameworkVersion.data(), version);
}
bool cmCPackIFWCommon::IsVersionGreater(const char* version)
{
if (!this->Generator) {
return false;
}
return cmSystemTools::VersionCompare(
cmSystemTools::OP_GREATER, this->Generator->FrameworkVersion.data(),
version);
}
bool cmCPackIFWCommon::IsVersionEqual(const char* version)
{
if (!this->Generator) {
return false;
}
return cmSystemTools::VersionCompare(
cmSystemTools::OP_EQUAL, this->Generator->FrameworkVersion.data(),
version);
}
void cmCPackIFWCommon::WriteGeneratedByToStrim(cmXMLWriter& xout)
{
if (!this->Generator) {
return;
}
std::ostringstream comment;
comment << "Generated by CPack " << CMake_VERSION << " IFW generator "
<< "for QtIFW ";
if (this->IsVersionEqual("1.9.9")) {
comment << "less 2.0";
} else {
comment << this->Generator->FrameworkVersion;
}
comment << " tools at " << cmTimestamp().CurrentTime("", true);
xout.Comment(comment.str().c_str());
}
|