/src/CMake/Source/cmNinjaLinkLineComputer.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 "cmNinjaLinkLineComputer.h" |
5 | | |
6 | | #include "cmGlobalNinjaGenerator.h" |
7 | | |
8 | | class cmOutputConverter; |
9 | | |
10 | | cmNinjaLinkLineComputer::cmNinjaLinkLineComputer( |
11 | | cmOutputConverter* outputConverter, cmStateDirectory const& stateDir, |
12 | | cmGlobalNinjaGenerator const* gg) |
13 | 0 | : cmLinkLineComputer(outputConverter, stateDir) |
14 | 0 | , GG(gg) |
15 | 0 | { |
16 | 0 | } |
17 | | |
18 | | std::string cmNinjaLinkLineComputer::ConvertToLinkReference( |
19 | | std::string const& lib) const |
20 | 0 | { |
21 | 0 | return this->GG->ConvertToNinjaPath(lib); |
22 | 0 | } |