2017-04-14 19:02:05 +02:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
|
|
|
|
|
|
#ifndef cmMSVC60LinkLineComputer_h
|
|
|
|
#define cmMSVC60LinkLineComputer_h
|
|
|
|
|
2018-01-26 17:06:56 +01:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2017-04-14 19:02:05 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "cmLinkLineComputer.h"
|
|
|
|
|
|
|
|
class cmOutputConverter;
|
|
|
|
class cmStateDirectory;
|
|
|
|
|
|
|
|
class cmMSVC60LinkLineComputer : public cmLinkLineComputer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmMSVC60LinkLineComputer(cmOutputConverter* outputConverter,
|
2017-07-20 19:35:53 +02:00
|
|
|
cmStateDirectory const& stateDir);
|
2017-04-14 19:02:05 +02:00
|
|
|
|
2019-11-11 23:01:05 +01:00
|
|
|
cmMSVC60LinkLineComputer(cmMSVC60LinkLineComputer const&) = delete;
|
|
|
|
cmMSVC60LinkLineComputer& operator=(cmMSVC60LinkLineComputer const&) =
|
|
|
|
delete;
|
|
|
|
|
2018-01-26 17:06:56 +01:00
|
|
|
std::string ConvertToLinkReference(std::string const& input) const override;
|
2017-04-14 19:02:05 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|