resolve cyclic dependency with zstd
[platform/upstream/cmake.git] / Source / cmMSVC60LinkLineComputer.h
1 /* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
2    file Copyright.txt or https://cmake.org/licensing for details.  */
3
4 #pragma once
5
6 #include "cmConfigure.h" // IWYU pragma: keep
7
8 #include <string>
9
10 #include "cmLinkLineComputer.h"
11
12 class cmOutputConverter;
13 class cmStateDirectory;
14
15 class cmMSVC60LinkLineComputer : public cmLinkLineComputer
16 {
17 public:
18   cmMSVC60LinkLineComputer(cmOutputConverter* outputConverter,
19                            cmStateDirectory const& stateDir);
20
21   cmMSVC60LinkLineComputer(cmMSVC60LinkLineComputer const&) = delete;
22   cmMSVC60LinkLineComputer& operator=(cmMSVC60LinkLineComputer const&) =
23     delete;
24
25   std::string ConvertToLinkReference(std::string const& input) const override;
26 };