cmFastbuildLinkLineComputer.cxx 641 B

12345678910111213141516171819202122
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file LICENSE.rst or https://cmake.org/licensing for details. */
  3. #include "cmFastbuildLinkLineComputer.h"
  4. #include "cmGlobalFastbuildGenerator.h"
  5. class cmOutputConverter;
  6. cmFastbuildLinkLineComputer::cmFastbuildLinkLineComputer(
  7. cmOutputConverter* outputConverter, cmStateDirectory const& stateDir,
  8. cmGlobalFastbuildGenerator const* gg)
  9. : cmLinkLineComputer(outputConverter, stateDir)
  10. , GG(gg)
  11. {
  12. }
  13. std::string cmFastbuildLinkLineComputer::ConvertToLinkReference(
  14. std::string const& lib) const
  15. {
  16. return this->GG->ConvertToFastbuildPath(lib);
  17. }