summaryrefslogtreecommitdiffstats
path: root/Source/cmLinkItem.cxx
blob: 69b6821c1622a53f5f1ede50a328034ccf1b1325 (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
/* 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()
  : String()
  , Target(nullptr)
{
}

cmLinkItem::cmLinkItem(std::string const& n)
  : String(n)
  , Target(nullptr)
{
}

cmLinkItem::cmLinkItem(cmGeneratorTarget const* t)
  : String()
  , Target(t)
{
}

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()
  , Backtrace()
  , FromGenex(false)
{
}

cmLinkImplItem::cmLinkImplItem(cmLinkItem item, cmListFileBacktrace const& bt,
                               bool fromGenex)
  : cmLinkItem(std::move(item))
  , Backtrace(bt)
  , FromGenex(fromGenex)
{
}