
CMake has several classes which have too many responsibilities. cmLocalGenerator is one of them. Start to extract the link line computation. Create generator-specific implementations of the interface to account for generator-specific behavior. Unfortunately MSVC60 has different behavior to everything else and CMake still generates makefiles for it. Isolate it with MSVC60-specific names.
19 lines
522 B
C++
19 lines
522 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
|
|
#include "cmNinjaLinkLineComputer.h"
|
|
#include "cmGlobalNinjaGenerator.h"
|
|
|
|
cmNinjaLinkLineComputer::cmNinjaLinkLineComputer(
|
|
cmState::Directory stateDir, cmGlobalNinjaGenerator const* gg)
|
|
: cmLinkLineComputer(stateDir)
|
|
, GG(gg)
|
|
{
|
|
}
|
|
|
|
std::string cmNinjaLinkLineComputer::ConvertToLinkReference(
|
|
std::string const& lib) const
|
|
{
|
|
return GG->ConvertToNinjaPath(lib);
|
|
}
|