mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
cmNinjaLinkLineDeviceComputer now lives in the correct source file
This commit is contained in:
committed by
Brad King
parent
66efdbd21a
commit
3205c7c950
20
Source/cmNinjaLinkLineDeviceComputer.cxx
Normal file
20
Source/cmNinjaLinkLineDeviceComputer.cxx
Normal file
@@ -0,0 +1,20 @@
|
||||
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||
|
||||
#include "cmNinjaLinkLineDeviceComputer.h"
|
||||
|
||||
#include "cmGlobalNinjaGenerator.h"
|
||||
|
||||
cmNinjaLinkLineDeviceComputer::cmNinjaLinkLineDeviceComputer(
|
||||
cmOutputConverter* outputConverter, cmStateDirectory const& stateDir,
|
||||
cmGlobalNinjaGenerator const* gg)
|
||||
: cmLinkLineDeviceComputer(outputConverter, stateDir)
|
||||
, GG(gg)
|
||||
{
|
||||
}
|
||||
|
||||
std::string cmNinjaLinkLineDeviceComputer::ConvertToLinkReference(
|
||||
std::string const& lib) const
|
||||
{
|
||||
return GG->ConvertToNinjaPath(lib);
|
||||
}
|
||||
Reference in New Issue
Block a user