
``` git grep -lz 'Copyright.txt or https://cmake.org/licensing ' | while IFS= read -r -d $'\0' f ; do sed -i '/Copyright.txt or https:\/\/cmake.org\/licensing / { s/Copyright.txt/LICENSE.rst/ }' "$f" ; done ```
32 lines
933 B
C++
32 lines
933 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file LICENSE.rst or https://cmake.org/licensing for details. */
|
|
|
|
#pragma once
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include <string>
|
|
|
|
#include "cmLinkLineDeviceComputer.h"
|
|
|
|
class cmGlobalNinjaGenerator;
|
|
class cmOutputConverter;
|
|
class cmStateDirectory;
|
|
|
|
class cmNinjaLinkLineDeviceComputer : public cmLinkLineDeviceComputer
|
|
{
|
|
public:
|
|
cmNinjaLinkLineDeviceComputer(cmOutputConverter* outputConverter,
|
|
cmStateDirectory const& stateDir,
|
|
cmGlobalNinjaGenerator const* gg);
|
|
|
|
cmNinjaLinkLineDeviceComputer(cmNinjaLinkLineDeviceComputer const&) = delete;
|
|
cmNinjaLinkLineDeviceComputer& operator=(
|
|
cmNinjaLinkLineDeviceComputer const&) = delete;
|
|
|
|
std::string ConvertToLinkReference(std::string const& input) const override;
|
|
|
|
private:
|
|
cmGlobalNinjaGenerator const* GG;
|
|
};
|