mirror of
https://github.com/reactos/CMake.git
synced 2024-12-12 05:45:51 +00:00
55671b41d2
Suppress some cases in `Source/cmGeneratorExpressionNode.cxx` and `Source/cmUVHandlePtr.h` where a few older compilers require a user-defined default constructor (with `{}`).
65 lines
1.3 KiB
C++
65 lines
1.3 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#include "cmLinkItem.h"
|
|
|
|
#include "cmGeneratorTarget.h"
|
|
|
|
#include <utility> // IWYU pragma: keep
|
|
|
|
cmLinkItem::cmLinkItem() = default;
|
|
|
|
cmLinkItem::cmLinkItem(std::string n, cmListFileBacktrace bt)
|
|
: String(std::move(n))
|
|
, Backtrace(std::move(bt))
|
|
{
|
|
}
|
|
|
|
cmLinkItem::cmLinkItem(cmGeneratorTarget const* t, cmListFileBacktrace bt)
|
|
: Target(t)
|
|
, Backtrace(std::move(bt))
|
|
{
|
|
}
|
|
|
|
std::string const& cmLinkItem::AsStr() const
|
|
{
|
|
return this->Target ? this->Target->GetName() : this->String;
|
|
}
|
|
|
|
bool operator<(cmLinkItem const& l, cmLinkItem const& r)
|
|
{
|
|
// Order among targets.
|
|
if (l.Target && r.Target) {
|
|
return l.Target < r.Target;
|
|
}
|
|
// Order targets before strings.
|
|
if (l.Target) {
|
|
return true;
|
|
}
|
|
if (r.Target) {
|
|
return false;
|
|
}
|
|
// Order among strings.
|
|
return l.String < r.String;
|
|
}
|
|
|
|
bool operator==(cmLinkItem const& l, cmLinkItem const& r)
|
|
{
|
|
return l.Target == r.Target && l.String == r.String;
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream& os, cmLinkItem const& item)
|
|
{
|
|
return os << item.AsStr();
|
|
}
|
|
|
|
cmLinkImplItem::cmLinkImplItem()
|
|
: cmLinkItem()
|
|
{
|
|
}
|
|
|
|
cmLinkImplItem::cmLinkImplItem(cmLinkItem item, bool fromGenex)
|
|
: cmLinkItem(std::move(item))
|
|
, FromGenex(fromGenex)
|
|
{
|
|
}
|