blob: 9b8fa5e7afa0734777a812711ee8989876dfae20 [file]
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#pragma once
#include <string>
#include <vector>
class cmRuntimeDependencyArchive;
class cmBinUtilsWindowsPEGetRuntimeDependenciesTool
{
public:
cmBinUtilsWindowsPEGetRuntimeDependenciesTool(
cmRuntimeDependencyArchive* archive);
virtual ~cmBinUtilsWindowsPEGetRuntimeDependenciesTool() = default;
virtual bool GetFileInfo(std::string const& file,
std::vector<std::string>& needed) = 0;
protected:
cmRuntimeDependencyArchive* Archive;
void SetError(std::string const& error);
};