cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.h 695 B

12345678910111213141516171819202122
  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 "cmBinUtilsLinuxELFGetRuntimeDependenciesTool.h"
  6. class cmRuntimeDependencyArchive;
  7. class cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool
  8. : public cmBinUtilsLinuxELFGetRuntimeDependenciesTool
  9. {
  10. public:
  11. cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool(
  12. cmRuntimeDependencyArchive* archive);
  13. bool GetFileInfo(std::string const& file, std::vector<std::string>& needed,
  14. std::vector<std::string>& rpaths,
  15. std::vector<std::string>& runpaths) override;
  16. };