cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.h 610 B

123456789101112131415161718192021
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file LICENSE.rst or https://cmake.org/licensing for details. */
  3. #pragma once
  4. #include <string>
  5. #include "cmBinUtilsWindowsPEGetRuntimeDependenciesTool.h"
  6. class cmRuntimeDependencyArchive;
  7. class cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool
  8. : public cmBinUtilsWindowsPEGetRuntimeDependenciesTool
  9. {
  10. public:
  11. cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool(
  12. cmRuntimeDependencyArchive* archive);
  13. bool GetFileInfo(std::string const& file,
  14. std::vector<std::string>& needed) override;
  15. };