Coverage Report

Created: 2026-02-09 06:05

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/CMake/Source/cmFastbuildLinkLineComputer.cxx
Line
Count
Source
1
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
2
   file LICENSE.rst or https://cmake.org/licensing for details.  */
3
4
#include "cmFastbuildLinkLineComputer.h"
5
6
#include "cmGlobalFastbuildGenerator.h"
7
8
class cmOutputConverter;
9
10
cmFastbuildLinkLineComputer::cmFastbuildLinkLineComputer(
11
  cmOutputConverter* outputConverter, cmStateDirectory const& stateDir,
12
  cmGlobalFastbuildGenerator const* gg)
13
0
  : cmLinkLineComputer(outputConverter, stateDir)
14
0
  , GG(gg)
15
0
{
16
0
}
17
18
std::string cmFastbuildLinkLineComputer::ConvertToLinkReference(
19
  std::string const& lib) const
20
0
{
21
0
  return this->GG->ConvertToFastbuildPath(lib);
22
0
}