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
|
|
|
|
|
2017-07-20 19:35:53 +02:00
|
|
|
#include "cmConfigure.h"
|
2017-04-14 19:02:05 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "cmLinkLineComputer.h"
|
|
|
|
|
|
|
|
class cmOutputConverter;
|
|
|
|
class cmStateDirectory;
|
|
|
|
|
|
|
|
class cmMSVC60LinkLineComputer : public cmLinkLineComputer
|
|
|
|
{
|
2017-07-20 19:35:53 +02:00
|
|
|
CM_DISABLE_COPY(cmMSVC60LinkLineComputer)
|
|
|
|
|
2017-04-14 19:02:05 +02:00
|
|
|
public:
|
|
|
|
cmMSVC60LinkLineComputer(cmOutputConverter* outputConverter,
|
2017-07-20 19:35:53 +02:00
|
|
|
cmStateDirectory const& stateDir);
|
2017-04-14 19:02:05 +02:00
|
|
|
|
|
|
|
std::string ConvertToLinkReference(std::string const& input) const
|
|
|
|
CM_OVERRIDE;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|