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