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