mirror of
https://github.com/reactos/CMake.git
synced 2024-12-03 00:57:25 +00:00
ed98209ddc
Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0.
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 <utility> // IWYU pragma: keep
|
|
|
|
#include "cmGeneratorTarget.h"
|
|
|
|
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)
|
|
{
|
|
}
|