CMake Nightly Date Stamp
[kiteware-cmake.git] / Source / cmBinUtilsWindowsPEGetRuntimeDependenciesTool.h
blobda71aaabd8ceff14d65c5a0e5fd5fac3e885a8e3
1 /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
2 file Copyright.txt or https://cmake.org/licensing for details. */
4 #pragma once
6 #include <string>
7 #include <vector>
9 class cmRuntimeDependencyArchive;
11 class cmBinUtilsWindowsPEGetRuntimeDependenciesTool
13 public:
14 cmBinUtilsWindowsPEGetRuntimeDependenciesTool(
15 cmRuntimeDependencyArchive* archive);
16 virtual ~cmBinUtilsWindowsPEGetRuntimeDependenciesTool() = default;
18 virtual bool GetFileInfo(const std::string& file,
19 std::vector<std::string>& needed) = 0;
21 protected:
22 cmRuntimeDependencyArchive* Archive;
24 void SetError(const std::string& error);