cmBinUtilsLinuxELFGetRuntimeDependenciesTool.cxx 537 B

123456789101112131415161718
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #include "cmBinUtilsLinuxELFGetRuntimeDependenciesTool.h"
  4. #include "cmRuntimeDependencyArchive.h"
  5. cmBinUtilsLinuxELFGetRuntimeDependenciesTool::
  6. cmBinUtilsLinuxELFGetRuntimeDependenciesTool(
  7. cmRuntimeDependencyArchive* archive)
  8. : Archive(archive)
  9. {
  10. }
  11. void cmBinUtilsLinuxELFGetRuntimeDependenciesTool::SetError(
  12. const std::string& error)
  13. {
  14. this->Archive->SetError(error);
  15. }