2016-10-08 10:21:36 +00: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
|
|
|
|
|
2017-08-25 18:39:02 +00:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-11-05 20:40:14 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2016-10-08 10:21:36 +00:00
|
|
|
#include "cmLinkLineComputer.h"
|
|
|
|
|
2016-11-05 20:40:14 +00:00
|
|
|
class cmOutputConverter;
|
|
|
|
class cmStateDirectory;
|
|
|
|
|
2016-10-08 10:21:36 +00:00
|
|
|
class cmMSVC60LinkLineComputer : public cmLinkLineComputer
|
|
|
|
{
|
2017-04-23 20:50:47 +00:00
|
|
|
CM_DISABLE_COPY(cmMSVC60LinkLineComputer)
|
|
|
|
|
2016-10-08 10:21:36 +00:00
|
|
|
public:
|
2016-10-08 10:21:38 +00:00
|
|
|
cmMSVC60LinkLineComputer(cmOutputConverter* outputConverter,
|
2017-06-02 19:01:01 +00:00
|
|
|
cmStateDirectory const& stateDir);
|
2016-10-08 10:21:36 +00:00
|
|
|
|
2017-09-15 13:56:26 +00:00
|
|
|
std::string ConvertToLinkReference(std::string const& input) const override;
|
2016-10-08 10:21:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|